/* ============================================================
   ARTERE — Page Expertises / Agence
   Styles spécifiques (réutilise assets/styles.css)
   ============================================================ */

/* Hero — fond clair continu comme l'accueil */
.xp-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #f3f3f4 0%, #eff0f1 60%, #eaeaec 100%);
}
.xp-hero .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
  gap: 24px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 72px;
  padding-right: 0;
  padding-left: max(28px, calc((100vw - 1180px) / 2 + 28px));
}
.xp-hero h1 {
  font-size: clamp(2rem, 2.95vw, 2.85rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0.5rem 0 0;
  max-width: 12.5em;
}
.xp-hero .lead {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34ch;
}
.xp-hero .hero-cta {
  display: flex;
  gap: 12px;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}
.xp-hero .hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.xp-hero .hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Panneau « stack technologique » (page Nos offres) */
.stack-panel {
  margin: 0;
  width: 100%;
  max-width: 520px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.stack-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), #f2554c);
}
.stack-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.stack-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand);
}
.stack-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
}
.stack-count {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.stack-body {
  padding: 26px 28px 30px;
}
.stack-img {
  display: block;
  width: 100%;
  height: auto;
}
@media (prefers-reduced-motion: no-preference) {
  .stack-panel {
    animation: stackFloat 7s ease-in-out infinite;
    will-change: transform;
  }
}
@keyframes stackFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Hero Accueil : illustration en fond plein cadre, sans bordure */
.accueil-hero {
  background:
    linear-gradient(
      100deg,
      #f4f4f5 0%,
      #f4f4f5 48%,
      rgba(245, 245, 246, 0.96) 56%,
      rgba(250, 250, 251, 0.5) 66%,
      rgba(255, 255, 255, 0) 76%
    ),
    url("../accueil-hero.png") no-repeat right center / auto 90%,
    #ffffff;
}
.accueil-hero .hero-grid {
  grid-template-columns: 1fr;
  min-height: clamp(460px, 44vw, 620px);
  align-items: center;
}
.accueil-hero .hero-copy {
  max-width: 540px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1000px) {
  .accueil-hero {
    background:
      linear-gradient(
        180deg,
        #f5f5f6 0%,
        rgba(247, 247, 248, 0.55) 30%,
        rgba(255, 255, 255, 0) 56%
      ),
      url("../accueil-hero.png") no-repeat center bottom / min(580px, 98%) auto,
      #ffffff;
  }
  .accueil-hero .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: 0;
    padding: 52px 28px min(60vw, 360px);
  }
  .accueil-hero .hero-copy {
    max-width: none;
    margin: 0 auto;
  }
  .accueil-hero .hero-cta {
    justify-content: center;
  }
}

/* Hero Nos offres : illustration Cortex en fond plein cadre, sans bordure */
.offres-hero {
  background:
    linear-gradient(
      100deg,
      #f4f4f5 0%,
      #f4f4f5 48%,
      rgba(245, 245, 246, 0.96) 56%,
      rgba(250, 250, 251, 0.5) 66%,
      rgba(255, 255, 255, 0) 76%
    ),
    url("../offres-cortex.png") no-repeat right center / auto 90%,
    #ffffff;
}
.offres-hero .hero-grid {
  grid-template-columns: 1fr;
  min-height: clamp(440px, 42vw, 600px);
  align-items: center;
}
.offres-hero .hero-copy {
  max-width: 540px;
  position: relative;
  z-index: 2;
}

/* Nos expertises — rangée de 5 cartes */
.cards-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.xp-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px 22px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.xp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #dcdcdf;
}
.xp-badge {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--surface-alt);
  display: grid;
  place-items: center;
  color: var(--brand);
  margin-bottom: 20px;
}
.xp-badge svg {
  width: 34px;
  height: 34px;
}
.xp-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.xp-card p {
  color: var(--muted);
  margin-top: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

/* ARTERE 360 — grille de 7 cartes catégories (4 + 3) */
.a360 {
  position: relative;
}
.a360 .sec-head {
  text-align: center;
}
.a360 .sec-head p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.a360-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}
.a360-card {
  flex: 1 1 250px;
  max-width: 282px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(20, 22, 26, 0.07);
  padding: 30px 28px 32px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.a360-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px rgba(20, 22, 26, 0.12);
  border-color: #e2e2e5;
}
.a360-card-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
  min-height: 104px;
}
.a360-ic {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f3f4f6;
  color: var(--brand);
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 0 0 1px rgba(20, 22, 26, 0.03),
    0 6px 14px rgba(20, 22, 26, 0.06);
}
.a360-ic svg {
  width: 30px;
  height: 30px;
}
.a360-titles {
  padding-top: 4px;
  min-width: 0;
}
.a360-titles h3 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.15;
}
.a360-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.25;
}
.a360-rule {
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand);
  margin-top: 12px;
}
.a360-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.a360-list li {
  position: relative;
  padding-left: 22px;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.4;
  white-space: nowrap;
}
.a360-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.52em;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}
@media (max-width: 920px) {
  .a360-card {
    flex-basis: 240px;
    max-width: 320px;
  }
}
@media (max-width: 560px) {
  .a360-grid {
    gap: 18px;
  }
  .a360-card {
    flex: 1 1 100%;
    max-width: 420px;
  }
}

/* Ce que nous apportons — 2x2 */
.apport-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 46px;
}
.apport-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px 26px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.apport-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.apport-ic {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--surface-alt);
  display: grid;
  place-items: center;
  color: var(--brand);
  flex: 0 0 auto;
}
.apport-ic svg {
  width: 32px;
  height: 32px;
}
.apport-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
}
.apport-card p {
  color: var(--muted);
  margin-top: 0.4rem;
  font-size: 0.93rem;
  line-height: 1.55;
}

/* Technologies & savoir-faire — rangée de pills */
.tech-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
  margin-top: 46px;
}
.tech-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 18px 12px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: left;
  transition:
    border-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}
.tech-item:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}
.tech-item svg {
  width: 24px;
  height: 24px;
  color: var(--brand);
  flex: 0 0 auto;
}

/* Notre histoire */
.histoire .sec-head {
  text-align: center;
}
.histoire-body {
  max-width: 880px;
  margin: 38px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 38px 44px;
}
.histoire-body .histoire-lead {
  font-size: 1.16rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 1.1rem;
}
.histoire-body p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 1rem;
}
.histoire-body p:first-child {
  margin-top: 0;
}

/* CTA bandeau bas (avant footer) */
.xp-cta-wrap {
  padding: 56px 0 64px;
  background: #fff;
}
.xp-cta {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  align-items: center;
  gap: 24px;
  padding: 0 44px 0 0;
}
.xp-cta-illus {
  position: relative;
  align-self: stretch;
  min-height: 150px;
  background: linear-gradient(120deg, #fafafa, #f0f0f1);
  display: grid;
  place-items: center;
}
.xp-cta-illus svg {
  width: 78%;
  height: auto;
}
.xp-cta-copy {
  padding: 30px 0;
}
.xp-cta-copy h2 {
  font-size: clamp(1.4rem, 2.3vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.xp-cta-copy .btn {
  margin-top: 1.3rem;
}

/* ============================================================
   NOTRE APPROCHE — régie / forfait
   ============================================================ */
.sec-emph {
  color: var(--brand);
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 1rem;
  text-align: center;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 46px;
}
.principle {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}
.principle .p-ic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 6px 16px -8px rgba(20, 20, 22, 0.18);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.principle .p-ic svg {
  width: 30px;
  height: 30px;
}
.principle h4 {
  font-size: 1.02rem;
  font-weight: 700;
}
.principle p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.25rem;
  line-height: 1.5;
}

.engage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-top: 42px;
}
.engage-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 34px 32px;
  text-align: center;
}
.section--alt .engage-card {
  background: #fff;
}
.engage-card .e-ic {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: #fff;
}
.engage-card.regie .e-ic {
  background: linear-gradient(150deg, #ef4b41, #cf1c15);
}
.engage-card.forfait .e-ic {
  background: linear-gradient(150deg, #3a3c41, #222);
}
.engage-card .e-ic svg {
  width: 32px;
  height: 32px;
}
.engage-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.engage-card.regie h3 {
  color: var(--brand);
}
.engage-card.forfait h3 {
  color: var(--ink);
}
.engage-card p {
  color: var(--muted);
  margin-top: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.engage-mid {
  padding: 0 22px;
}
.engage-shield {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(150deg, #efc95b, #e5b845);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow-md);
}
.engage-shield svg {
  width: 26px;
  height: 26px;
  color: #1a1b1e;
}
.same-exig {
  margin-top: 56px;
}
.same-exig .se-head {
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 36px;
  position: relative;
}
.exig-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.exig-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.exig-item .x-ic {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--surface-alt);
  color: var(--brand);
  display: grid;
  place-items: center;
}
.section--alt .exig-item .x-ic {
  background: #fff;
}
.exig-item .x-ic svg {
  width: 36px;
  height: 36px;
}
.exig-item span {
  font-size: 1rem;
  color: var(--ink-soft);
  font-weight: 600;
  line-height: 1.4;
  max-width: 16ch;
}

/* ============================================================
   LE CONSTAT — signaux d'alerte
   ============================================================ */
.constat-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: start;
}
.constat-intro h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.constat-intro .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.constat-intro .eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brand);
}
.constat-lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
  align-self: center;
}
.signals {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 54px;
}
.signal-col h3 {
  font-size: 1.05rem;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--brand);
  margin-bottom: 8px;
}
.signal {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--line);
}
.signal:last-child {
  border-bottom: 0;
}
.signal .num {
  color: var(--brand);
  font-weight: 700;
  font-size: 0.82rem;
  font-variant-numeric: tabular-nums;
  padding-top: 2px;
}
.signal h4 {
  font-size: 1rem;
  font-weight: 700;
}
.signal p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.3rem;
  line-height: 1.5;
}

/* ============================================================
   LA MÉTHODE PULSE — inputs
   ============================================================ */
.pulse-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
}
.pulse-head h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.pulse-head .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pulse-head .eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brand);
}
.pulse-head p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}
.inputs-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 46px;
}
.input-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px 20px 26px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.section--alt .input-card {
  background: var(--surface-alt);
}
.input-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #dcdcdf;
}
.input-card .tag {
  color: var(--brand);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.input-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 10px;
}
.input-card p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ============================================================
   CORTEX — section sombre + dashboard mock
   ============================================================ */
.cortex {
  background: var(--surface-alt);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.cortex .eyebrow {
  color: var(--brand);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cortex .eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brand);
}
.cortex-top {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: start;
}
.cortex-intro .eyebrow {
  margin-bottom: 0.4rem;
}
.cortex-intro .rule {
  margin: 18px 0 0;
}
.cortex-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cortex-top h2 {
  font-size: clamp(2rem, 3.6vw, 3.05rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-top: 0.6rem;
  color: var(--ink);
}
.cortex-top .reg {
  color: var(--brand);
  font-size: 0.6em;
  vertical-align: super;
}
.cortex-top .lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}
.cortex-truth {
  margin-top: 34px;
}
.cortex-truth h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--ink);
}
.cortex-truth ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cortex-truth li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.cortex-truth li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--brand);
  border-top: 2px solid var(--brand);
  transform: rotate(45deg);
}
.cortex-truth .btn {
  margin-top: 24px;
}
.cortex-dash {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-md);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
}
.cdash-tabs {
  display: flex;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--muted-2);
  margin-bottom: 14px;
}
.cdash-tabs .on {
  color: var(--brand);
}
.cdash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.cdash-kpi {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 13px;
}
.cdash-kpi .k-lbl {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.cdash-kpi .k-val {
  font-size: 1.45rem;
  font-weight: 800;
  margin-top: 5px;
}
.cdash-kpi .k-val.g {
  color: #1fa463;
}
.cdash-kpi .k-val.a {
  color: #b8860b;
}
.cdash-kpi .k-val.r {
  color: var(--brand);
}
.cdash-panel {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
}
.cdash-panel h5 {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 11px;
}
.cbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
  font-size: 0.72rem;
}
.cbar .nm {
  flex: 0 0 62px;
  color: var(--ink-soft);
}
.cbar .track {
  flex: 1;
  height: 7px;
  border-radius: 6px;
  background: #e4e4e6;
  overflow: hidden;
  display: flex;
}
.cbar .track .b {
  height: 100%;
}
.cbar .track .b.green {
  background: #1fa463;
}
.cbar .track .b.red {
  background: var(--brand);
}
.cbar .pc {
  flex: 0 0 30px;
  text-align: right;
  color: var(--muted);
}
.cortex-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.cortex-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.cortex-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cortex-card .cc-tag {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
}
.cortex-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-top: 12px;
  color: var(--ink);
}
.cortex-card .cc-q {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin-top: 0.4rem;
}
.cortex-card .cc-d {
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 0.7rem;
  line-height: 1.5;
}

/* ---------- Cortex copilote (bande de synthèse) ---------- */
.cortex-copilot {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) repeat(4, 1fr);
  align-items: center;
  gap: 0;
  background: #fff;
  margin-top: 24px;
}
.ccp-lede {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 34px 22px 26px;
}
.ccp-badge {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
}
.ccp-badge svg {
  width: 30px;
  height: 30px;
}
.ccp-claim {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.34;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.ccp-claim span {
  display: block;
}
.ccp-claim .reg {
  display: inline;
  color: inherit;
  font-size: 0.62em;
  vertical-align: super;
  font-weight: 700;
}
.ccp-claim .em {
  color: var(--brand);
}
.ccp-benefit {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 22px 24px;
  height: 100%;
}
.ccp-benefit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 62%;
  background: var(--line);
}
.ccp-ic {
  flex: 0 0 auto;
  color: var(--brand);
  margin-top: 1px;
}
.ccp-ic svg {
  width: 27px;
  height: 27px;
}
.ccp-benefit h4 {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--brand);
  margin: 0;
  letter-spacing: -0.01em;
}
.ccp-benefit p {
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin: 0.3rem 0 0;
  line-height: 1.4;
}
@media (max-width: 980px) {
  .cortex-copilot {
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .ccp-lede {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--line);
  }
  .ccp-benefit:nth-child(2)::before,
  .ccp-benefit:nth-child(4)::before {
    display: none;
  }
  .ccp-benefit:nth-child(4),
  .ccp-benefit:nth-child(5) {
    border-top: 1px solid var(--line);
  }
}
@media (max-width: 560px) {
  .cortex-copilot {
    grid-template-columns: 1fr;
  }
  .ccp-benefit::before {
    display: none;
  }
  .ccp-benefit {
    border-top: 1px solid var(--line);
  }
}

/* ============================================================
   GAINS ATTENDUS
   ============================================================ */
.gains-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: end;
}
.gains-head h2 {
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
}
.gains-head .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gains-head .eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brand);
}
.gains-head p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.6;
}
.gains-head--center {
  display: block;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.gains-head--center .eyebrow {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 0.7rem;
}
.gains-head--center .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--brand);
}
.gains-head--center h2 {
  margin-bottom: 0.9rem;
}
.gains-head--center .reg {
  color: var(--brand);
  font-size: 0.62em;
  vertical-align: super;
  font-weight: 700;
}
.gains-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 54px;
  margin-top: 42px;
}
.gain {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.gain .num {
  color: var(--brand);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gain h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 8px;
}
.gain p {
  color: var(--muted);
  font-size: 0.93rem;
  margin-top: 0.4rem;
  line-height: 1.55;
}

/* ============================================================
   GAINS ATTENDUS — v2 (deux bandes infographiques)
   ============================================================ */
.gains2-head {
  text-align: center;
  max-width: 1040px;
  margin: 0 auto;
}
.gains2-pill {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  border: 1.5px solid var(--brand);
  border-radius: 999px;
  padding: 7px 18px;
}
.gains2-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 1.1rem 0 0;
  color: var(--ink);
  white-space: nowrap;
  text-transform: uppercase;
}
.gains2-head h2 .r {
  color: var(--brand);
}
.gains2-rule {
  display: block;
  width: 54px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand);
  margin: 1.1rem auto 0;
}
.gains2-head p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.6;
  margin: 1.1rem auto 0;
}
.gains2-head .reg {
  color: var(--brand);
  font-size: 0.62em;
  vertical-align: super;
  font-weight: 700;
}

.gband {
  display: grid;
  grid-template-columns: minmax(360px, 1.25fr) 1.75fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  margin-top: clamp(26px, 3vw, 38px);
  box-shadow: 0 26px 60px rgba(20, 22, 26, 0.16);
}
.gband--pulse {
  background: linear-gradient(115deg, #e1241c 0%, #c71d16 60%, #ae1510 100%);
}
.gband--cortex {
  background: linear-gradient(115deg, #1a1b1f 0%, #121316 100%);
}

/* bloc identité (logo + titres) */
.gband-id {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: clamp(28px, 3vw, 40px);
  position: relative;
}
.gband-id::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}
.gband-logo {
  position: relative;
  flex: 0 0 auto;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
}
.gl-ring {
  position: absolute;
  border-radius: 50%;
}
.gband-logo--pulse .gl-ring {
  border: 1.5px dashed rgba(255, 255, 255, 0.45);
}
.gband-logo--cortex .gl-ring {
  border: 1.5px dashed rgba(201, 162, 74, 0.55);
}
.gl-ring--1 {
  inset: 0;
}
.gl-ring--2 {
  inset: 14px;
  opacity: 0.6;
}
.gl-core {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}
.gband-logo--pulse .gl-core {
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}
.gband-logo--pulse .gl-core::before {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 50%;
  background: var(--brand);
}
.gband-logo--pulse .gl-core svg {
  position: relative;
  z-index: 1;
  width: 50px;
  height: 50px;
}
.gband-logo--cortex .gl-core {
  background: radial-gradient(circle at 50% 40%, #26282d, #15161a);
  border: 1.5px solid rgba(201, 162, 74, 0.6);
}
.gband-logo--cortex .gl-core svg {
  width: 48px;
  height: 48px;
}
@media (prefers-reduced-motion: no-preference) {
  .gband-logo--pulse .gl-ring--1 {
    animation: gspin 22s linear infinite;
  }
  .gband-logo--pulse .gl-ring--2 {
    animation: gspin 16s linear infinite reverse;
  }
  .gband-logo--cortex .gl-ring--1 {
    animation: gspin 24s linear infinite;
  }
  .gband-logo--cortex .gl-ring--2 {
    animation: gspin 18s linear infinite reverse;
  }
}
@keyframes gspin {
  to {
    transform: rotate(360deg);
  }
}

.gband-titles {
  min-width: 0;
}
.gband-titles h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1;
}
.gband-titles h3.gold {
  color: var(--gold);
}
.gband-titles h3 .reg {
  font-size: 0.42em;
  vertical-align: super;
  font-weight: 700;
}
.gband-claim {
  color: #fff;
  font-weight: 700;
  font-size: 1.06rem;
  line-height: 1.3;
  margin: 0.7rem 0 0;
}
.gband--cortex .gband-claim {
  color: #fff;
}
.gband-desc {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0.7rem 0 0;
}

/* métriques (3 colonnes) */
.gband-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}
.gmetric {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 5px;
  align-items: center;
  justify-content: start;
  text-align: left;
  padding: clamp(26px, 3vw, 40px) 14px;
  position: relative;
}
.gm-ic {
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  display: grid;
  place-items: center;
  margin: 0;
}
.gmetric > :not(.gm-ic) {
  grid-column: 2;
}
.gmetric + .gmetric::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}
.gm-ic svg {
  width: 28px;
  height: 28px;
}
.gm-ic--gold {
  color: var(--gold);
  background: #fff;
}
.gm-val {
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.gm-val.gold {
  color: var(--gold);
}
.gm-lbl {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}
.gm-lbl--lg {
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  text-transform: none;
  font-weight: 800;
  line-height: 1.2;
}
.gm-lbl.gold {
  color: var(--gold);
}
.gm-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.4;
  max-width: 22ch;
}

/* bande de synthèse blanche */
.gband-foot {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  margin-top: clamp(20px, 2.4vw, 30px);
  padding: 20px clamp(22px, 3vw, 34px);
}
.gbf-ic {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brand);
  border: 1.5px solid var(--brand-soft);
  background: #fff;
}
.gbf-ic svg {
  width: 26px;
  height: 26px;
}
.gbf-txt {
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  padding-left: 24px;
  border-left: 1px solid var(--line);
}
.gbf-txt .r {
  color: var(--brand);
}
.gbf-dots {
  flex: 0 0 auto;
  width: 86px;
  align-self: stretch;
  margin-left: auto;
  background-image: radial-gradient(currentColor 1.6px, transparent 1.7px);
  background-size: 12px 12px;
  color: rgba(225, 36, 28, 0.34);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 65%);
  mask-image: linear-gradient(90deg, transparent, #000 65%);
}
.gband-note {
  color: var(--muted-2);
  font-size: 0.82rem;
  margin: 18px 0 0;
}

@media (max-width: 980px) {
  .gband {
    grid-template-columns: 1fr;
  }
  .gband-id::after {
    display: none;
  }
  .gband-id {
    flex-direction: column;
    text-align: center;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .gm-sub {
    max-width: 26ch;
  }
}
@media (max-width: 680px) {
  .gains2-head h2 {
    white-space: normal;
  }
  .gband-metrics {
    grid-template-columns: 1fr;
  }
  .gmetric {
    padding: 24px 20px;
  }
  .gmetric + .gmetric::before {
    left: 18%;
    right: 18%;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }
  .gband-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .gbf-txt {
    padding-left: 0;
    border-left: 0;
  }
  .gbf-dots {
    display: none;
  }
}
.diag-cta {
  margin-top: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.diag-cta h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.diag-cta p {
  color: #b3b5ba;
  font-size: 0.92rem;
  margin-top: 0.4rem;
}

/* ============================================================
   ARTERE PULSE — offre (diagramme radar)
   ============================================================ */
.pulse-offer {
  background: var(--surface);
}
.pulse-offer .sec-head {
  text-align: center;
}
.pulse-title {
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
.pulse-title .brand-em {
  color: var(--brand);
}
.pulse-back h2 .brand-em {
  color: var(--brand);
}
.pulse-claims {
  margin: 1.4rem auto 0;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ink);
}
.pulse-claims span {
  display: block;
}
.pulse-claims .em {
  color: var(--brand);
}
.pulse-lead {
  margin: 1.3rem auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 62ch;
}
.pulse-foot {
  display: flex;
  justify-content: center;
  margin-top: clamp(34px, 4vw, 48px);
}
.pulse-cta {
  gap: 10px;
}
.pulse-cta .cta-chev {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: grid;
  place-items: center;
}
.pulse-cta .cta-chev svg {
  width: 11px;
  height: 11px;
}

/* ---------- PULSE refonte : méthode de diagnostic ---------- */
.pulse-title .reg {
  color: var(--brand);
  font-size: 0.46em;
  vertical-align: super;
  font-weight: 800;
}
.pulse-sub {
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-top: 1rem;
}
.pulse-sub-detail {
  display: block;
  max-width: 760px;
  margin: 0.85rem auto 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--muted);
  letter-spacing: 0;
}

/* ============================================================
   PULSE — RECTO (refonte fidèle maquette)
   ============================================================ */
.pr-h {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand);
  line-height: 1.3;
}
.pr-top {
  display: grid;
  grid-template-columns: 1.05fr auto 1.05fr;
  gap: clamp(22px, 3vw, 52px);
  align-items: stretch;
  max-width: 1240px;
  margin: clamp(34px, 4vw, 52px) auto 0;
}
/* --- colonne gauche --- */
.pr-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pr-desc {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.62;
}
.pr-rule {
  display: block;
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand);
  margin: 22px 0 26px;
}
.pr-diag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.4vw, 34px);
}
.pr-steps {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 26px);
}
.pr-steps li {
  display: flex;
  align-items: center;
  gap: 16px;
}
.pr-step-ic {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: var(--brand);
  display: grid;
  place-items: center;
}
.pr-step-ic svg {
  width: 30px;
  height: 30px;
}
.pr-step-div {
  flex: 0 0 auto;
  align-self: stretch;
  width: 2px;
  min-height: 40px;
  background: var(--brand);
  opacity: 0.85;
  border-radius: 2px;
}
.pr-step-lbl {
  flex: 1;
  min-width: 0;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.pr-scopes {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pr-scopes li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--surface-alt);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.pr-scope-ic {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fff;
  color: var(--brand);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.pr-scope-ic svg {
  width: 20px;
  height: 20px;
}
/* --- centre : pouls --- */
.pr-pulse {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}
.pr-pulse svg {
  width: clamp(170px, 15vw, 216px);
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 30px rgba(199, 32, 24, 0.2));
}
.pr-pulse-dot {
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--brand);
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px var(--brand-soft);
}
.pr-pulse-dot--l {
  left: -6px;
}
.pr-pulse-dot--r {
  right: -6px;
}
/* --- colonne droite --- */
.pr-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}
.pr-who {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
  margin-top: 0;
}
.pr-who-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  height: 100%;
  min-height: 136px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 18px 10px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}
.pr-who-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #dcdcdf;
}
.pr-who-ic {
  width: 40px;
  height: 40px;
  color: var(--brand);
  display: grid;
  place-items: center;
}
.pr-who-ic svg {
  width: 34px;
  height: 34px;
}
.pr-who-lbl {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
/* carte d'en-tête « Pour qui ? » : première catégorie, équilibre la grille 4×2 */
.pr-who-card--head {
  background: var(--brand);
  border-color: var(--brand);
  justify-content: center;
  box-shadow: 0 10px 24px rgba(225, 36, 28, 0.22);
}
.pr-who-card--head:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(225, 36, 28, 0.28);
  border-color: var(--brand);
}
.pr-who-head {
  font-size: 1.16rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.2;
}
.pr-claims {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px clamp(18px, 2vw, 28px);
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  position: relative;
  overflow: hidden;
  margin: clamp(28px, 3.5vw, 44px) 0 0;
}
.pr-claims-q {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(225, 36, 28, 0.24);
}
.pr-claims-q svg {
  width: 26px;
  height: auto;
}
.pr-claims-q--open {
  transform: rotate(180deg);
}
.pr-claims-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.pr-claims-lead {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3vw, 44px);
  flex-wrap: wrap;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
}
.pr-claims-pulse {
  width: 100%;
  max-width: 560px;
  height: 20px;
  display: block;
}
.pr-claims-em {
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 1.3;
  margin: 0;
}
/* --- chiffres clés --- */
.pr-stats {
  margin-top: clamp(30px, 3.6vw, 46px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 26px clamp(22px, 3vw, 40px) 28px;
}
.pr-stats-title {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 22px;
}
.pr-stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.pr-stat {
  display: flex;
  align-items: start;
  gap: 16px;
  padding: 4px clamp(14px, 2vw, 26px);
}
.pr-stat + .pr-stat {
  border-left: 1px solid var(--line);
}
.pr-stat-ic {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  color: var(--ink);
  display: grid;
  place-items: center;
}
.pr-stat-ic svg {
  width: 38px;
  height: 38px;
}
.pr-stat-num {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}
.pr-stat-num .num-em {
  color: var(--brand);
}
.pr-stat-lbl {
  margin-top: 5px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}

/* ============================================================
   PULSE — VERSO (Inputs factuels + Livrables)
   ============================================================ */
.pv-cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(20px, 2.4vw, 34px);
  max-width: 1140px;
  margin: clamp(32px, 4vw, 48px) auto 0;
  align-items: stretch;
}
/* colonne centrale : ligne pointillée + chevrons + logo radar */
.pv-mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(74px, 8vw, 120px);
  gap: 10px;
}
.pv-mid-line {
  flex: 1;
  width: 0;
  border-left: 2px dotted #e1241c;
  opacity: 0.5;
  min-height: 34px;
}
.pv-mid-chev {
  color: #e1241c;
  opacity: 0.6;
}
.pv-mid-chev svg {
  width: 24px;
  height: 24px;
}
.pv-mid-orb {
  flex: 0 0 auto;
}
.pv-mid-orb svg {
  width: clamp(96px, 10vw, 128px);
  height: auto;
  display: block;
}
/* carte commune (gauche + droite) */
.pv-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 34px 34px 32px;
}
.pv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  background: var(--brand);
}
.pv-eyebrow {
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 10px;
}
.pv-h {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.01em;
  margin: 0 0 26px;
}
.pv-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pv-timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
}
.pv-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pv-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex: 0 0 auto;
  margin-top: 2px;
}
.pv-dot.d1 {
  background: #9c1410;
}
.pv-dot.d2 {
  background: #c71d16;
}
.pv-dot.d3 {
  background: #e1241c;
}
.pv-dot.d4 {
  background: #f4998f;
}
.pv-dot.d5 {
  background: #fff;
  border: 2px solid #f0b6af;
}
.pv-line {
  flex: 1;
  width: 2px;
  background: #eccfcd;
  margin: 6px 0 0;
  border-radius: 2px;
}
.pv-txt {
  padding-bottom: 26px;
}
.pv-timeline li:last-child .pv-txt {
  padding-bottom: 0;
}
.pv-txt h5 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.pv-txt p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.pv-em {
  color: var(--ink);
  font-weight: 600;
}
/* carte Livrables — lignes séparées par des filets */
.pv-deliver.pv-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
}
.pv-deliver-doc {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--brand);
}
.pv-deliver-doc svg {
  width: 32px;
  height: 32px;
}
.pv-deliver-h {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
  margin: 0 0 6px;
}
.pv-deliver-sub {
  font-size: 0.98rem;
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.5;
}
.pv-deliver-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pv-deliver-list li {
  position: relative;
  padding: 16px 0 16px 24px;
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  border-top: 1px solid var(--line);
}
.pv-deliver-list li:first-child {
  border-top: none;
  padding-top: 4px;
}
.pv-deliver-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: calc(16px + 0.58em);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}
.pv-deliver-list li:first-child::before {
  top: calc(4px + 0.58em);
}

/* clôture centrée + tracé de pouls */
.pv-close {
  margin-top: auto;
  padding-top: 22px;
  text-align: center;
}
.pv-close-rule {
  display: block;
  width: 48px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--brand);
  margin: 0 auto 18px;
}
.pv-close-txt {
  margin: 0;
  font-size: clamp(1.12rem, 1.5vw, 1.32rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.pv-close-txt .accent {
  color: var(--brand);
}
.pv-close-pulse {
  display: block;
  width: min(300px, 90%);
  height: auto;
  margin: 18px auto 0;
}

/* bandeau pleine largeur sous les deux cartes */
.pv-strip {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  position: relative;
  overflow: hidden;
  max-width: 1140px;
  margin: clamp(20px, 2.4vw, 30px) auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 22px clamp(22px, 3vw, 34px);
}
.pv-strip-check {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(225, 36, 28, 0.24);
}
.pv-strip-check svg {
  width: 24px;
  height: 24px;
}
.pv-strip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pv-strip-list li {
  position: relative;
  padding: 0 clamp(14px, 1.8vw, 26px);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.pv-strip-list li + li {
  border-left: 1px solid var(--line);
}
.pv-strip-list .accent {
  color: var(--brand);
}
.pv-strip-dots {
  flex: 0 0 auto;
  width: 78px;
  align-self: stretch;
  background-image: radial-gradient(currentColor 1.6px, transparent 1.7px);
  background-size: 12px 12px;
  color: rgba(225, 36, 28, 0.32);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 60%);
  mask-image: linear-gradient(90deg, transparent, #000 60%);
}
@media (max-width: 980px) {
  .pv-cols {
    grid-template-columns: 1fr;
  }
  .pv-mid {
    flex-direction: row;
    width: auto;
    height: 64px;
  }
  .pv-mid-line {
    height: 0;
    min-height: 0;
    width: auto;
    flex: 1;
    border-left: 0;
    border-top: 2px dotted #e1241c;
  }
  .pv-mid-chev svg {
    transform: rotate(-90deg);
  }
  .pv-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .pv-strip-dots {
    display: none;
  }
  .pv-strip-list {
    grid-template-columns: 1fr 1fr;
    gap: 16px 0;
  }
}
@media (max-width: 560px) {
  .pv-strip-list {
    grid-template-columns: 1fr;
  }
  .pv-strip-list li {
    padding: 8px 0;
  }
  .pv-strip-list li + li {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

/* --- responsive PULSE refonte --- */
@media (max-width: 1040px) {
  .pr-top {
    grid-template-columns: 1fr;
    gap: 36px;
    justify-items: center;
  }
  .pr-left,
  .pr-right {
    width: 100%;
    max-width: 620px;
  }
  .pr-pulse {
    order: -1;
  }
  .pr-pulse-dot {
    display: none;
  }
  .pv-cols {
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: 640px;
  }
}
@media (max-width: 620px) {
  .pr-diag {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pr-who {
    grid-template-columns: repeat(2, 1fr);
  }
  .pr-claims {
    gap: 12px;
  }
  .pr-claims-lead {
    flex-direction: column;
    gap: 2px;
  }
  .pr-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 0;
  }
  .pr-stat:nth-child(odd) {
    border-left: 0;
  }
  .pr-stat {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.pm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 4.5vw, 68px);
  max-width: 1080px;
  margin: clamp(36px, 4vw, 52px) auto 0;
  align-items: stretch;
}
.pm-grid--3 {
  grid-template-columns: 1fr auto 1.05fr;
  gap: clamp(20px, 2.4vw, 38px);
  max-width: 1240px;
  align-items: center;
}
.pm-figure {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pulse-ic {
  display: block;
  width: clamp(112px, 11vw, 150px);
  filter: drop-shadow(0 14px 26px rgba(199, 32, 24, 0.22));
}
.pulse-ic svg {
  width: 100%;
  height: auto;
  display: block;
}

/* colonne centrale fusionnée en une seule carte */
.pm-grid--3 .pm-left {
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  gap: clamp(24px, 2.8vw, 34px);
}
.pm-grid--3 .pm-block {
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.pm-grid--3 .pm-block + .pm-block {
  border-top: 1px solid var(--line);
  padding-top: clamp(24px, 2.8vw, 34px);
}
.pm-left {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-content: stretch;
}
.pm-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
}
.pm-block .pm-steps,
.pm-block .pm-scopes {
  flex: 1;
  justify-content: space-between;
}
.pm-h {
  font-size: 1.04rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.pm-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pm-steps li {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pm-step-lbl {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.25;
}
.pm-bar {
  height: 8px;
  border-radius: 6px;
  background: #ececed;
  overflow: hidden;
}
.pm-fill {
  display: block;
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
}
.pm-scopes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.pm-scopes li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.pm-scope-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-alt);
  color: var(--brand);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.pm-scope-ic svg {
  width: 22px;
  height: 22px;
}

.pm-phases {
  display: flex;
  flex-direction: column;
}
.pm-phase {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding-bottom: 18px;
}
.pm-phase:last-child {
  padding-bottom: 0;
}
.pm-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pm-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px var(--brand-soft);
  flex: 0 0 auto;
  margin-top: 8px;
}
.pm-line {
  flex: 1;
  width: 2px;
  background: #ecd3d1;
  margin-top: 6px;
  border-radius: 2px;
}
.pm-phase:last-child .pm-line {
  display: none;
}
.pm-phase-body {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: none;
  padding: 20px 24px;
}
.pm-phase-n {
  display: block;
  color: var(--brand);
  font-weight: 800;
  font-size: 0.9rem;
}
.pm-phase-body h3 {
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-top: 3px;
}
.pm-phase-body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}

/* recto Cortex : intro centrée (style PULSE) */
.cortex-head {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.cortex-head .eyebrow {
  display: block;
}
.cortex-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-top: 0.6rem;
}
.cortex-head .rule {
  margin: 16px auto 0;
}
/* eyebrow verso Cortex : centré, sans tiret à gauche */
.cortex-verso .eyebrow {
  justify-content: center;
}
.cortex-verso .eyebrow::before {
  display: none;
}
.ctx-oneline {
  white-space: normal;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.cortex-lead {
  margin: 1.25rem auto 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.6;
  max-width: 60ch;
}
.cortex-lead strong {
  color: var(--ink);
  font-weight: 700;
}
.cortex-kicker {
  margin-top: 1.1rem;
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--brand);
}

/* recto Cortex : « Ce que Cortex vous apporte » (5 bénéfices) */
.cortex-benefits {
  margin-top: clamp(40px, 4.6vw, 62px);
}
.cb-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: clamp(30px, 3.4vw, 42px);
}
.cb-head .reg {
  font-size: 0.7em;
  vertical-align: super;
}
.cb-head::before,
.cb-head::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 130px;
  background: color-mix(in srgb, var(--brand) 40%, #fff);
}
.cb-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.cb-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 clamp(14px, 1.8vw, 26px);
}
.cb-item + .cb-item {
  border-left: 1px solid var(--line);
}
.cb-ic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--line);
  box-shadow: 0 6px 16px -8px rgba(20, 20, 22, 0.18);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.cb-ic svg {
  width: 30px;
  height: 30px;
}
.cb-item h3 {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--brand);
  min-height: 3.95em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cb-item h3::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  margin: 11px auto 0;
}
.cb-item p {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: left;
}
.cb-item .reg {
  font-size: 0.7em;
  vertical-align: super;
}

.ctx-who--recto {
  margin-top: clamp(40px, 4.6vw, 62px);
}

/* verso Cortex : 3 cartes visuelles (les 3 lectures) */
.ctx-showcase {
  margin-top: clamp(34px, 4vw, 52px);
}
.ctx-shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}
.ctx-shot {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 22px 22px 24px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.ctx-shot:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #dcdcdf;
}
.ctx-shot-tag {
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.ctx-shot-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--brand);
  transform: rotate(45deg);
  flex: 0 0 auto;
}
.ctx-shot:nth-child(1) .ctx-shot-tag {
  color: var(--brand);
}
.ctx-shot-img {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface-alt);
  margin-top: auto;
}
.ctx-shot-img img {
  display: block;
  width: 100%;
  height: auto;
}

/* verso : triptyque « Une méthode · Vos données · Des décisions » */
.pd-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 2.6vw, 34px);
  max-width: 1180px;
  margin: clamp(34px, 4vw, 50px) auto 0;
  align-items: stretch;
}
.pd-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 34px 30px;
}
.pd-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--brand-dark);
}
.pd-tag {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.pd-card-head {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 2px;
}
.pd-card-desc {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.62;
}
.pd-card--method {
  justify-content: flex-start;
}
.pd-card--method .pd-clock-num {
  font-size: clamp(2.8rem, 4.4vw, 4rem);
}
.pd-feats {
  list-style: none;
  margin: 24px 0 0;
  padding: 22px 22px;
  background: var(--brand-soft);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pd-feats li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}
.pd-feat-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  color: var(--brand);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.pd-feat-ic svg {
  width: 22px;
  height: 22px;
}
.pd-feats h5 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.01em;
}
.pd-feats p {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}
.pd-method-claims {
  list-style: none;
  margin: auto 0 0;
  padding: 24px 0 0;
  border-top: 2px dotted color-mix(in srgb, var(--brand) 45%, #fff);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pd-method-claims li {
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink-soft);
}
.pd-method-claims li.em {
  color: var(--brand);
}
.pd-card--out .pd-deliver-doc {
  top: 30px;
  right: 28px;
}

/* bandeau de conclusion pleine largeur */
.pd-payoff {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 26px;
  max-width: 1180px;
  margin: clamp(30px, 3.4vw, 44px) auto 0;
  text-align: center;
  border-top: 1px solid var(--line);
  padding-top: clamp(28px, 3vw, 40px);
}
.pd-payoff p {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink-soft);
}
.pd-payoff p.em {
  color: var(--brand);
}
.pd-payoff-sep {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--brand);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.pd-desc {
  max-width: 880px;
  margin: 1.2rem auto 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
  text-align: center;
}
.pd-clock-num {
  font-size: clamp(3rem, 6vw, 4.6rem);
  font-weight: 800;
  color: var(--brand);
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.pd-clock-unit {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand);
  margin-top: 16px;
}

.pd-bottom {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(30px, 4.5vw, 56px);
  max-width: 1060px;
  margin: clamp(38px, 4.5vw, 54px) auto 0;
  align-items: stretch;
}
.pd-input-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.pd-input-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding-bottom: 18px;
}
.pd-input-list li:last-child {
  padding-bottom: 0;
}
.pd-irail {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pd-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex: 0 0 auto;
  margin-top: 2px;
}
.pd-iline {
  flex: 1;
  width: 2px;
  background: #eedcdb;
  margin-top: 4px;
  border-radius: 2px;
}
.pd-input-list li:last-child .pd-iline {
  display: none;
}
.pd-dot.d1 {
  background: var(--brand-dark);
}
.pd-dot.d2 {
  background: var(--brand);
}
.pd-dot.d3 {
  background: #ee6a63;
}
.pd-dot.d4 {
  background: #f49a95;
}
.pd-dot.d5 {
  background: #fff;
  border: 2px solid #f49a95;
}
.pd-itext h5 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--ink);
}
.pd-itext p {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.5;
  margin-top: 0.3rem;
}

.pd-deliver {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 34px 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pd-deliver::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--brand-dark);
}
.pd-deliver-doc {
  position: absolute;
  top: 28px;
  right: 30px;
  color: var(--brand);
}
.pd-deliver-doc svg {
  width: 34px;
  height: 34px;
}
.pd-deliver-head {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--brand);
  margin: 8px 0 20px;
}
.pd-card--out .pd-deliver-list {
  margin-top: 18px;
}
.pd-deliver-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  gap: 0;
}
.pd-deliver-list li {
  position: relative;
  padding: 16px 0 16px 26px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.4;
  border-top: 1px solid var(--line);
}
.pd-deliver-list li:first-child {
  border-top: 0;
}
.pd-deliver-list li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(16px + 0.62em);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

@media (max-width: 1040px) {
  .pd-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pd-card--method {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 28px;
  }
  .pd-card--method .pd-tag {
    flex-basis: 100%;
    margin-bottom: 6px;
  }
  .pd-card--method .pd-card-desc {
    flex: 1 1 320px;
    margin-top: 0;
  }
}
@media (max-width: 900px) {
  .pm-grid,
  .pd-top,
  .pd-bottom {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pd-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ctx-shots {
    grid-template-columns: 1fr;
    max-width: 480px;
    gap: 18px;
  }
  .pd-card--method {
    flex-direction: column;
    align-items: flex-start;
  }
  .pm-grid--3 {
    grid-template-columns: 1fr;
    gap: 34px;
    justify-items: center;
  }
  .pm-grid--3 .pm-left,
  .pm-grid--3 .pm-phases {
    width: 100%;
    max-width: 560px;
  }
  .pulse-ic {
    width: 120px;
  }
  .pm-left {
    gap: 28px;
  }
}
@media (max-width: 520px) {
  .pm-left {
    grid-template-columns: 1fr;
  }
}

/* diagramme */
.pulse-diagram {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(36px, 5vw, 90px);
  align-items: center;
  max-width: 1080px;
  margin: clamp(40px, 5vw, 60px) auto 0;
}
.pulse-col {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2.4vw, 32px);
  z-index: 2;
}

.pulse-axis {
  position: relative;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(20, 20, 22, 0.05);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px;
  align-items: start;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.pulse-axis:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #e0e0e3;
}
.ax-abbr {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: var(--brand-soft);
  color: var(--brand);
  flex: 0 0 auto;
}
.pulse-axis.amber .ax-abbr {
  background: #fbf1da;
  color: #9a6b00;
}
.ax-body h4 {
  font-size: 0.96rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.12;
}
.ax-body p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.45;
  margin-top: 0.4rem;
}
.ax-tag {
  grid-column: 1 / -1;
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--brand);
}
.ax-tag i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  flex: 0 0 auto;
}
.ax-tag.amber {
  color: #c28a00;
}
.ax-tag.amber i {
  background: #e0a100;
}

/* connecteurs vers le hub */
.conn {
  position: absolute;
  top: 50%;
  height: 1.5px;
  background: #e0e1e4;
  z-index: 1;
  pointer-events: none;
  border-radius: 2px;
}
.conn.c-l1,
.conn.c-l2,
.conn.c-l3 {
  left: calc(33.33% - 6px);
  transform-origin: right center;
}
.conn.c-r1,
.conn.c-r2,
.conn.c-r3 {
  right: calc(33.33% - 6px);
  transform-origin: left center;
}
.conn.c-l1 {
  width: 11%;
  transform: translateY(-118px) rotate(20deg);
}
.conn.c-l2 {
  width: 13%;
  transform: translateY(0) rotate(0deg);
}
.conn.c-l3 {
  width: 11%;
  transform: translateY(118px) rotate(-20deg);
}
.conn.c-r1 {
  width: 11%;
  transform: translateY(-118px) rotate(-20deg);
}
.conn.c-r2 {
  width: 13%;
  transform: translateY(0) rotate(0deg);
}
.conn.c-r3 {
  width: 11%;
  transform: translateY(118px) rotate(20deg);
}

/* hub radar */
.pulse-hub {
  position: relative;
  width: clamp(190px, 15vw, 232px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  z-index: 2;
}
.pulse-ring {
  position: absolute;
  border-radius: 50%;
}
.pulse-ring.r1 {
  inset: -6px;
  border: 1.5px dashed color-mix(in srgb, var(--brand) 24%, #fff);
}
.pulse-ring.r2 {
  inset: 6%;
  border: 1.5px solid color-mix(in srgb, var(--brand) 16%, #fff);
}
.pulse-arc {
  position: absolute;
  inset: 2%;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--brand);
  border-right-color: var(--brand);
  transform: rotate(34deg);
}
.pulse-core {
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle at 38% 30%,
    #f4514a 0%,
    var(--brand) 48%,
    var(--brand-dark) 100%
  );
  box-shadow: 0 18px 40px rgba(225, 36, 28, 0.34);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  z-index: 2;
}
.pulse-core svg {
  width: 34%;
  height: auto;
  margin-bottom: 4px;
}
.pulse-core .pc-title {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
}
.pulse-core .pc-sub {
  font-size: 0.62rem;
  font-weight: 700;
  opacity: 0.95;
  margin-top: 7px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  line-height: 1.4;
}

/* ---------- flip recto/verso ---------- */
.pulse-flip {
  perspective: 2600px;
}
.pulse-flip-inner {
  position: relative;
  transform-style: preserve-3d;
  transition:
    transform 0.85s cubic-bezier(0.2, 0.7, 0.2, 1.05),
    height 0.45s ease;
}
.pulse-flip.is-flipped .pulse-flip-inner {
  transform: rotateY(180deg);
}
.pulse-face {
  min-width: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: opacity 0s linear 0.42s;
}
.pulse-front {
  position: relative;
}
.pulse-face.pulse-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: rotateY(180deg);
}
.pulse-flip:not(.is-flipped) .pulse-back {
  opacity: 0;
  pointer-events: none;
}
.pulse-flip.is-flipped .pulse-front {
  opacity: 0;
  pointer-events: none;
}
.pulse-cta .cta-chev.rev {
  margin-right: 2px;
}
.pulse-cta .cta-chev.rev svg {
  width: 11px;
  height: 11px;
}

/* ---------- verso : profils de maturité ---------- */
.maturity-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: clamp(36px, 4vw, 52px);
}
.mat-card {
  position: relative;
  border-radius: 16px;
  padding: 22px 20px 24px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mat-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
}
.mat-level {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}
.mat-name {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-top: 0.35rem;
}
.mat-share {
  font-size: 0.92rem;
  font-weight: 700;
  margin-top: 0.5rem;
}
.mat-share em {
  font-style: italic;
  font-weight: 500;
  opacity: 0.7;
}
.mat-metrics {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 1.05rem 0 0;
  border-top: 1px solid;
  border-color: inherit;
}
.mat-metrics div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid;
  border-color: inherit;
}
.mat-metrics dt {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.62;
}
.mat-metrics dd {
  font-size: 0.84rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}
.mat-tagline {
  display: block;
  margin-top: 1.05rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mat-points {
  list-style: none;
  margin: 0.7rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mat-points li {
  position: relative;
  padding-left: 15px;
  font-size: 0.82rem;
  line-height: 1.35;
}
.mat-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: currentColor;
  opacity: 0.55;
}

/* tons par niveau */
.mat-low {
  background: var(--surface-alt);
  border-color: #e4e4e6;
}
.mat-low::before {
  background: var(--muted-2);
}
.mat-low .mat-level {
  color: var(--muted);
}
.mat-low .mat-name {
  color: var(--ink);
}
.mat-low .mat-metrics,
.mat-low .mat-metrics div {
  border-color: #e0e0e3;
}
.mat-low .mat-tagline {
  color: var(--muted);
}

.mat-medium {
  background: var(--brand-soft);
  border-color: #f3d2cf;
}
.mat-medium::before {
  background: var(--brand);
}
.mat-medium .mat-level,
.mat-medium .mat-tagline {
  color: var(--brand);
}
.mat-medium .mat-name {
  color: var(--ink);
}
.mat-medium .mat-metrics,
.mat-medium .mat-metrics div {
  border-color: #f0cfcb;
}

.mat-high {
  background: linear-gradient(165deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 18px 38px rgba(191, 26, 20, 0.28);
}
.mat-high::before {
  background: var(--gold);
}
.mat-high .mat-level,
.mat-high .mat-tagline {
  color: var(--gold);
}
.mat-high .mat-name {
  color: #fff;
}
.mat-high .mat-share em {
  opacity: 0.85;
}
.mat-high .mat-metrics,
.mat-high .mat-metrics div {
  border-color: rgba(255, 255, 255, 0.22);
}
.mat-high .mat-metrics dt {
  opacity: 0.78;
}

.mat-elite {
  background: linear-gradient(165deg, #23262b 0%, #0e0f11 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 18px 38px rgba(14, 15, 17, 0.3);
}
.mat-elite::before {
  background: var(--gold);
}
.mat-elite .mat-level,
.mat-elite .mat-tagline {
  color: var(--gold);
}
.mat-elite .mat-name {
  color: #fff;
}
.mat-elite .mat-share em {
  opacity: 0.8;
}
.mat-elite .mat-metrics,
.mat-elite .mat-metrics div {
  border-color: rgba(255, 255, 255, 0.16);
}
.mat-elite .mat-metrics dt {
  opacity: 0.7;
}

/* bandeau bas : tableau + callout + question */
.maturity-bottom {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  margin-top: 24px;
  align-items: stretch;
}
.mat-table-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 10px 26px 16px;
  display: flex;
  align-items: center;
}
.mat-table {
  width: 100%;
  border-collapse: collapse;
}
.mat-table th {
  text-align: left;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 8px 12px;
  border-bottom: 1px solid var(--line);
}
.mat-table th:not(:first-child),
.mat-table td:not(:first-child) {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.mat-table td {
  padding: 13px 8px;
  font-size: 1rem;
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}
.mat-table tr:last-child td {
  border-bottom: 0;
}
.mat-table td:first-child {
  font-weight: 600;
  color: var(--ink-soft);
}
.mat-table td:first-child b {
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-right: 6px;
}
.mat-table td.ok {
  color: #1fa463;
}
.mat-table td.bad {
  color: var(--brand);
}

.maturity-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mat-callout {
  background: linear-gradient(160deg, #23262b, #0e0f11);
  color: #fff;
  border-radius: 16px;
  padding: 24px 28px;
}
.mc-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.mc-big {
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  margin: 0.5rem 0 0.7rem;
  letter-spacing: -0.02em;
}
.mat-callout p {
  font-size: 0.96rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}
.mat-callout p b {
  color: #fff;
}
.mat-question {
  flex: 1;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px;
}
.mat-question p {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}
.mat-question strong {
  color: var(--brand);
  font-weight: 800;
}

/* ---------- Cortex verso (transformation + personas) ---------- */
/* bandeau partenaire performance */
.ctx-partner {
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) 2.4fr;
  gap: clamp(24px, 3vw, 44px);
  align-items: center;
  max-width: 1180px;
  margin: clamp(34px, 4vw, 52px) auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: clamp(26px, 2.8vw, 38px) clamp(28px, 3vw, 40px);
}
.cp-lead {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}
.cp-bulb {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  box-shadow: 0 10px 24px -10px rgba(225, 36, 28, 0.6);
}
.cp-bulb svg {
  width: 30px;
  height: 30px;
}
.cp-lead p {
  font-size: 1.06rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.cp-lead strong {
  color: var(--ink);
  font-weight: 800;
}
.cp-lead .cp-em {
  color: var(--brand);
  font-weight: 800;
}
.cp-lead .reg {
  font-size: 0.62em;
  vertical-align: super;
}
.cp-feats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 28px);
}
.cp-feat {
  position: relative;
  padding-left: clamp(18px, 1.6vw, 22px);
}
.cp-feat + .cp-feat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: var(--line);
}
.cp-ic {
  color: var(--brand);
  margin-bottom: 2px;
  display: block;
  line-height: 0;
}
.cp-ic svg {
  width: 26px;
  height: 26px;
  display: block;
}
.cp-feat h5 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.01em;
  line-height: 1.2;
  white-space: nowrap;
}
.cp-feat p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.ctx-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin-top: clamp(32px, 4vw, 48px);
}
.ctx-stage {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ctx-ic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.ctx-ic svg {
  width: 28px;
  height: 28px;
}
.ctx-stage h4 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 15px;
}
.ctx-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ctx-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.35;
}
.ctx-list li::before {
  position: absolute;
  left: 0;
  top: -1px;
  font-weight: 800;
}
.ctx-list.x li::before {
  content: "\00d7";
  color: var(--brand);
  font-size: 1.15rem;
  top: -3px;
}
.ctx-list.ok li::before {
  content: "\2713";
  color: var(--brand);
}
.ctx-list.ok.green li::before {
  color: #1fa463;
}
.ctx-stage.bad .ctx-ic {
  background: var(--brand-soft);
  color: var(--brand);
}
.ctx-stage.mid .ctx-ic {
  background: var(--brand-soft);
  color: var(--brand);
}
.ctx-stage.good .ctx-ic {
  background: #e2f3e9;
  color: #1fa463;
}
.ctx-stage.mid {
  border-color: color-mix(in srgb, var(--brand) 28%, #fff);
  box-shadow: 0 14px 32px rgba(225, 36, 28, 0.1);
}
.ctx-arrow {
  display: grid;
  place-items: center;
  color: var(--brand);
}
.ctx-arrow svg {
  width: 26px;
  height: 26px;
}

.ctx-who-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: clamp(40px, 5vw, 58px);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
}
.ctx-who-head::before,
.ctx-who-head::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 130px;
  background: color-mix(in srgb, var(--brand) 40%, #fff);
}
.ctx-personas {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.ctx-persona {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ctx-p-ic {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--line);
  box-shadow: 0 6px 16px -8px rgba(20, 20, 22, 0.18);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.ctx-p-ic svg {
  width: 26px;
  height: 26px;
}
.ctx-persona h4 {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.ctx-persona h4::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  background: var(--brand);
  margin: 9px auto 0;
}
.ctx-persona p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 13px;
  max-width: 21ch;
  text-align: left;
}

/* Responsive */
@media (max-width: 1000px) {
  .principles {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .maturity-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .maturity-bottom {
    grid-template-columns: 1fr;
  }
  .pulse-block {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .pulse-lead {
    max-width: 56ch;
  }
  .engage {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .engage-mid {
    margin: 0 auto;
  }
  .exig-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .constat-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .signals {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .pulse-head,
  .gains-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .inputs-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .cortex-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cortex-cards {
    grid-template-columns: 1fr;
  }
  .ctx-partner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cp-feats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 18px;
  }
  .cp-feat:nth-child(odd) {
    padding-left: 0;
  }
  .cp-feat:nth-child(odd)::before {
    display: none;
  }
  .cb-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 34px 8px;
  }
  .cb-item:nth-child(3n + 1) {
    border-left: 0;
  }
  .ctx-personas {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 16px;
  }
  .gains-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .xp-hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 52px 28px 64px;
  }
  .xp-hero .lead {
    max-width: 46ch;
  }
  .xp-hero .hero-visual {
    justify-content: center;
  }
  .stack-panel {
    max-width: 440px;
    animation: none;
  }
  .offres-hero {
    background:
      linear-gradient(
        180deg,
        #f5f5f6 0%,
        rgba(247, 247, 248, 0.55) 30%,
        rgba(255, 255, 255, 0) 56%
      ),
      url("../offres-cortex.png") no-repeat center bottom / min(580px, 98%) auto,
      #ffffff;
  }
  .offres-hero .hero-grid {
    min-height: 0;
    text-align: center;
    padding-bottom: min(64vw, 400px);
  }
  .offres-hero .hero-copy {
    max-width: none;
    margin: 0 auto;
  }
  .offres-hero .hero-cta {
    justify-content: center;
  }
  .cards-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .apport-grid {
    grid-template-columns: 1fr;
  }
  .tech-row {
    grid-template-columns: repeat(4, 1fr);
  }
  .xp-cta {
    grid-template-columns: 1fr;
    padding: 0 0 28px;
    text-align: center;
  }
  .xp-cta-illus {
    min-height: 130px;
  }
  .xp-cta-copy {
    padding: 0 26px;
  }
  .xp-cta-copy .btn {
    margin-inline: auto;
  }
}
@media (max-width: 560px) {
  .maturity-cards {
    grid-template-columns: 1fr;
  }
  .pulse-diagram {
    grid-template-columns: 1fr;
    gap: 26px;
    justify-items: center;
  }
  .pulse-hub {
    order: -1;
  }
  .pulse-col {
    width: 100%;
    max-width: 340px;
  }
  .conn {
    display: none;
  }
  .cards-5 {
    grid-template-columns: 1fr;
  }
  .tech-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .histoire-body {
    padding: 28px 22px;
  }
  .exig-row {
    grid-template-columns: 1fr;
  }
  .inputs-row {
    grid-template-columns: 1fr;
  }
  .cp-feats {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .cp-feat {
    padding-left: 0;
  }
  .cp-feat::before {
    display: none !important;
  }
  .cp-lead {
    grid-template-columns: auto 1fr;
  }
  .cb-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 8px;
  }
  .cb-item:nth-child(3n + 1) {
    border-left: 1px solid var(--line);
  }
  .cb-item:nth-child(2n + 1) {
    border-left: 0;
  }
  .ctx-personas {
    grid-template-columns: repeat(2, 1fr);
  }
}
