/* ============================================================
   PRESSMOBILITY V2 — Design System complet
   Basé sur la maquette maquette/pressmobility.html
   Tous les tokens sont modifiables ici.
============================================================ */

/* ── RESET & TOKENS ── */
:root {
  color-scheme: light;
  --navy:       #0b1860;
  --blue:       #3535e0;
  --blue-light: #eeeef8;
  --white:      #ffffff;
  --off-white:  #f7f7f9;
  --black:      #0e0e14;
  --gray:       #52525e;
  --gray-light: #8a8a98;
  --border:     #e8e8ed;
  --shadow:     0 1px 3px rgba(0,0,0,.04), 0 4px 16px rgba(13,24,110,.06);
  --shadow-md:  0 2px 8px rgba(0,0,0,.06), 0 12px 32px rgba(13,24,110,.10);
  --shadow-lg:  0 4px 16px rgba(0,0,0,.06), 0 24px 56px rgba(13,24,110,.13);
  --radius:     10px;
  --radius-lg:  16px;
  --radius-pill:99px;
  --F: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: 100px; }
html, body { overflow-x: hidden; background: var(--white) !important; color: var(--black) !important; font-family: var(--F) !important; font-size: 16px; line-height: 1.7; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; cursor: pointer; }
a:hover { color: inherit; }
*, *::before, *::after { box-sizing: border-box; }

/* Focus visible — accessibilité WCAG */
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 4px; }
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }

/* Touch devices — pas de hover effects parasites */
@media (hover: none) {
  .stat-card:hover, .cas-card:hover, .svc-card:hover, .mstep:hover,
  .avantage-card:hover, .offre-card:hover, .blog-card:hover, .temo:hover,
  .acc-item:hover { transform: none !important; box-shadow: var(--shadow) !important; }
}

/* Boutons — touch target minimum 44px */
.btn-black, .btn-navy, .btn-white, .btn-ghost-white,
.nav-cta, .form-submit, .nav-burger { min-height: 44px; touch-action: manipulation; }

/* Override GP accent/contrast colors that break our design */
:root {
  --accent: var(--blue) !important;
  --contrast: var(--black) !important;
  --base-3: var(--white) !important;
}

/* Force light mode */
@media (prefers-color-scheme: dark) {
  html { background:#ffffff; color:#111111; }
  body { background:#ffffff !important; color:#111111 !important; }
}

/* ── GP LAYOUT OVERRIDES — forcer full-width + supprimer gaps parasites ── */
.site-content { padding: 0 !important; }
.site.grid-container, #page, .grid-container { margin-top: 0 !important; padding: 0 !important; }

/* Articles & archives — compenser le nav fixe (pas de hero custom) */
.single .site-content,
.archive .site-content,
.search .site-content,
.error404 .site-content { padding-top: 100px !important; }
.site-content,
.site-content .content-area,
.site-content .content-area .inside-article,
.site-content .content-area .entry-content,
.one-container .site-content,
.one-container .container,
.separate-containers .inside-article,
.one-container .inside-article {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
  overflow: visible !important;
}
.grid-container {
  max-width: none !important;
  padding: 0 !important;
}
#page, .site {
  max-width: none !important;
  overflow-x: hidden;
}

/* Cacher l'image mise en avant GP sur les pages (nos templates gèrent tout) */
.featured-image.page-header-image,
.page-header-image-single,
.page .featured-image { display: none !important; }

/* ── GP OVERRIDES — empêche GeneratePress de casser les couleurs de hover ── */
.entry-content a { text-decoration: none; }
.entry-content a:hover { text-decoration: none; }

/* Override GP link colors in dark sections */
.pm-home-hero a:hover,
.pm-page-hero a:hover,
.pm-contact-hero a:hover,
.vs-section a:hover,
.punchline-section a:hover,
.cta-band a:hover,
.cta-band-mid a:hover { color: inherit; }

/* Footer links override */
footer a:hover { color: white !important; text-decoration: none !important; }
.footer-col a:hover { color: white !important; }

/* Nav CTA override */
a.nav-cta,
a.nav-cta:hover,
a.nav-cta:visited,
a.nav-cta:focus { color: white !important; text-decoration: none !important; }

/* Cas card links */
a.cas-arrow,
a.cas-arrow:hover,
a.cas-arrow:visited { text-decoration: none !important; color: inherit !important; }
.cas-card:hover a.cas-arrow { color: white !important; }

/* Blog link */
a.blog-link,
a.blog-link:hover,
a.blog-link:visited { color: var(--blue) !important; text-decoration: none !important; }

/* Info val links */
.info-val a:hover { color: var(--blue) !important; }
.ci-val a:hover { color: white !important; }

/* ── NAV ── */
#pm-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 300; background: rgba(255,255,255,.96); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(232,232,237,.8); height: 76px; display: flex; align-items: center; }
/* Quand la admin bar WP est active, décaler le nav en dessous */
.admin-bar #pm-nav { top: 32px; }
@media screen and (max-width: 782px) {
  /* Sur mobile WP rend #wpadminbar en position:absolute, donc il scrolle. La nav reste à top:0. */
  .admin-bar #pm-nav { top: 0; }
  .admin-bar .mob-menu { top: 76px; }
}
.nav-inner { max-width: 1140px; margin: 0 auto; padding: 0 5%; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
a.nav-logo,
.nav-logo { display: flex; align-items: center; gap: .625rem; font-weight: 800; font-size: 1.1rem; color: var(--navy) !important; cursor: pointer; letter-spacing: -.01em; text-decoration: none !important; }
a.nav-logo:hover { color: var(--navy) !important; }
.nav-logo-icon { width: 38px; height: 38px; background: var(--navy); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: .85rem; flex-shrink: 0; }
.nav-logo-img { height: 72px; width: auto; display: block; max-width: 220px; }
.nav-links { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; flex-shrink: 0; }
.nav-links a { font-size: .84rem; font-weight: 500; color: var(--gray) !important; transition: color .2s; letter-spacing: .015em; text-decoration: none !important; }
.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current_page_item > a,
.nav-links .current-menu-ancestor > a { color: var(--navy) !important; }
/* Reset WP nav menu defaults */
.nav-links li { list-style: none; position: relative; }

/* Dropdown sous-menus */
.nav-links .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: .5rem 0;
  z-index: 400;
  white-space: nowrap;
  margin-top: 12px;
}
/* Pont invisible pour traverser le gap sans perdre le hover */
.nav-links .sub-menu::after {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-links .sub-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: var(--border);
  border-top: none;
  z-index: 1;
}
.nav-links li:hover > .sub-menu,
.nav-links li.open > .sub-menu { display: block; }
.nav-links .sub-menu li { padding: 0; }
.nav-links .sub-menu a {
  display: block !important;
  padding: .55rem 1.25rem !important;
  font-size: .82rem !important;
  font-weight: 500 !important;
  color: var(--gray) !important;
  transition: color .15s, background .15s;
}
.nav-links .sub-menu a:hover { color: var(--navy) !important; background: var(--off-white); }
/* Indicateur flèche sur items parent */
.nav-links li.menu-item-has-children > a::after { content: ' ▾'; font-size: .55rem; vertical-align: middle; opacity: .6; }
a.nav-cta,
.nav-cta { background: var(--blue) !important; color: white !important; font-family: var(--F); font-weight: 600; font-size: .82rem; padding: .65rem 1.5rem; border-radius: var(--radius-pill); transition: background .2s, transform .15s, box-shadow .2s; white-space: nowrap; letter-spacing: .01em; text-decoration: none !important; display: inline-flex; align-items: center; }
a.nav-cta:hover,
a.nav-cta:visited,
.nav-cta:hover { background: #2828c8 !important; color: white !important; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(53,53,224,.3); }
.nav-burger { background: var(--navy); color: white; border: none; cursor: pointer; width: 50px; height: 50px; border-radius: var(--radius-pill); display: none; align-items: center; justify-content: center; font-size: 1.3rem; }
.mob-menu { display: none; position: fixed; top: 82px; left: 0; right: 0; bottom: 0; background: #fff; z-index: 200; flex-direction: column; padding: 2.5rem 5%; gap: 1.75rem; border-top: 1px solid var(--border); overflow-y: auto; }
.mob-menu.open { display: flex; }
.mob-menu a { font-size: 1.4rem; font-weight: 700; color: var(--black) !important; text-decoration: none !important; }
.mob-menu a:hover { color: var(--navy) !important; }
.mob-menu a.mob-cta { background: var(--navy); color: white !important; padding: .875rem 1.75rem; border-radius: var(--radius-pill); font-weight: 600; width: fit-content; display: inline-flex; font-size: .9rem; }
/* Groupes parent + sous-items sur mobile */
.mob-menu .mob-group { display: flex; flex-direction: column; gap: .75rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.mob-menu .mob-parent { font-size: 1.4rem; font-weight: 700; color: var(--black); }
.mob-menu .mob-children { display: flex; flex-direction: column; gap: .625rem; padding-left: 1rem; border-left: 2px solid var(--border); margin-left: .25rem; }
.mob-menu .mob-children a { font-size: 1rem !important; font-weight: 500 !important; color: var(--gray) !important; }
.mob-menu .mob-children a:hover { color: var(--navy) !important; }
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--blue); padding: 1rem 5%; padding-bottom: calc(1rem + env(safe-area-inset-bottom)); }
.sticky-cta a { display: flex; align-items: center; justify-content: center; gap: .5rem; color: white !important; font-weight: 700; font-size: .9rem; text-decoration: none !important; }

/* ── LAYOUT ── */
.pm-wrap { max-width: 1120px; margin: 0 auto; padding: 0 5%; }
.pm-section { padding: 6rem 0; }
.pm-section.alt { background: var(--off-white); }

/* ── ATOMS ── */
.pill-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(53,53,224,.12);
}
.pm-section-navy .pill-tag { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.15); }

.pm-h2 { font-size: clamp(1.85rem, 3.2vw, 2.5rem); font-weight: 800; line-height: 1.12; color: var(--black); letter-spacing: -.03em; }
.pm-h2 em { font-style: italic; }
.pm-lead { font-size: 1.025rem; color: var(--gray); line-height: 1.8; max-width: 600px; margin-top: 1rem; }

/* Boutons — !important pour override les styles GP par défaut sur les liens */
a.btn-black,
.btn-black  { display: inline-flex; align-items: center; gap: .625rem; background: var(--black) !important; color: #fff !important; font-family: var(--F); font-weight: 600; font-size: .875rem; padding: .875rem 1.875rem; border-radius: var(--radius-pill); transition: background .2s, transform .15s, box-shadow .2s; border: none; cursor: pointer; letter-spacing: .01em; text-decoration: none !important; }
a.btn-black:hover,
a.btn-black:focus,
a.btn-black:visited,
.btn-black:hover { background: #1a1a2e !important; color: #fff !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.18); }
a.btn-navy,
.btn-navy   { display: inline-flex; align-items: center; gap: .625rem; background: var(--navy) !important; color: #fff !important; font-family: var(--F); font-weight: 600; font-size: .875rem; padding: .875rem 1.875rem; border-radius: var(--radius-pill); transition: background .2s, transform .15s; border: none; cursor: pointer; text-decoration: none !important; }
a.btn-navy:hover,
a.btn-navy:focus,
a.btn-navy:visited,
.btn-navy:hover { background: #1427a0 !important; color: #fff !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(11,24,96,.25); }
a.btn-white,
.btn-white  { display: inline-flex; align-items: center; gap: .625rem; background: #fff !important; color: var(--black) !important; font-family: var(--F); font-weight: 700; font-size: .9rem; padding: .9rem 2rem; border-radius: var(--radius-pill); transition: transform .15s, box-shadow .2s; text-decoration: none !important; }
a.btn-white:hover,
a.btn-white:focus,
a.btn-white:visited,
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); color: var(--black) !important; background: #fff !important; }
a.btn-ghost-white,
.btn-ghost-white { display: inline-flex; align-items: center; gap: .625rem; background: transparent !important; color: #fff !important; border: 1.5px solid rgba(255,255,255,.35); font-family: var(--F); font-weight: 600; font-size: .875rem; padding: .875rem 1.875rem; border-radius: var(--radius-pill); transition: border-color .2s, background .2s; text-decoration: none !important; }
a.btn-ghost-white:hover,
a.btn-ghost-white:focus,
a.btn-ghost-white:visited,
.btn-ghost-white:hover { border-color: rgba(255,255,255,.9); background: rgba(255,255,255,.07) !important; color: #fff !important; }

/* Override global GP link styles inside our sections */
.entry-content a.btn-black,
.entry-content a.btn-navy,
.entry-content a.btn-white,
.entry-content a.btn-ghost-white,
.pm-home-hero a,
.pm-page-hero a,
.pm-contact-hero a,
.cta-band a,
.cta-band-mid a,
.vs-section a,
footer a { text-decoration: none !important; }
.entry-content a.btn-black:hover,
.entry-content a.btn-navy:hover { color: #fff !important; }
.entry-content a.btn-white:hover { color: var(--black) !important; }
.entry-content a.btn-ghost-white:hover { color: #fff !important; }

/* ── PAGE HERO (sous-pages) ── */
.pm-page-hero {
  background: var(--navy);
  padding: 148px 5% 72px;
  position: relative;
  overflow: hidden;
}
.pm-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 90% 40%, rgba(53,53,224,.3) 0%, transparent 55%),
              radial-gradient(ellipse 30% 40% at 5% 100%, rgba(11,24,96,.35) 0%, transparent 50%);
}
.pm-page-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.pm-breadcrumb { display: flex; gap: .5rem; font-size: .78rem; color: rgba(255,255,255,.4); margin-bottom: 1.5rem; }
.pm-breadcrumb a { color: rgba(255,255,255,.4); }
.pm-breadcrumb a:hover { color: rgba(255,255,255,.7); }
.pm-breadcrumb span { color: rgba(255,255,255,.2); }
.pm-page-hero h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.08; letter-spacing: -.03em; color: white; }
.pm-page-hero-sub { font-size: 1.05rem; color: rgba(255,255,255,.65); max-width: 580px; line-height: 1.75; margin-top: 1.25rem; }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, #2828c8 0%, var(--blue) 100%); padding: 5rem 5%; text-align: center; }
.cta-band h2 { color: white; margin-bottom: .875rem; font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; line-height: 1.12; letter-spacing: -.03em; }
.cta-band p { color: rgba(255,255,255,.75); margin-bottom: 2.25rem; font-size: 1rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.cta-band-mid { background: linear-gradient(135deg, #2828c8 0%, var(--blue) 100%); padding: 4.5rem 5%; text-align: center; }
.cta-band-mid h2 { color: white; margin-bottom: .625rem; font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; line-height: 1.12; letter-spacing: -.03em; }
.cta-band-mid p { color: rgba(255,255,255,.7); margin-bottom: 1.75rem; }

/* ── HOME HERO ── */
.pm-home-hero {
  background: var(--navy);
  padding: 140px 5% 80px;
  position: relative;
  overflow: hidden;
}
.pm-home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 90% 40%, rgba(53,53,224,.35) 0%, transparent 55%),
              radial-gradient(ellipse 40% 40% at 10% 80%, rgba(11,24,96,.4) 0%, transparent 50%);
}
.pm-home-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow { font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 1.25rem; }
.pm-home-hero h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); font-weight: 800; line-height: 1.08; letter-spacing: -.03em; color: white; margin-bottom: 1.625rem; }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,.7); max-width: 480px; line-height: 1.8; margin-bottom: 2.5rem; }
.hero-btns { display: flex; flex-direction: column; gap: .875rem; max-width: 320px; }
.hero-trust { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-top: .5rem; }
.hero-trust span { font-size: .78rem; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: .375rem; }
.hero-trust .check { color: #4ade80; }

/* Hero proof card — image + overlay */
.hero-proof-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-proof-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}
.hero-proof-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(11,24,96,.92) 0%, rgba(11,24,96,.75) 55%, transparent 100%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 1.5rem 1.5rem 2rem;
  max-height: 55%;
}

.hero-right { display: flex; flex-direction: column; gap: 1rem; }
.hpc-quote-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.hpc-quote-card .hpc-quote-text { font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.65; font-style: italic; margin-bottom: .75rem; }
.hpc-quote-card .hpc-quote-author { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.5); }

/* Legacy — kept for compatibility */
.hero-proof {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(6px);
}
.hpc-label { font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 1.25rem; }
.hpc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); overflow: hidden; margin-bottom: 1.5rem; }
.hpc-stat { background: rgba(255,255,255,.05); padding: 1.25rem 1rem; text-align: center; }
.hpc-n { font-size: 2rem; font-weight: 900; color: white; line-height: 1; letter-spacing: -.02em; }
.hpc-l { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: .3rem; line-height: 1.3; }
.hpc-quote { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.25rem; }
.hpc-quote-text { font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.65; font-style: italic; margin-bottom: .875rem; }
.hpc-quote-author { font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.5); }

/* ── STRIP LOGOS ── */
.pm-strip { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.75rem 0; }
.pm-strip-inner { max-width: 100%; margin: 0 auto; display: flex; align-items: center; gap: 2rem; padding: 0 5%; }
.strip-label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-light); white-space: nowrap; flex-shrink: 0; }
.strip-logos { display: flex; align-items: center; gap: 2.5rem; flex-wrap: nowrap; }

/* Clip wrapper injecté par JS — contient le track animé */
.marquee-clip { overflow: hidden; flex: 1; min-width: 0; }

/* Marquee (tous écrans) */
.is-marquee { display: flex !important; flex-wrap: nowrap !important; width: max-content !important; animation: pm-marquee 35s linear infinite; }
.is-marquee:hover { animation-play-state: paused; }
.logo-pill { font-size: .8rem; font-weight: 600; color: var(--gray-light); padding: .3rem .875rem; border: 1px solid var(--border); border-radius: var(--radius-pill); transition: color .2s, border-color .2s; letter-spacing: .01em; }
.logo-pill:hover { color: var(--navy); border-color: var(--navy); }
.strip-logo-img { height: 36px; width: auto; object-fit: contain; filter: grayscale(0%); opacity: 1; }
.strip-logo-img:hover { opacity: 1; filter: grayscale(0%); }
.media-logo-img { height: 32px; width: auto; object-fit: contain; filter: grayscale(0%); opacity: 1; }
.media-logo-img:hover { opacity: 1; filter: grayscale(0%); }

/* Media proof strip */
.media-proof-strip { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 1.25rem 5%; }
.media-proof-inner { max-width: 100%; margin: 0 auto; display: flex; align-items: center; gap: 2rem; flex-wrap: nowrap; }

/* Logos marquee strip (page références) */
.logos-marquee-track { display: flex; align-items: center; gap: 2.5rem; flex-wrap: nowrap; margin-top: 3rem; }
.media-proof-inner .label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-light); white-space: nowrap; }
.media-name { font-size: .9rem; font-weight: 700; color: var(--navy); }
.media-sep { color: var(--border); }

/* ── STATS ── */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 3.5rem; }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.25rem 1.75rem; text-align: center; box-shadow: var(--shadow); transition: box-shadow .3s, transform .25s; position: relative; overflow: hidden; }
.stat-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--navy), var(--blue)); opacity: 0; transition: opacity .3s; }
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stat-card:hover::after { opacity: 1; }
.stat-n { font-size: 2rem; font-weight: 900; color: var(--navy); line-height: 1; letter-spacing: -.03em; margin-bottom: .5rem; }
.stat-l { font-size: .78rem; color: var(--gray-light); line-height: 1.45; font-weight: 500; }
.stat-source { font-size: .7rem; color: var(--gray-light); margin-top: 2rem; border-left: 3px solid var(--blue-light); padding-left: 1rem; line-height: 1.6; max-width: 720px; }

/* ── PUNCHLINE ── */
.punchline-section { background: var(--navy); padding: 3rem 0; text-align: center; }
.punchline-section p { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 700; color: white; line-height: 1.45; max-width: 780px; margin: 0 auto; }
.punchline-section em { color: rgba(255,255,255,.55); font-style: normal; font-weight: 400; }

/* ── TÉMOIGNAGES ── */
.temos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.temo { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.25rem; box-shadow: var(--shadow); position: relative; }
.temo-quote { font-size: .9rem; color: var(--gray); line-height: 1.8; padding-left: 1.125rem; border-left: 2px solid var(--navy); margin-bottom: 1.75rem; font-style: italic; opacity: .9; }
.temo-author { display: flex; align-items: center; gap: .75rem; }
.temo-photo { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--border); }
.temo-name { font-weight: 700; font-size: .875rem; color: var(--black); letter-spacing: -.005em; }
.temo-role { font-size: .75rem; color: var(--gray-light); margin-top: .25rem; }

/* ── CAS CLIENTS CARDS ── */
.cas-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.cas-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: box-shadow .3s, transform .25s; border: 1px solid var(--border); position: relative; }
.cas-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.cas-logo { height: 100px; background: var(--off-white); display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--border); font-weight: 900; font-size: 1.5rem; color: #c0c0cc; letter-spacing: -.02em; }
.cas-logo img { max-height: 70px; max-width: 180px; object-fit: contain; filter: grayscale(0%); opacity: 1; }
.cas-card:hover .cas-logo img { opacity: 1; filter: grayscale(0%); }
.cas-body { padding: 1.25rem 1.5rem 1.5rem; }
.cas-name { font-weight: 800; font-size: 1rem; color: var(--black); margin-bottom: .25rem; letter-spacing: .01em; }
.cas-sector { font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); margin-bottom: .875rem; }
.cas-desc { font-size: .84rem; color: var(--gray); line-height: 1.6; margin-bottom: 1rem; }
.breakdown { margin-top: .75rem; }
.bk-lbl { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-light); margin-bottom: .5rem; }
.bar-row { display: flex; align-items: center; gap: .5rem; margin-bottom: .35rem; }
.bar-key { font-size: .73rem; color: var(--gray); width: 88px; flex-shrink: 0; }
.bar-track { flex: 1; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--navy); border-radius: 2px; }
.bar-val { font-size: .7rem; color: var(--gray-light); width: 36px; text-align: right; flex-shrink: 0; }
.cas-results { display: flex; flex-direction: column; gap: .4rem; border-top: 1px solid var(--border); padding-top: .875rem; margin-top: .875rem; }
.cas-result { font-size: .8rem; color: var(--gray); display: flex; align-items: center; gap: .5rem; }
.cas-result::before { content: '↑'; color: var(--blue); font-weight: 700; font-size: .7rem; }
.cas-footer { display: flex; align-items: center; justify-content: space-between; padding: .875rem 1.5rem; border-top: 1px solid var(--border); }
.cas-tag { font-size: .78rem; color: var(--gray); }
.cas-arrow { width: 36px; height: 36px; border-radius: 50%; background: var(--off-white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: background .2s, color .2s, border-color .2s; }
.cas-card:hover .cas-arrow { background: var(--navy); color: white; border-color: var(--navy); }
/* Stretched link — rend toute la carte cliquable */
a.cas-arrow::after { content: ''; position: absolute; inset: 0; z-index: 1; border-radius: var(--radius-lg); }
.cas-card .cas-body, .cas-card .cas-footer, .cas-card .cas-logo { position: relative; z-index: 2; }

/* ── ACCORDION ── */
.accordion { display: flex; flex-direction: column; gap: .625rem; margin-top: 3rem; }
.acc-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,.03); transition: box-shadow .2s; }
.acc-item:hover { box-shadow: var(--shadow); }
.acc-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.625rem; cursor: pointer; font-weight: 600; font-size: .925rem; color: var(--black); user-select: none; letter-spacing: -.005em; }
.acc-toggle { width: 28px; height: 28px; border-radius: 50%; background: var(--off-white); border: 1px solid var(--border); color: var(--gray); display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; transition: transform .3s, background .2s; }
.acc-item.open .acc-toggle { background: var(--navy); border-color: var(--navy); color: white; transform: rotate(180deg); }
.acc-body { display: none; padding: 0 1.625rem 1.375rem; font-size: .88rem; color: var(--gray); line-height: 1.75; }
.acc-item.open .acc-body { display: block; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 3rem; }
.svc-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 2.25rem; box-shadow: var(--shadow); transition: box-shadow .3s, transform .25s; }
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.svc-n { font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); margin-bottom: 1.125rem; opacity: .85; }
.svc-title { font-size: .975rem; font-weight: 700; color: var(--black); margin-bottom: .75rem; line-height: 1.35; letter-spacing: -.01em; }
.svc-body { font-size: .875rem; color: var(--gray); line-height: 1.65; }

/* ── MÉTHODE ── */
.method-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; margin-top: 3rem; }
.mstep { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.5rem; box-shadow: var(--shadow); position: relative; overflow: hidden; transition: box-shadow .2s, transform .2s; }
.mstep::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--navy), var(--blue)); }
.mstep:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.mstep-n { font-size: 2rem; font-weight: 900; color: var(--navy); opacity: .12; line-height: 1; margin-bottom: .875rem; }
.mstep-t { font-size: .9rem; font-weight: 700; color: var(--black); margin-bottom: .5rem; }
.mstep-b { font-size: .82rem; color: var(--gray); line-height: 1.6; }

/* ── SECTEURS ── */
.secteurs-wrap { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.5rem; }
.secteur { padding: .45rem 1.1rem; border-radius: var(--radius-pill); font-size: .85rem; font-weight: 600; border: 1px solid var(--border); color: var(--gray); background: #fff; transition: border-color .2s, color .2s; }
.secteur:hover { border-color: var(--navy); color: var(--navy); }
.secteur.main { border-color: var(--navy); color: var(--navy); background: var(--blue-light); }

/* ── FORMATS MEDIA ── */
.formats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 3rem; }
.format-item { background: #fff; padding: 1.75rem; transition: background .2s; }
.format-item:hover { background: var(--off-white); }
.format-title { font-weight: 700; font-size: .95rem; color: var(--black); margin-bottom: .5rem; }
.format-body { font-size: .85rem; color: var(--gray); line-height: 1.6; }

/* ── OFFRE CARDS ── */
.offre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; margin-top: 3.5rem; }
.offre-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); transition: box-shadow .2s, transform .2s; position: relative; }
.offre-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.offre-card.featured { border-color: var(--navy); border-width: 2px; }
.offre-badge { position: absolute; top: -1px; right: 2rem; background: var(--navy); color: white; font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .875rem; border-radius: 0 0 var(--radius) var(--radius); }
.offre-num { font-size: .65rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: var(--blue); margin-bottom: 1.25rem; }
.offre-title { font-size: 1.1rem; font-weight: 700; color: var(--black); margin-bottom: .75rem; }
.offre-body { font-size: .9rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.5rem; }
.offre-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.offre-list li { font-size: .85rem; color: var(--gray); display: flex; align-items: baseline; gap: .625rem; }
.offre-list li::before { content: '→'; color: var(--blue); font-size: .75rem; flex-shrink: 0; }

/* ── VS SECTION ── */
.vs-section { background: var(--navy); padding: 5rem 0; }
/* Réduit l'espace quand la VS section suit directement un hero de page */
.pm-page-hero + .vs-section { padding-top: 0.5rem; }
.pm-page-hero { padding-bottom: 16px; }
.vs-section h2 { color: white; margin-bottom: .875rem; font-size: clamp(1.85rem, 3.2vw, 2.5rem); font-weight: 800; line-height: 1.12; letter-spacing: -.03em; }
.ig-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.ig-3col { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }

/* ── CAS CLIENTS PAGE ── */
.stats-band { background: var(--navy); padding: 3rem 5%; }
.stats-band-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); }
.sband-stat { background: var(--navy); padding: 2rem; text-align: center; }
.sband-n { font-size: 2rem; font-weight: 900; color: white; line-height: 1; letter-spacing: -.02em; margin-bottom: .4rem; }
.sband-l { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.4; }
.logos-marquee-track .logo-box { background: #fff; padding: .75rem 1.5rem; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .875rem; color: var(--gray); border: 1px solid var(--border); border-radius: var(--radius); flex-shrink: 0; transition: color .2s, background .2s, border-color .2s; }
.logos-marquee-track .logo-box:hover { color: var(--navy); background: var(--off-white); border-color: var(--navy); }
.logos-marquee-track .logo-box img { height: 44px; width: auto; max-width: 130px; object-fit: contain; filter: grayscale(0%); opacity: 1; display: block; }
.logos-marquee-track .logo-box:hover img { opacity: 1; filter: grayscale(0%); }

/* ── À PROPOS ── */
.chiffres-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-top: 3rem; }
.chiffres-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cstat { background: #fff; padding: 2rem; text-align: center; }
.cstat-n { font-size: 2rem; font-weight: 900; color: var(--navy); line-height: 1; letter-spacing: -.03em; margin-bottom: .4rem; }
.cstat-l { font-size: .8rem; color: var(--gray); line-height: 1.4; }
.chiffres-text p { font-size: .975rem; color: var(--gray); line-height: 1.8; margin-bottom: 1.25rem; }
.chiffres-text p strong { color: var(--black); font-weight: 600; }
.stat-note { font-size: .75rem; color: var(--gray-light); border-left: 3px solid var(--blue-light); padding-left: .875rem; line-height: 1.6; margin-top: 1.5rem; }
.avantages-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; margin-top: 3rem; }
.avantage-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2.25rem; box-shadow: var(--shadow); transition: box-shadow .3s, transform .25s; }
.avantage-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.av-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--blue-light); color: var(--blue); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.av-icon svg { width: 24px; height: 24px; }
.av-title { font-weight: 700; font-size: 1rem; color: var(--black); margin-bottom: .625rem; }
.av-body { font-size: .875rem; color: var(--gray); line-height: 1.65; }
.groupe-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 3rem; }
.groupe-item { background: #fff; padding: 2rem; transition: background .2s; }
.groupe-item:hover { background: var(--off-white); }
.groupe-name { font-weight: 700; font-size: 1rem; color: var(--black); margin-bottom: .5rem; }
.groupe-body { font-size: .85rem; color: var(--gray); line-height: 1.6; }

/* ── BLOG ── */
.blog-filter { background: var(--white); border: 1px solid var(--border); color: var(--gray); font-family: var(--F); font-size: .8rem; font-weight: 600; padding: .45rem 1.1rem; border-radius: var(--radius-pill); cursor: pointer; transition: all .2s; }
.blog-filter:hover { border-color: var(--navy); color: var(--navy); }
.blog-filter.active { background: var(--navy); border-color: var(--navy); color: white; }
.blog-card,
article.blog-card { background: var(--white) !important; border: 1px solid var(--border) !important; border-radius: var(--radius-lg) !important; overflow: hidden; box-shadow: var(--shadow); transition: box-shadow .3s, transform .25s; display: flex !important; flex-direction: column !important; padding: 0 !important; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-img { height: 140px; background: linear-gradient(135deg, var(--blue-light) 0%, var(--off-white) 100%); display: flex; align-items: flex-end; padding: 1rem; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.blog-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-cat-badge { position: relative; z-index: 2; font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--navy); color: #fff; padding: .35rem .85rem; border-radius: var(--radius-pill); }
.blog-card-body { padding: 1.5rem !important; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: .75rem !important; color: var(--gray-light) !important; margin-bottom: .625rem; }
.blog-title,
.blog-card .blog-title,
h3.blog-title { font-size: .975rem !important; font-weight: 700 !important; color: var(--black) !important; line-height: 1.35 !important; margin: 0 0 .75rem !important; padding: 0 !important; }
.blog-title a,
.blog-card .blog-title a { color: var(--black) !important; text-decoration: none !important; }
.blog-title a:hover { color: var(--navy) !important; }
.blog-excerpt { font-size: .85rem !important; color: var(--gray) !important; line-height: 1.65 !important; flex: 1; margin-bottom: 1.25rem; }
.blog-link { font-size: .83rem; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: .375rem; transition: gap .2s; }
.blog-link:hover { gap: .625rem; }
#blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2.5rem; }
.blog-card.hidden,
article.blog-card.hidden,
.cas-card.hidden { display: none !important; }

/* ── BLOG PAGINATION ── */
.blog-pagination { margin-top: 3rem; display: flex; justify-content: center; }
.blog-pagination ul { display: flex; gap: .5rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; justify-content: center; }
.blog-pagination ul li { display: flex; }
.blog-pagination ul li a,
.blog-pagination ul li span { display: inline-flex; align-items: center; justify-content: center; min-width: 2.5rem; height: 2.5rem; padding: 0 .875rem; border: 1px solid var(--border); border-radius: var(--radius-pill); font-size: .83rem; font-weight: 600; font-family: var(--F); color: var(--navy); text-decoration: none; transition: all .2s; background: var(--white); }
.blog-pagination ul li a:hover { border-color: var(--navy); background: var(--navy); color: white; }
.blog-pagination ul li span.current { background: var(--navy); border-color: var(--navy); color: white; }
.blog-pagination ul li span.dots { border: none; background: transparent; color: var(--gray-light); cursor: default; }

/* ── CONTACT ── */
.pm-contact-hero { background: var(--navy); padding-bottom: 0; position: relative; overflow: hidden; max-width: 100vw; }
.pm-contact-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 90% 40%, rgba(53,53,224,.3) 0%, transparent 55%); }
.pm-contact-inner { max-width: 1200px; margin: 0 auto; padding: 130px 5% 80px; position: relative; }
.pm-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; overflow: hidden; }
.contact-sub { font-size: 1.05rem; color: rgba(255,255,255,.65); line-height: 1.75; margin-top: 1.25rem; margin-bottom: 2.5rem; }
.wyg-list { display: flex; flex-direction: column; gap: 1.25rem; }
.wyg { display: flex; gap: 1rem; align-items: flex-start; }
.wyg-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: white; font-weight: 700; }
.wyg-title { font-weight: 700; font-size: .9rem; color: white; margin-bottom: .2rem; }
.wyg-body { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.5; }
.ci-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.ci { display: flex; gap: .875rem; align-items: flex-start; }
.ci-icon { width: 42px; height: 42px; flex-shrink: 0; border-radius: 50%; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; font-size: .95rem; color: white; }
.ci-label { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .2rem; }
.ci-val { font-size: .875rem; color: rgba(255,255,255,.7); }
.ci-val a:hover { color: white; }
.form-card { background: #fff; border-radius: 20px; padding: 2.75rem; box-shadow: 0 2px 4px rgba(0,0,0,.04), 0 16px 48px rgba(0,0,0,.16); width: 100%; max-width: 100%; overflow: hidden; box-sizing: border-box; }
.form-title { font-size: 1.15rem; font-weight: 800; color: var(--black); margin-bottom: .35rem; }
.form-sub { font-size: .85rem; color: var(--gray); margin-bottom: 2rem; }
.form-reactif { background: var(--blue-light); border-radius: var(--radius); padding: .75rem 1rem; font-size: .82rem; color: var(--blue); font-weight: 600; margin-bottom: 1.5rem; display: flex; align-items: center; gap: .5rem; }
.form-free { background: var(--blue-light); border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 1.5rem; display: flex; align-items: flex-start; gap: .875rem; }
.form-free-title { font-size: .8rem; font-weight: 700; color: var(--navy); margin-bottom: .25rem; }
.form-free ul { list-style: none; font-size: .82rem; color: var(--gray); display: flex; flex-direction: column; gap: .25rem; }
.fg { margin-bottom: 1rem; }
label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--gray); margin-bottom: .4rem; }
input, select, textarea { width: 100%; background: #fafafa; border: 1.5px solid #e8e8ed; color: var(--black); font-family: var(--F); font-size: .875rem; padding: .8rem 1.1rem; border-radius: var(--radius); outline: none; transition: border-color .2s, background .2s, box-shadow .2s; -webkit-appearance: none; appearance: none; }
input:focus, select:focus, textarea:focus { border-color: var(--navy); background: #fff; box-shadow: 0 0 0 3px rgba(11,24,96,.08); }
input::placeholder, textarea::placeholder { color: #bbb; }
select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-color: var(--off-white); padding-right: 2.5rem; }
textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; padding: 1.05rem; background: var(--navy); color: white; font-family: var(--F); font-weight: 700; font-size: .9rem; border: none; cursor: pointer; border-radius: var(--radius-pill); transition: background .2s, transform .15s, box-shadow .2s; display: flex; align-items: center; justify-content: center; gap: .5rem; letter-spacing: .01em; }
.form-submit:hover { background: var(--blue); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(53,53,224,.3); }
.form-note { font-size: .73rem; color: var(--gray-light); text-align: center; margin-top: .75rem; }
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.info-icon { font-size: 1.5rem; color: var(--navy); margin-bottom: 1rem; }
.info-label { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-light); margin-bottom: .5rem; }
.info-val { font-size: .9rem; color: var(--black); font-weight: 600; }
.info-val a:hover { color: var(--blue); }

/* ── FOOTER NEWSLETTER ── */
.nl-footer-widget { max-width: 1100px; margin: 0 auto; padding: 1.5rem 0 2rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.nl-footer-label { font-size: .78rem; color: rgba(255,255,255,.5); }
.nl-footer-label strong { color: rgba(255,255,255,.75); display: block; margin-bottom: .25rem; font-size: .85rem; }
.nl-footer-form { display: flex; gap: .625rem; flex-wrap: wrap; }
.nl-footer-input { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: white; font-family: var(--F); font-size: .83rem; padding: .55rem 1rem; border-radius: var(--radius-pill); outline: none; min-width: 220px; }
.nl-footer-input::placeholder { color: rgba(255,255,255,.3); }
.nl-footer-btn { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: white; font-family: var(--F); font-weight: 600; font-size: .8rem; padding: .55rem 1.25rem; border-radius: var(--radius-pill); cursor: pointer; white-space: nowrap; transition: background .2s; }
.nl-footer-btn:hover { background: rgba(255,255,255,.2); }

/* ── CF7 dans .form-card ── */
.form-card .wpcf7 { width: 100%; }
.form-card .wpcf7-form p { margin: 0 0 1rem; }
.form-card .wpcf7-form label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--gray); margin-bottom: .4rem; }
.form-card .wpcf7-form input[type="text"],
.form-card .wpcf7-form input[type="email"],
.form-card .wpcf7-form input[type="tel"],
.form-card .wpcf7-form input[type="url"],
.form-card .wpcf7-form select,
.form-card .wpcf7-form textarea { width: 100%; background: #fafafa; border: 1.5px solid #e8e8ed; color: var(--black); font-family: var(--F); font-size: .875rem; padding: .8rem 1.1rem; border-radius: var(--radius); outline: none; transition: border-color .2s, background .2s, box-shadow .2s; }
.form-card .wpcf7-form input:focus,
.form-card .wpcf7-form select:focus,
.form-card .wpcf7-form textarea:focus { border-color: var(--navy); background: #fff; box-shadow: 0 0 0 3px rgba(11,24,96,.08); }
.form-card .wpcf7-form textarea { min-height: 100px; resize: vertical; }
.form-card .wpcf7-form input[type="submit"],
.form-card .wpcf7-form button[type="submit"] { width: 100%; padding: 1.05rem; background: var(--navy) !important; color: white !important; font-family: var(--F); font-weight: 700; font-size: .9rem; border: none; cursor: pointer; border-radius: var(--radius-pill); transition: background .2s, transform .15s; }
.form-card .wpcf7-form input[type="submit"]:hover,
.form-card .wpcf7-form button[type="submit"]:hover { background: var(--blue) !important; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(53,53,224,.3); }
.form-card .wpcf7-response-output { border-radius: var(--radius) !important; font-size: .85rem; margin: 1rem 0 0 !important; }
.form-card .wpcf7-not-valid-tip { font-size: .75rem; color: #e55; }

/* ── MC4WP newsletter dans les sections navy (footer + pages) ── */
section[style*="--navy"] .mc4wp-form p,
section[style*="navy"] .mc4wp-form p { display: flex; gap: .75rem; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
section[style*="navy"] .mc4wp-form label { font-size: 0; color: transparent; display: contents; }
section[style*="navy"] .mc4wp-form input[type="email"] { flex: 1; min-width: 220px; background: rgba(255,255,255,.1) !important; border: 1.5px solid rgba(255,255,255,.2) !important; color: white !important; font-family: var(--F); font-size: .9rem; padding: .875rem 1.25rem; border-radius: var(--radius-pill) !important; outline: none; }
section[style*="navy"] .mc4wp-form input[type="email"]::placeholder { color: rgba(255,255,255,.3) !important; }
section[style*="navy"] .mc4wp-form input[type="submit"] { background: white !important; color: var(--navy) !important; font-family: var(--F); font-weight: 700; font-size: .875rem; padding: .875rem 1.75rem; border: none !important; border-radius: var(--radius-pill) !important; cursor: pointer; white-space: nowrap; }

/* ── MC4WP newsletter dans le footer ── */
.pm-footer-v2 .mc4wp-form { display: flex; gap: .625rem; flex-wrap: wrap; }
.pm-footer-v2 .mc4wp-form p { display: flex; gap: .625rem; flex-wrap: wrap; margin: 0; align-items: center; }
.pm-footer-v2 .mc4wp-form label { display: contents; font-size: 0; color: transparent; }
.pm-footer-v2 .mc4wp-form input[type="email"] {
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  color: white !important;
  font-family: var(--F);
  font-size: .83rem;
  padding: .55rem 1rem;
  border-radius: var(--radius-pill) !important;
  outline: none;
  min-width: 220px;
}
.pm-footer-v2 .mc4wp-form input[type="email"]::placeholder { color: rgba(255,255,255,.3) !important; }
.pm-footer-v2 .mc4wp-form input[type="email"]:focus { border-color: rgba(255,255,255,.4) !important; box-shadow: none !important; }
.pm-footer-v2 .mc4wp-form input[type="submit"] {
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  color: white !important;
  font-family: var(--F);
  font-weight: 600;
  font-size: .8rem;
  padding: .55rem 1.25rem;
  border-radius: var(--radius-pill) !important;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.pm-footer-v2 .mc4wp-form input[type="submit"]:hover { background: rgba(255,255,255,.2) !important; }

/* ── SINGLE ARTICLE LAYOUT ── */
.pm-single-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; max-width: 1240px; margin: 0 auto; padding: 76px 5% 4rem; }
.pm-single-content { min-width: 0; }
.pm-single-header { margin-bottom: 2rem; }
.pm-single-cat { display: inline-block; background: var(--blue-light); color: var(--blue) !important; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .35rem .875rem; border-radius: var(--radius-pill); margin-bottom: 1rem; text-decoration: none !important; transition: background .2s; }
.pm-single-cat:hover { background: var(--blue); color: white !important; }
.pm-single-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -.03em; color: var(--black); margin-bottom: .75rem; }
.pm-single-meta { font-size: .8rem; color: var(--gray-light); display: flex; gap: .5rem; }
.pm-single-featured { margin-bottom: 2rem; border-radius: var(--radius-lg); overflow: hidden; }
.pm-single-featured img { width: 100%; height: auto; display: block; }
.pm-single-body { font-size: 1rem; line-height: 1.8; color: var(--gray); }
.pm-single-body h2 { font-size: 1.4rem; font-weight: 800; color: var(--black); margin: 2rem 0 1rem; }
.pm-single-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--black); margin: 1.75rem 0 .75rem; }
.pm-single-body p { margin-bottom: 1.25rem; }
.pm-single-body a { color: var(--blue); }
.pm-single-body img { max-width: 100%; height: auto; border-radius: var(--radius); }
.pm-single-body blockquote { border-left: 3px solid var(--navy); padding: 1rem 1.5rem; margin: 1.5rem 0; background: var(--off-white); border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; color: var(--black); }
.pm-single-body ul, .pm-single-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.pm-single-body li { margin-bottom: .4rem; }

@media (max-width: 1024px) {
  .pm-single-layout { grid-template-columns: 1fr; }
}

/* Single — empêcher overflow:hidden qui casse le sticky */
.single .site-content,
.single #page,
.single .grid-container,
.single .inside-article,
.single .entry-content { overflow: visible !important; }

/* ── SIDEBAR ARTICLES ── */
.pm-sidebar { display: flex; flex-direction: column; gap: 1.5rem; align-self: start; will-change: transform; }
.pm-sidebar-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow); }
.pm-sidebar-title { font-size: .9rem; font-weight: 800; color: var(--black); margin-bottom: .75rem; letter-spacing: -.01em; }
.pm-sidebar-desc { font-size: .82rem; color: var(--gray); line-height: 1.6; margin-bottom: 1rem; }
.pm-sidebar-input { width: 100%; background: #fafafa; border: 1.5px solid var(--border); font-family: var(--F); font-size: .85rem; padding: .7rem 1rem; border-radius: var(--radius); outline: none; }
.pm-sidebar-input:focus { border-color: var(--navy); }
.pm-sidebar-btn { width: 100%; background: var(--navy); color: white; font-family: var(--F); font-weight: 700; font-size: .82rem; padding: .7rem; border: none; border-radius: var(--radius-pill); cursor: pointer; transition: background .2s; }
.pm-sidebar-btn:hover { background: var(--blue); }
.pm-sidebar-posts { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .875rem; }
.pm-sidebar-posts li a { display: flex; gap: .75rem; align-items: flex-start; text-decoration: none !important; color: inherit; }
.pm-sidebar-posts li a:hover .pm-sidebar-post-title { color: var(--navy); }
.pm-sidebar-thumb { width: 56px; height: 56px; flex-shrink: 0; border-radius: var(--radius); overflow: hidden; }
.pm-sidebar-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pm-sidebar-post-title { display: block; font-size: .82rem; font-weight: 600; color: var(--black); line-height: 1.35; transition: color .2s; }
.pm-sidebar-post-date { display: block; font-size: .72rem; color: var(--gray-light); margin-top: .25rem; }
.pm-sidebar-cta { background: var(--navy) !important; border-color: var(--navy) !important; }

/* MC4WP dans le sidebar */
.pm-sidebar .mc4wp-form p { display: flex; flex-direction: column; gap: .5rem; margin: 0; }
.pm-sidebar .mc4wp-form label { font-size: 0; }
.pm-sidebar .mc4wp-form input[type="email"] { width: 100% !important; background: #fafafa !important; border: 1.5px solid var(--border) !important; color: var(--black) !important; font-family: var(--F); font-size: .85rem; padding: .7rem 1rem; border-radius: var(--radius) !important; }
.pm-sidebar .mc4wp-form input[type="email"]::placeholder { color: var(--gray-light) !important; }
.pm-sidebar .mc4wp-form input[type="submit"] { width: 100% !important; background: var(--navy) !important; color: white !important; font-family: var(--F); font-weight: 700; font-size: .82rem; padding: .7rem; border: none !important; border-radius: var(--radius-pill) !important; cursor: pointer; }
.pm-sidebar .mc4wp-form input[type="submit"]:hover { background: var(--blue) !important; }


/* ── Performance — content-visibility pour sections sous le fold ── */
.pm-section, .pm-section.alt, .cta-band, .cta-band-mid, .vs-section,
.stats-band, .punchline-section { content-visibility: auto; contain-intrinsic-size: auto 600px; }

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.pm-home-hero-inner > * { animation: fadeUp .65s ease both; }
.pm-home-hero-inner > *:nth-child(1) { animation-delay: .05s; }
.pm-home-hero-inner > *:nth-child(2) { animation-delay: .2s; }

/* ── RESPONSIVE ── */
@media (min-width:1600px) {
  .pm-wrap { max-width: 1240px; }
  .pm-section { padding: 7rem 0; }
  .pm-home-hero { padding: 160px 5% 100px; }
  .pm-home-hero-inner { max-width: 1240px; gap: 5rem; }
}
@media (min-width:1400px) and (max-width:1599px) {
  .pm-wrap { max-width: 1180px; }
  .pm-home-hero-inner { grid-template-columns: 1fr 460px; gap: 5rem; }
}
@media (max-width:1024px) {
  .nav-links { display: none; }
  .nav-cta { display: none !important; }
  .nav-burger { display: flex; }
  .sticky-cta { display: block; }
  body { padding-bottom: 60px !important; }
  .pm-home-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-proof { display: none; }
  .hero-proof-visual { display: none; }
  .hero-right { display: none; }
  .chiffres-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pm-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .method-steps { grid-template-columns: repeat(3,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .temos-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .ig-3col { grid-template-columns: 1fr 1fr !important; }
  .cas-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width:768px) {
  /* Gap nav mobile — s'assurer que le hero couvre bien derrière la nav */
  .pm-home-hero { padding-top: 100px; }
  /* Admin bar offset sur mobile */
  .admin-bar .pm-home-hero { padding-top: 116px; }
  /* Espacement paragraphes réduit sur mobile */
  p { margin-bottom: 1rem; }
  .pm-single-body p { margin-bottom: 1rem; }

  .pm-section { padding: 3rem 0; }
  .pm-home-hero { padding: 100px 5% 50px; }
  .pm-page-hero { padding: 90px 5% 40px; }
  .pm-contact-inner { padding: 90px 5% 50px !important; }
  .pm-contact-hero { overflow: hidden !important; }
  .form-card { padding: 1.5rem !important; }
  .stats-grid { grid-template-columns: 1fr 1fr !important; }
  .temos-grid { grid-template-columns: 1fr !important; }
  .cas-grid { grid-template-columns: 1fr !important; }
  .services-grid { grid-template-columns: 1fr !important; }
  .method-steps { grid-template-columns: 1fr !important; }
  .offre-grid { grid-template-columns: 1fr !important; }
  .ig-2col { grid-template-columns: 1fr !important; }
  .ig-3col { grid-template-columns: 1fr !important; }
  .avantages-grid { grid-template-columns: 1fr !important; }
  .groupe-grid { grid-template-columns: 1fr !important; }
  .formats-grid { grid-template-columns: 1fr !important; }
  .logos-marquee-track { gap: 1.25rem !important; }
  .stats-band-inner { grid-template-columns: 1fr 1fr !important; }
  .info-grid { grid-template-columns: 1fr !important; }
  #blog-grid { grid-template-columns: 1fr !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .cta-btns { flex-direction: column; }
  .cta-btns a { width: 100%; justify-content: center; }
  .nl-footer-input { min-width: 0; width: 100%; }
  .nl-footer-form { width: 100%; }
  .chiffres-stats { grid-template-columns: 1fr 1fr !important; }
  h2, .pm-h2 { font-size: clamp(1.5rem, 5.5vw, 2rem); }

  /* Strips — label au-dessus sur mobile */
  .pm-strip,
  .media-proof-strip { padding: 1.25rem 0; }
  .pm-strip-inner,
  .media-proof-inner { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .strip-logos .logo-pill,
  .strip-logos .strip-logo-img,
  .logos-marquee-track .logo-box,
  .media-proof-inner .media-name { flex-shrink: 0; white-space: nowrap; }

  /* Marquee mobile — vitesse légèrement plus rapide */
  .is-marquee { animation-duration: 25s; }
}

@keyframes pm-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
