*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --indigo: #1968da;
  --indigo-d: #1457be;
  --indigo-l: #ebf3ff;
  --white: #fff;
  --bg: #f8f7f4;
  --g5: #8a93a8;
  --g7: #454f6b;
  --g9: #1a2033;
  --green: #12b76a;
  --orange: #f79009;
  --red: #f04438;
  --b: rgba(0, 0, 0, 0.07);
  --b2: rgba(0, 0, 0, 0.12);
  --r: 6px;
  --rl: 10px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  color: var(--g9);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--b);
  padding: 0 40px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon {
  width: 26px;
  height: 26px;
  background: var(--indigo);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-lk {
  font-size: 13px;
  color: var(--g5);
  padding: 5px 10px;
  border-radius: 5px;
  transition: color 0.12s;
}
.nav-lk:hover {
  color: var(--g9);
}
.btn-nav {
  font-size: 13px;
  font-weight: 500;
  background: var(--indigo);
  color: #fff;
  border: none;
  border-radius: var(--r);
  padding: 7px 16px;
  cursor: pointer;
  transition: background 0.12s;
  white-space: nowrap;
}
.btn-nav:hover {
  background: var(--indigo-d);
}

/* HERO */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero {
  background: var(--indigo-l);
  padding: 100px 24px 96px;
  text-align: center;
  border-bottom: 1px solid rgba(25, 104, 218, 0.15);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: var(--indigo-d);
  border: 1px solid rgba(25, 104, 218, 0.3);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.7);
  animation: fadeUp 0.4s ease both;
}
.bdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.hero h1 {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(38px, 5.5vw, 60px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.06;
  color: var(--g9);
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.4s 0.06s ease both;
}
.hero h1 em {
  font-style: italic;
  color: var(--indigo);
}
.hero-sub {
  font-size: 18px;
  color: var(--g5);
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto 44px;
  animation: fadeUp 0.4s 0.12s ease both;
}
.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  animation: fadeUp 0.4s 0.18s ease both;
}
.btn-hero {
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  background: var(--indigo);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 15px 36px;
  cursor: pointer;
  transition: background 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(25, 104, 218, 0.3);
  margin-top: 8px;
}
.btn-hero:hover {
  background: var(--indigo-d);
}
.hero-hint {
  font-size: 12px;
  color: var(--g5);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* STATS STRIP */
.stats {
  max-width: 640px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(25, 104, 218, 0.18);
  border-radius: var(--rl);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  animation: fadeUp 0.4s 0.24s ease both;
}
.stat {
  padding: 22px 24px;
  border-right: 1px solid rgba(25, 104, 218, 0.12);
}
.stat:last-child {
  border-right: none;
}
.stat-v {
  font-size: 26px;
  font-weight: 800;
  color: var(--indigo);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 5px;
  font-family: "Inter Tight", sans-serif;
}
.stat-l {
  font-size: 12px;
  color: var(--g7);
  font-weight: 500;
}

/* DEPT PILLS */
.depts {
  border-top: 1px solid var(--b);
  border-bottom: 1px solid var(--b);
  padding: 18px 40px;
  background: var(--white);
}
.depts-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.dept-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--g5);
  margin-right: 4px;
  flex-shrink: 0;
}
.dept-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid;
  white-space: nowrap;
}
.dpot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* SECTIONS */
.s {
  padding: 80px 40px;
  border-top: 1px solid var(--b);
}
.s.bg {
  background: var(--bg);
}
.si {
  max-width: 860px;
  margin: 0 auto;
}
.stag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 14px;
  display: block;
}
.sh {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1.2px;
  color: var(--g9);
  line-height: 1.1;
  margin-bottom: 12px;
}
.sh em {
  font-style: italic;
  color: var(--indigo);
}
.ssub {
  font-size: 15px;
  color: var(--g5);
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 480px;
}

/* PROBLEMS */
.prob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--b);
  border: 1px solid var(--b);
  border-radius: var(--rl);
  overflow: hidden;
}
.prob-card {
  background: var(--white);
  padding: 28px 24px;
  border-left: 3px solid transparent;
  transition: all 0.15s;
}
.prob-card:hover {
  border-left-color: var(--indigo);
  background: var(--indigo-l);
}
.prob-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #fef2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.prob-q {
  font-size: 14px;
  font-weight: 600;
  color: var(--g9);
  line-height: 1.4;
  margin-bottom: 8px;
}
.prob-a {
  font-size: 13px;
  color: var(--g5);
  line-height: 1.65;
}

/* STEPS TIMELINE */
.steps-tl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-top: 8px;
}
.steps-tl::before {
  display: none;
}
.steps-tl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 8px;
}
.step {
  padding: 0 24px 0 0;
  position: relative;
}
.step:last-child {
  padding-right: 0;
}
.step-head {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}
.step-circ {
  width: 54px;
  height: 54px;
  background: var(--indigo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--bg);
}
.step-head::after {
  content: "";
  position: absolute;
  left: 54px;
  right: -24px;
  top: 50%;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--indigo),
    rgba(25, 104, 218, 0.2)
  );
  transform: translateY(-50%);
}
.step:last-child .step-head::after {
  display: none;
}
.step-n {
  font-size: 11px;
  font-weight: 600;
  color: var(--indigo);
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.step-t {
  font-size: 16px;
  font-weight: 700;
  color: var(--g9);
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  line-height: 1.25;
}
.step-d {
  font-size: 13px;
  color: var(--g5);
  line-height: 1.65;
}

/* METHOD */
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--b);
  border: 1px solid var(--b);
  border-radius: var(--rl);
  overflow: hidden;
}
.method-l {
  background: var(--white);
  padding: 32px 28px;
}
.method-r {
  background: var(--bg);
  padding: 28px 24px;
}
.method-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--g5);
  margin-bottom: 12px;
}
.method-title {
  font-family: "Inter Tight", sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--g9);
}
.method-desc {
  font-size: 13px;
  color: var(--g5);
  line-height: 1.72;
  margin-bottom: 20px;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pill {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--b2);
  color: var(--g7);
  background: var(--white);
}
.ishi-lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--g5);
  margin-bottom: 14px;
}
.why-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.why-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.why-n {
  font-family: "Courier New", monospace;
  font-size: 11px;
  color: var(--g5);
  padding-top: 1px;
  white-space: nowrap;
}
.why-t {
  font-size: 12px;
  color: var(--g9);
  line-height: 1.5;
}
.why-t em {
  font-style: normal;
  color: var(--g5);
}
.why-conn {
  width: 1px;
  height: 7px;
  background: var(--b2);
  margin-left: 19px;
}

/* CAPA TABLE */
.capa {
  border: 1px solid var(--b);
  border-radius: var(--rl);
  overflow: hidden;
}
.capa-hdr {
  padding: 14px 20px;
  border-bottom: 1px solid var(--b);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
}
.capa-ttl {
  font-size: 13px;
  font-weight: 500;
}
.capa-sub {
  font-size: 11px;
  color: var(--g5);
  margin-top: 2px;
}
.share-btn {
  font-family: inherit;
  font-size: 11px;
  color: var(--g7);
  background: none;
  border: 1px solid var(--b2);
  border-radius: var(--r);
  padding: 5px 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th {
  font-size: 11px;
  font-weight: 500;
  color: var(--g5);
  text-align: left;
  padding: 10px 20px;
  border-bottom: 1px solid var(--b);
  background: var(--bg);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
td {
  font-size: 13px;
  padding: 11px 20px;
  border-bottom: 1px solid var(--b);
  vertical-align: middle;
}
tr:last-child td {
  border-bottom: none;
}
.st {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 100px;
}
.st-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.st-open {
  background: #fef9ee;
  color: #a16207;
}
.st-open .st-dot {
  background: #ca8a04;
}
.st-prog {
  background: #eff6ff;
  color: #1d4ed8;
}
.st-prog .st-dot {
  background: #3b82f6;
}
.st-done {
  background: #f0fdf4;
  color: #166534;
}
.st-done .st-dot {
  background: #22c55e;
}
.av {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--b2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 500;
  color: var(--g7);
}

/* PARADIGME */
.tiers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: var(--r);
  border: 1px solid var(--b);
}
.tier.hl {
  background: var(--indigo-l);
  border-color: rgba(25, 104, 218, 0.25);
}
.tier-n {
  width: 30px;
  height: 30px;
  background: var(--indigo);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.tier.hl .tier-n {
  background: var(--indigo);
}
.tier-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--g9);
  margin-bottom: 2px;
}
.tier.hl .tier-title {
  color: var(--indigo);
}
.tier-desc {
  font-size: 12px;
  color: var(--g5);
}
.tier.hl .tier-desc {
  color: var(--indigo-d);
}

/* PERSONAS */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--b);
  border: 1px solid var(--b);
  border-radius: var(--rl);
  overflow: hidden;
}
.persona-card {
  background: var(--white);
  padding: 28px 28px 32px;
  transition: background 0.15s;
}
.persona-card:hover {
  background: var(--bg);
}
.persona-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--indigo-l);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--indigo);
}
.persona-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--g9);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.persona-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.persona-list li {
  font-size: 13px;
  color: var(--g5);
  display: flex;
  align-items: baseline;
  gap: 7px;
}
.persona-list li::before {
  content: "·";
  color: var(--indigo);
  font-weight: 700;
  flex-shrink: 0;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.ind-card {
  background: var(--white);
  border: 1px solid var(--b);
  border-radius: var(--rl);
  padding: 20px 18px;
  transition: all 0.15s;
}
.ind-card:hover {
  border-color: var(--indigo);
  background: var(--indigo-l);
  transform: translateY(-2px);
}
.ind-icon {
  font-size: 26px;
  margin-bottom: 10px;
  line-height: 1;
}
.ind-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--g9);
  margin-bottom: 6px;
}
.ind-desc {
  font-size: 12px;
  color: var(--g5);
  line-height: 1.6;
  margin-bottom: 10px;
}
.ind-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--indigo);
  background: var(--indigo-l);
  border-radius: 100px;
  padding: 2px 9px;
  letter-spacing: 0.2px;
}

/* TESTIMONIALS */
.testis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--b);
  border: 1px solid var(--b);
  border-radius: var(--rl);
  overflow: hidden;
}
.tcard {
  background: var(--white);
  padding: 28px;
  transition: background 0.12s;
}
.tcard:hover {
  background: var(--bg);
}
.stars {
  color: var(--orange);
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.tcard p {
  font-size: 13px;
  color: var(--g7);
  line-height: 1.75;
  margin-bottom: 18px;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.t-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.t-name {
  font-size: 13px;
  font-weight: 500;
}
.t-role {
  font-size: 11px;
  color: var(--g5);
}

/* FAQ */
.faq-wrap {
  max-width: 600px;
  margin: 0 auto;
}
.faq-h {
  font-family: "Inter Tight", sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 36px;
}
.faq-item {
  border-bottom: 1px solid var(--b);
}
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  gap: 16px;
}
.faq-q {
  font-size: 15px;
  font-weight: 400;
  color: var(--g9);
}
.faq-chev {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--g5);
  transition: transform 0.18s;
}
.faq-btn[aria-expanded="true"] .faq-chev {
  transform: rotate(180deg);
}
.faq-btn[aria-expanded="true"] .faq-q {
  color: var(--indigo);
}
.faq-a {
  font-size: 14px;
  color: var(--g5);
  line-height: 1.75;
  padding: 0 0 18px;
  display: none;
}
.faq-a.open {
  display: block;
}

/* CTA */
.cta-s {
  padding: 96px 40px;
  background: var(--indigo);
  text-align: center;
}
.cta-s h2 {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.06;
  color: #fff;
  margin-bottom: 16px;
}
.cta-s h2 em {
  font-style: italic;
  opacity: 0.75;
}
.cta-s p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
}
.btn-white {
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  background: #fff;
  color: var(--indigo);
  border: none;
  border-radius: 8px;
  padding: 15px 36px;
  cursor: pointer;
  transition: opacity 0.12s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white:hover {
  opacity: 0.9;
}
.cta-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 16px;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--b);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ft-logo {
  display: flex;
  align-items: center;
  gap: 7px;
}
.ft-lm {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ft-ln {
  font-size: 13px;
  font-weight: 600;
}
.ft-links {
  display: flex;
  gap: 20px;
}
.ft-links a {
  font-size: 12px;
  color: var(--g5);
  transition: color 0.12s;
}
.ft-links a:hover {
  color: var(--g9);
}
.ft-copy {
  font-size: 12px;
  color: var(--g5);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav {
    padding: 0 20px;
  }
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .meth-cards {
    display: flex;
    flex-direction: column;
  }
  .meth-card {
    border-bottom: 1px solid var(--b);
  }
  .meth-card:last-child {
    border-bottom: none;
  }
  #paradigme .si > div {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  #paradigme img {
    max-width: 360px !important;
    margin: 0 auto;
  }
  .share-feats {
    grid-template-columns: 1fr;
    border-radius: var(--r);
  }
  .share-dark {
    padding: 56px 24px;
    overflow: hidden;
  }
}

/* NUCLEAR MOBILE FIXES */
@media (max-width: 768px) {
  .share-feats {
    display: flex !important;
    flex-direction: column !important;
    gap: 1px;
  }
  .share-feat {
    width: 100% !important;
  }
  .why-mini-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px;
    padding: 8px 0;
  }
  .why-mini-a {
    text-align: left !important;
    font-style: italic;
  }
  .meth-cards {
    display: flex !important;
    flex-direction: column !important;
  }
  .meth-card {
    width: 100% !important;
    border-right: none !important;
    border-bottom: 1px solid var(--b) !important;
  }
  .meth-card:last-child {
    border-bottom: none !important;
  }
}
@media (max-width: 640px) {
  nav {
    padding: 0 16px;
    height: 48px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 68px 16px 56px;
  }
  .hero h1 {
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: -1.5px;
  }
  .hero-sub {
    font-size: 15px;
  }
  .btn-hero {
    font-size: 14px;
    padding: 13px 26px;
  }
  .s {
    padding: 56px 16px;
  }
  .depts {
    padding: 14px 16px;
  }
  .dept-lbl {
    display: none;
  }

  /* Pour qui — empile */
  .persona-grid {
    grid-template-columns: 1fr;
  }

  /* Steps — colonne unique, ligne masquée */
  .steps-tl {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step-head::after {
    display: none;
  }
  .step {
    padding: 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border-bottom: 1px solid var(--b);
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .step-head {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .step-circ {
    width: 40px;
    height: 40px;
    box-shadow: none;
  }
  .step-circ svg {
    width: 18px;
    height: 18px;
  }
  .step-body {
    flex: 1;
  }
  .step-n {
    margin-bottom: 4px;
  }
  .step-t {
    font-size: 15px;
  }

  /* Méthode — 1 col propre */
  .meth-cards {
    display: flex;
    flex-direction: column;
    background: none;
    border: 1px solid var(--b);
    border-radius: var(--rl);
    overflow: hidden;
    gap: 0;
  }
  .meth-card {
    border-bottom: 1px solid var(--b);
    border-radius: 0;
    padding: 24px 20px;
  }
  .meth-card:last-child {
    border-bottom: none;
  }
  .meth-num {
    font-size: 22px;
  }
  .why-mini-row {
    grid-template-columns: 18px 1fr;
    gap: 4px;
  }
  .why-mini-a {
    text-align: left;
    color: var(--g5);
    font-size: 10px;
  }
  .why-mini-root .why-mini-a {
    text-align: left;
  }

  /* Share dark */
  .share-dark {
    padding: 48px 16px;
    overflow: hidden;
  }
  .share-feats {
    grid-template-columns: 1fr;
    border-radius: var(--r);
  }
  .share-feat {
    padding: 20px 18px;
  }

  /* Paradigme */
  #paradigme .si > div {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  #paradigme img {
    max-width: 100% !important;
    margin: 0 auto;
  }
  .tiers {
    gap: 8px;
  }

  /* Industries */
  .ind-grid {
    grid-template-columns: 1fr;
  }

  /* Témoignages */
  .testis {
    grid-template-columns: 1fr;
  }

  /* Footer */
  footer {
    flex-direction: column;
    gap: 14px;
    text-align: center;
    padding: 20px 16px;
  }
  .ft-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .cta-s {
    padding: 64px 16px;
  }
  .cta-s h2 {
    font-size: clamp(26px, 7vw, 36px);
  }
}

/* TERRAIN PHOTO */
.terrain-photo {
  position: relative;
  border-radius: var(--rl);
  overflow: hidden;
  margin-bottom: 48px;
  height: 260px;
}
.terrain-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.terrain-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 100px;
  letter-spacing: 0.2px;
}

/* METHOD CARDS */
.meth-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--b);
  border: 1px solid var(--b);
  border-radius: var(--rl);
  overflow: hidden;
}
.meth-card {
  background: var(--white);
  padding: 28px 24px;
}
.meth-card-hl {
  background: var(--indigo-l);
}
.meth-num {
  font-family: "Inter Tight", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--g9);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
  opacity: 0.15;
}
.meth-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--g9);
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.meth-desc {
  font-size: 13px;
  color: var(--g5);
  line-height: 1.6;
  margin-bottom: 20px;
}
.meth-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.meth-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid var(--b2);
  color: var(--g7);
  background: var(--white);
}
.why-mini {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-mini-row {
  display: grid;
  grid-template-columns: 20px 1fr 1fr;
  gap: 6px;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(25, 104, 218, 0.1);
}
.why-mini-row:last-child {
  border-bottom: none;
}
.why-mini-n {
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: var(--g5);
  font-weight: 600;
}
.why-mini-q {
  font-size: 11px;
  color: var(--g7);
}
.why-mini-a {
  font-size: 11px;
  color: var(--g5);
  text-align: right;
}
.why-mini-root .why-mini-q {
  font-weight: 600;
  color: var(--indigo);
}
.why-mini-root .why-mini-a {
  color: var(--indigo);
  font-weight: 700;
  text-align: right;
}
.meth-8d {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.d8-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 12px;
  color: var(--g7);
}
.d8-hl {
  background: var(--indigo-l);
  color: var(--indigo);
  font-weight: 500;
}
.d8-n {
  font-family: "Courier New", monospace;
  font-size: 10px;
  font-weight: 600;
  width: 28px;
  flex-shrink: 0;
}

/* SHARE 3-COL */
.share-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--b);
  border: 1px solid var(--b);
  border-radius: var(--rl);
  overflow: hidden;
}
.share-item {
  background: var(--white);
  padding: 28px 24px;
  transition: background 0.15s;
}
.share-item:hover {
  background: var(--indigo-l);
}
.share-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--indigo-l);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
  margin-bottom: 14px;
}
.share-item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--g9);
  margin-bottom: 8px;
  line-height: 1.3;
}
.share-item-desc {
  font-size: 13px;
  color: var(--g5);
  line-height: 1.65;
}

/* SHARE SECTION */
.share-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.share-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.share-card {
  background: var(--white);
  border: 1px solid var(--b);
  border-radius: var(--rl);
  padding: 18px 20px;
  transition: all 0.15s;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.share-card:hover {
  border-color: var(--indigo);
  background: var(--indigo-l);
}
.share-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--indigo-l);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--indigo);
}
.share-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--g9);
  margin-bottom: 3px;
}
.share-card-desc {
  font-size: 12px;
  color: var(--g5);
  line-height: 1.55;
}
.share-visual {
  background: var(--bg);
  border: 1px solid var(--b);
  border-radius: var(--rl);
  overflow: hidden;
}
.sv-header {
  background: var(--white);
  border-bottom: 1px solid var(--b);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.sv-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.sv-body {
  padding: 20px;
}
.sv-ticket {
  background: var(--white);
  border: 1px solid var(--b);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 12px;
}
.sv-ticket-hdr {
  padding: 10px 14px;
  border-bottom: 1px solid var(--b);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sv-ticket-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--g9);
}
.sv-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
}
.sv-ticket-body {
  padding: 10px 14px;
}
.sv-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid var(--b);
}
.sv-row:last-child {
  border-bottom: none;
}
.sv-row-label {
  font-size: 11px;
  color: var(--g5);
}
.sv-row-val {
  font-size: 11px;
  font-weight: 500;
  color: var(--g9);
  display: flex;
  align-items: center;
  gap: 5px;
}
.sv-av {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.sv-share-btn {
  width: 100%;
  background: var(--indigo);
  color: #fff;
  border: none;
  border-radius: var(--r);
  padding: 9px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.12s;
}
.sv-share-btn:hover {
  background: var(--indigo-d);
}
/* PARTAGE — fond indigo */
.share-dark {
  background: var(--indigo);
  padding: 80px 40px;
}
.share-dark-inner {
  max-width: 860px;
  margin: 0 auto;
}
.share-dark h2 {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -1.2px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.1;
}
.share-dark h2 em {
  font-style: italic;
  opacity: 0.65;
}
.share-dark-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 44px;
  max-width: 480px;
}
.share-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--rl);
  overflow: hidden;
}
.share-feat {
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  transition: background 0.15s;
}
.share-feat:hover {
  background: rgba(255, 255, 255, 0.12);
}
.share-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #fff;
}
.share-feat-t {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.share-feat-d {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
