:root {
  --bg: #fffcf0;
  --violet: #8132dc;
  --violet-dark: #18072c;
  --brown: #3c2311;
  --mint: #d7f0e2;
  --lavender: #f3e8ee;
  --line: #9e8f82;
}

@font-face {
  font-family: "Redaction10Fallback";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src:
    url("https://cdn.jsdelivr.net/fontsource/fonts/redaction-10@latest/latin-700-normal.woff2") format("woff2"),
    url("https://cdn.jsdelivr.net/fontsource/fonts/redaction-10@latest/latin-700-normal.woff") format("woff");
}

@font-face {
  font-family: "Redaction35";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src:
    url("https://cdn.jsdelivr.net/fontsource/fonts/redaction-35@latest/latin-700-normal.woff2") format("woff2"),
    url("https://cdn.jsdelivr.net/fontsource/fonts/redaction-35@latest/latin-700-normal.woff") format("woff");
}

@font-face {
  font-family: "Redaction70";
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src:
    url("https://cdn.jsdelivr.net/fontsource/fonts/redaction-70@latest/latin-700-normal.woff2") format("woff2"),
    url("https://cdn.jsdelivr.net/fontsource/fonts/redaction-70@latest/latin-700-normal.woff") format("woff");
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--brown);
  background: var(--bg);
}

.container {
  width: min(1320px, calc(100% - 52px));
  margin: 0 auto;
}

h1,
h2,
h3,
.logo {
  font-family: "IBM Plex Sans", sans-serif;
  letter-spacing: 0;
}

.dotted {
  background-image: radial-gradient(#d6d2c2 1px, transparent 1px);
  background-size: 7px 7px;
}

.dotted-dark {
  background-color: var(--violet-dark);
  background-image: radial-gradient(#3e2956 1px, transparent 1px);
  background-size: 8px 8px;
}

.topbar {
  border-bottom: 1px solid #b7aea0;
  background: var(--bg);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  text-decoration: none;
  color: #12090f;
  font-size: 36px;
  line-height: 0.78;
  font-weight: 600;
  position: relative;
}

.logo span {
  display: inline-block;
  margin-left: 4px;
  background: var(--violet);
  color: #fff;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 16px;
  line-height: 1;
  padding: 2px 7px;
  border-radius: 5px;
  transform: translateY(-2px);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #1f140f;
  font-size: 17px;
  font-weight: 600;
  position: relative;
}

nav a::before {
  content: "+";
  color: var(--violet);
  margin-right: 3px;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  padding: 11px 22px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  background: var(--violet);
  color: #fff;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.13);
}

.btn-outline {
  color: var(--violet);
  border-color: var(--violet);
  background: transparent;
  padding: 7px 14px;
  font-size: 12px;
}

.btn-arrow::before {
  content: "▼";
  margin-right: 8px;
  font-size: 14px;
}

.btn-arrow::after {
  content: "▼";
  margin-left: 8px;
  font-size: 14px;
}

.full {
  width: 100%;
  text-align: center;
}

.sr-only {
  position: absolute;
  left: -9999px;
}

.cornered {
  position: relative;
}

.cornered::before,
.cornered::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.cornered::before {
  top: -3px;
  left: -3px;
  border-top: 2px solid var(--violet);
  border-left: 2px solid var(--violet);
}

.cornered::after {
  right: -3px;
  bottom: -3px;
  border-right: 2px solid var(--violet);
  border-bottom: 2px solid var(--violet);
}

.hero {
  padding: 72px 0 66px;
}

.hero-shell h1 {
  margin: 0 auto 66px;
  max-width: 980px;
  text-align: center;
  font-size: clamp(42px, 3.4vw, 50px);
  line-height: 1.2;
  font-weight: 700;
}

.hero-lead {
  margin: -36px auto 44px;
  max-width: 920px;
  text-align: center;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  color: #35284a;
}

.highlight {
  display: inline-block;
  border: 2px solid var(--violet);
  border-radius: 22px;
  padding: 0 14px 2px;
}

.highlight.small {
  border-width: 2px;
  border-radius: 16px;
  padding: 0 10px 3px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  align-items: start;
  gap: 38px;
}

.card {
  border: 1px solid var(--line);
  background: color-mix(in hsl, var(--bg) 97%, #fff 3%);
  padding: 0 0 16px;
}

.formation-card {
  border: 1px solid #c6bbac;
  background: transparent;
}

.visual {
  width: 100%;
  aspect-ratio: 4 / 2.6;
  border-bottom: 1px solid #c6bbac;
  background-position: center;
  background-size: cover;
}

.visual-a {
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.07) 0 9px, transparent 9px 18px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0 9px, transparent 9px 18px),
    linear-gradient(145deg, #1c6c66, #d7f0e2 73%);
}

.visual-b {
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 9px, transparent 9px 18px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.06) 0 9px, transparent 9px 18px),
    linear-gradient(145deg, #8132dc, #f3e8ee 78%);
}

.formation-card .tags,
.offer .tags {
  display: flex;
  gap: 7px;
  margin: 16px 18px 10px;
}

.tags span {
  display: inline-block;
  background: #b9ebe0;
  color: #1e6b62;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 7px;
}

.formation-card h2 {
  margin: 0 18px 10px;
  font-family: "Redaction10Fallback", "Times New Roman", serif;
  font-size: clamp(34px, 2.1vw, 42px);
  line-height: 1.05;
  font-weight: 700;
}

.formation-card p {
  margin: 0 18px 15px;
  color: #3a3151;
  font-size: 15px;
  line-height: 1.5;
}

.price {
  display: block;
  text-align: center;
  text-decoration: none;
  color: var(--violet);
  font-size: 34px;
  font-weight: 800;
  margin: 2px 18px 12px;
}

.formation-card .btn {
  margin: 0 18px;
}

.newsletter {
  margin-top: 56px;
  background: var(--lavender);
  border: 1px solid #b393bd;
  padding: 18px 20px;
}

.newsletter h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
}

.newsletter input,
.newsletter-wide input {
  width: 100%;
  border: 1px solid #8f7d76;
  background: #fff;
  color: #2b1a10;
  font-size: 14px;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.center {
  text-align: center;
  margin-top: 48px;
}

.hero-proof {
  margin: 24px auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof li {
  border: 1px solid #beaecd;
  background: #f7eff8;
  color: #39295b;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 600;
}

.compare {
  padding-bottom: 52px;
}

.compare-titlebar {
  background: var(--violet-dark);
  color: #fff;
  padding: 24px 0;
}

.compare-titlebar h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(36px, 2.5vw, 46px);
  line-height: 1.2;
  font-weight: 700;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  padding-top: 58px;
}

.compare-card {
  background: #fffdf6;
  border: 1px solid #d7d0c2;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(20, 10, 30, 0.08);
  padding: 26px 30px;
  min-height: 100%;
}

.compare-card h3 {
  margin: 0 0 18px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(28px, 2vw, 34px);
  line-height: 1.2;
  font-weight: 700;
}

.compare-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.compare-card li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  align-items: start;
  color: #271713;
  font-size: 16px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.compare-card li span {
  transform: translateY(2px);
  font-size: 24px;
  line-height: 1;
}

.faq {
  padding: 76px 0 72px;
}

.faq h2 {
  margin: 0 0 28px;
  text-align: center;
  font-size: clamp(36px, 2.8vw, 44px);
  font-weight: 700;
  line-height: 1.22;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.faq-item {
  border: 1px solid #c7bcad;
  background: #fffdf6;
  padding: 18px 20px;
}

.faq-item h3 {
  margin: 0 0 8px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.34;
}

.faq-item p {
  margin: 0;
  font-size: 15px;
  color: #392e52;
  line-height: 1.5;
}

.compare-card li strong {
  font-weight: 700;
}

.why {
  padding: 54px 0 60px;
}

.why-panel {
  background: var(--lavender);
  border: 1px solid #bcaec2;
  padding: 72px 86px 66px;
}

.why h2 {
  margin: 0;
  text-align: center;
  font-size: clamp(30px, 2.5vw, 38px);
  line-height: 1.32;
  font-weight: 700;
}

.stats {
  margin: 50px 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stats strong {
  display: block;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(66px, 5vw, 92px);
  line-height: 1;
  font-weight: 700;
}

.stats p {
  margin: 10px 0 0;
  font-family: "Redaction10Fallback", "Times New Roman", serif;
  font-size: clamp(22px, 1.7vw, 28px);
  line-height: 1.22;
  font-weight: 700;
}

.body {
  margin: 0 auto 18px;
  max-width: 1040px;
  color: #3c3151;
  line-height: 1.5;
  font-size: 16px;
}

.mission {
  color: #fff;
  padding: 80px 0 84px;
  text-align: center;
}

.mission h2,
.formations h2,
.testimonials h2,
.about h2 {
  margin: 0 0 14px;
  font-size: clamp(38px, 3vw, 48px);
  line-height: 1.25;
  font-weight: 700;
}

.subtitle {
  display: inline-block;
  margin: 0 0 28px;
  border: 2px solid var(--violet);
  border-radius: 24px;
  background: var(--lavender);
  color: var(--violet);
  padding: 4px 18px 7px;
  font-size: 32px;
  font-weight: 700;
}

.mission .body {
  color: #ece7f2;
  max-width: 980px;
}

.mission-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.mission-card {
  background: var(--lavender);
  color: var(--brown);
  padding: 30px 24px 24px;
  border: 1px solid #bdaec3;
}

.mission-card p {
  margin: 24px 0 0;
  font-family: "Redaction10Fallback", "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.24;
  font-weight: 700;
}

.shape-set {
  width: 136px;
  height: 136px;
  margin: 0 auto;
  position: relative;
}

.shape-set::before,
.shape-set::after {
  content: "";
  position: absolute;
}

.shape-a {
  background:
    radial-gradient(circle at 25% 24%, var(--brown) 0 22%, transparent 23%),
    linear-gradient(135deg, transparent 36%, var(--mint) 37% 58%, transparent 59%),
    linear-gradient(145deg, transparent 55%, var(--violet) 56% 83%, transparent 84%);
}

.shape-a::after {
  width: 28px;
  height: 28px;
  background: var(--violet-dark);
  transform: rotate(45deg);
  top: 30px;
  right: 18px;
}

.shape-b {
  background:
    radial-gradient(circle at 24% 26%, var(--brown) 0 18%, transparent 19%),
    radial-gradient(circle at 48% 52%, transparent 0 37%, #9886a1 38% 39%, transparent 40%),
    linear-gradient(140deg, transparent 58%, var(--violet) 59% 78%, transparent 79%);
}

.shape-b::after {
  width: 26px;
  height: 26px;
  background: var(--mint);
  border-radius: 50%;
  bottom: 10px;
  left: 28px;
}

.shape-c {
  background:
    radial-gradient(circle at 34% 28%, var(--brown) 0 22%, transparent 23%),
    linear-gradient(180deg, transparent 2%, var(--violet) 3% 45%, transparent 46%),
    radial-gradient(circle at 35% 64%, var(--mint) 0 19%, transparent 20%);
}

.shape-c::after {
  width: 20px;
  height: 20px;
  background: var(--violet-dark);
  transform: rotate(45deg);
  top: 72px;
  left: 68px;
}

.formations {
  padding: 82px 0 88px;
}

.formations h2 {
  text-align: center;
  color: var(--brown);
}

.mini-stats {
  margin: 34px 0 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: center;
}

.mini-stats strong {
  display: block;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(66px, 5.2vw, 92px);
  line-height: 1;
  font-weight: 700;
}

.mini-stats p {
  margin: 10px 0 0;
  font-family: "Redaction10Fallback", "Times New Roman", serif;
  font-size: clamp(24px, 1.8vw, 30px);
  line-height: 1.2;
  font-weight: 700;
}

.list-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
}

.offer {
  display: grid;
  grid-template-columns: 38% 62%;
  border: 1px solid var(--line);
  background: transparent;
}

.offer .visual {
  aspect-ratio: auto;
  min-height: 320px;
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.offer-content {
  padding: 16px 18px 16px;
}

.offer h3 {
  margin: 0 0 10px;
  font-family: "Redaction10Fallback", "Times New Roman", serif;
  font-size: clamp(34px, 2.1vw, 42px);
  line-height: 1.04;
}

.offer p {
  margin: 0 0 12px;
  color: #3a3151;
  font-size: 15px;
  line-height: 1.5;
}

.offer .price {
  margin: 2px 0 10px;
}

.newsletter-wide {
  margin-top: 42px;
  background: var(--lavender);
  border: 1px solid #bcaec2;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 22px;
  align-items: center;
}

.newsletter-wide h3 {
  margin: 0;
  font-size: clamp(34px, 2.2vw, 40px);
  line-height: 1.2;
}

.newsletter-wide form {
  display: flex;
  gap: 14px;
  align-items: center;
}

.newsletter-wide input {
  margin: 0;
}

.testimonials {
  color: #fff;
  padding: 84px 0;
  text-align: center;
}

.testimonials-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review {
  text-align: left;
  border: 1px solid #a387be;
  background: #faf6ff;
  color: #2e1c12;
  padding: 16px 18px;
  line-height: 1.45;
  font-size: 15px;
}

.about {
  padding: 84px 0;
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.portrait {
  border: 1px solid #c8c0b2;
  height: 360px;
  background:
    radial-gradient(circle at 45% 38%, #f9f9f9 0 14%, transparent 15%),
    linear-gradient(165deg, #d7d8dd, #f4f4f4 45%, #c4c6cd);
}

.about-content p {
  margin: 0 0 16px;
  color: #342a4b;
  font-size: 16px;
  line-height: 1.52;
}

footer {
  border-top: 1px solid #d2c3d3;
  background: #efe5f0;
  padding: 30px 0;
}

.foot {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  font-size: 28px;
}

.foot p {
  margin: 0;
  color: #4f425b;
  font-size: 17px;
}

.foot div {
  display: flex;
  gap: 16px;
}

.foot a {
  text-decoration: none;
  color: #39231a;
  font-size: 15px;
  font-weight: 700;
}

.footer-credit {
  margin: 8px 0 0;
  color: #7a6c83;
  font-size: 13px;
}

.footer-credit a {
  color: #7a6c83;
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 1160px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .compare-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .list-two {
    grid-template-columns: 1fr;
  }

  .newsletter-wide {
    grid-template-columns: 1fr;
  }

  .newsletter-wide form {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(1320px, calc(100% - 28px));
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
  }

  nav {
    gap: 12px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-shell h1 {
    margin-bottom: 40px;
    font-size: 39px;
  }

  .hero-lead {
    margin: -14px auto 28px;
    font-size: 16px;
  }

  .hero-grid,
  .compare-grid,
  .faq-grid,
  .stats,
  .mini-stats,
  .mission-grid,
  .testimonials-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .offer {
    grid-template-columns: 1fr;
  }

  .offer .visual {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .why-panel {
    padding: 42px 20px 40px;
  }

  .compare-card {
    padding: 20px 18px;
  }

  .compare-card h3 {
    font-size: 30px;
  }

  .compare-card li {
    font-size: 16px;
    grid-template-columns: 28px 1fr;
  }

  .compare-card li span {
    font-size: 22px;
  }

  .foot {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/* V2 training-first positioning */
.eyebrow {
  margin: 0 0 14px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #d7f0e2;
}

.center-eyebrow {
  text-align: center;
}

.platform-hero {
  padding: 68px 0 78px;
  background-position: 0 0;
  animation: dottedDrift 22s linear infinite;
}

.platform-hero .hero-shell h1 {
  margin: 0 auto 20px;
  max-width: 1040px;
  font-size: clamp(42px, 4.2vw, 68px);
  line-height: 1.06;
}

.platform-hero .hero-shell h1::before,
.platform-hero .hero-shell h1::after {
  content: "+";
  display: inline-block;
  color: var(--violet);
  font-size: 0.42em;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-0.85em);
}

.platform-hero .hero-shell h1::before {
  margin-right: 10px;
}

.platform-hero .hero-shell h1::after {
  margin-left: 10px;
}

.platform-hero .hero-lead {
  margin: 0 auto 28px;
  max-width: 900px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 24px;
}

.btn-secondary {
  background: #fffdf6;
  border-color: var(--violet);
  color: var(--violet);
}

.btn {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover {
  box-shadow: 0 8px 0 rgba(60, 35, 17, 0.13);
}

.platform-proof {
  margin-top: 0;
}

.platform-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.platform-card {
  min-height: 100%;
  border: 1px solid #c7bcad;
  background: #fffdf6;
  padding: 24px 24px 26px;
  box-shadow: 0 0 0 rgba(20, 10, 30, 0);
}

.platform-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border: 2px solid var(--violet);
  border-radius: 50%;
  color: var(--violet);
  font-weight: 800;
}

.platform-card h2 {
  margin: 0 0 12px;
  font-family: "Redaction10Fallback", "Times New Roman", serif;
  font-size: clamp(28px, 2vw, 38px);
  line-height: 1.05;
}

.platform-card p,
.roadmap-copy p,
.section-lead {
  color: #382e4f;
  font-size: 16px;
  line-height: 1.55;
}

.roadmap {
  padding: 76px 0;
  background: #fffdf6;
  border-top: 1px solid #d8cdbd;
  border-bottom: 1px solid #d8cdbd;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 64px;
  align-items: start;
}

.roadmap h2,
.pillars h2 {
  margin: 0;
  font-size: clamp(38px, 3.2vw, 54px);
  line-height: 1.12;
}

.roadmap-copy p {
  margin: 0 0 18px;
}

.pillars {
  padding: 78px 0;
}

.pillars h2 {
  max-width: 880px;
  margin: 0 auto 38px;
  text-align: center;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.pillar-card {
  border: 1px solid #c7bcad;
  background: #fffdf6;
  padding: 22px 20px;
}

.pillar-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

.pillar-card p {
  margin: 0;
  color: #392e52;
  font-size: 15px;
  line-height: 1.48;
}

.featured-formations {
  background: #fffdf6;
  border-top: 1px solid #d8cdbd;
  border-bottom: 1px solid #d8cdbd;
}

.section-lead {
  max-width: 840px;
  margin: 0 auto 42px;
  text-align: center;
}

.offer-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.offer-list li {
  position: relative;
  padding-left: 22px;
  color: #2f243f;
  font-size: 14px;
  line-height: 1.35;
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  background: var(--violet);
  transform: rotate(45deg);
}

.featured-formations .offer-content {
  display: flex;
  flex-direction: column;
}

.featured-formations .offer-content .btn {
  margin-top: auto;
}

.offer {
  position: relative;
  overflow: visible;
}

.offer-best {
  border-color: var(--violet);
}

.offer-new {
  border-color: #1c6c66;
}

.offer-badge {
  position: absolute;
  z-index: 2;
  top: -14px;
  left: 18px;
  border: 1px solid currentColor;
  background: #fffcf0;
  color: var(--violet);
  padding: 5px 10px 6px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.offer-new .offer-badge {
  color: #1c6c66;
}

.offer-badge::before,
.offer-badge::after {
  content: "+";
  position: absolute;
  color: var(--violet);
  font-weight: 400;
  line-height: 1;
}

.offer-badge::before {
  top: -12px;
  left: -12px;
}

.offer-badge::after {
  right: -12px;
  bottom: -12px;
}

.offer-new .offer-badge::before,
.offer-new .offer-badge::after {
  color: #1c6c66;
}

.bundles {
  padding: 72px 0;
}

.bundle-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  border: 1px solid #c7bcad;
  background: #fffdf6;
  padding: 36px;
}

.bundle-shell h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 2.8vw, 48px);
  line-height: 1.12;
}

.bundle-shell p {
  margin: 0;
  color: #392e52;
  font-size: 16px;
  line-height: 1.55;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.bundle-grid article {
  min-height: 160px;
  border: 1px solid #d5c9bb;
  background:
    radial-gradient(#d6d2c2 1px, transparent 1px),
    #fffcf0;
  background-size: 7px 7px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bundle-grid span {
  color: var(--violet);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bundle-grid strong {
  color: var(--brown);
  font-family: "Redaction10Fallback", "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.05;
}

.compare-card li span {
  color: var(--violet);
  font-weight: 800;
}

.compare {
  padding: 76px 0 74px;
}

.compare-titlebar {
  display: none;
}

.compare-heading {
  text-align: center;
}

.compare-heading h2 {
  margin: 0 auto;
  max-width: 900px;
  color: var(--brown);
  font-size: clamp(38px, 3vw, 52px);
  line-height: 1.12;
}

.compare-grid {
  padding-top: 36px;
}

.compare-card {
  border-radius: 0;
  box-shadow: none;
}

.compare-card h3 {
  overflow-wrap: anywhere;
}

.newsletter-final {
  padding: 64px 0;
}

.newsletter-final .newsletter-wide {
  margin-top: 0;
  background: #faf6ff;
}

.newsletter-final .newsletter-wide h2 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(30px, 2.5vw, 42px);
  line-height: 1.15;
}

.newsletter-final .btn-outline {
  background: var(--violet);
  color: #fff;
}

.about-content .btn {
  margin-top: 8px;
}

@keyframes dottedDrift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 70px 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .platform-hero {
    animation: none;
  }

  .btn,
  .btn:hover {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

@media (max-width: 1160px) {
  .platform-grid,
  .pillar-grid,
  .bundle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bundle-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .platform-hero {
    padding: 44px 0 58px;
  }

  .platform-hero .hero-shell h1 {
    font-size: 39px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
  }

  .platform-grid,
  .pillar-grid,
  .bundle-grid {
    grid-template-columns: 1fr;
  }

  .roadmap,
  .pillars,
  .bundles {
    padding: 54px 0;
  }

  .bundle-shell {
    padding: 26px 18px;
  }

  .platform-hero .hero-shell h1::before,
  .platform-hero .hero-shell h1::after {
    display: none;
  }
}

/* Sales page: L'essentiel pour se lancer */
.sales-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 84px;
  background:
    linear-gradient(120deg, rgba(255, 252, 240, 0.86), rgba(255, 252, 240, 0.66)),
    radial-gradient(#d6d2c2 1px, transparent 1px);
  background-size: auto, 7px 7px;
}

.sales-hero::before,
.sales-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.sales-hero::before {
  width: 38vw;
  height: 38vw;
  right: -12vw;
  top: -16vw;
  background:
    linear-gradient(90deg, transparent 49%, rgba(129, 50, 220, 0.18) 50% 52%, transparent 53%),
    linear-gradient(0deg, transparent 49%, rgba(129, 50, 220, 0.18) 50% 52%, transparent 53%);
  background-size: 24px 24px;
  transform: rotate(12deg);
  animation: pixelFloat 16s ease-in-out infinite;
}

.sales-hero::after {
  width: 220px;
  height: 220px;
  left: 4vw;
  bottom: -92px;
  background:
    repeating-linear-gradient(0deg, rgba(28, 108, 102, 0.18) 0 10px, transparent 10px 20px),
    repeating-linear-gradient(90deg, rgba(129, 50, 220, 0.16) 0 10px, transparent 10px 20px);
  mix-blend-mode: multiply;
}

.sales-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 420px;
  gap: 52px;
  align-items: center;
}

.sales-hero-copy h1 {
  margin: 0 0 22px;
  max-width: 980px;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(44px, 4.4vw, 72px);
  line-height: 1.04;
}

.pixel-highlight {
  position: relative;
  display: inline-block;
  border: 2px solid var(--violet);
  border-radius: 28px;
  padding: 0 16px 4px;
  background: rgba(255, 252, 240, 0.78);
  box-shadow:
    8px 8px 0 rgba(129, 50, 220, 0.12),
    inset 0 -5px 0 rgba(129, 50, 220, 0.08);
}

.pixel-highlight::before,
.pixel-highlight::after {
  content: "+";
  position: absolute;
  color: var(--violet);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.pixel-highlight::before {
  top: -19px;
  left: -17px;
}

.pixel-highlight::after {
  right: -18px;
  bottom: -18px;
}

.sales-hero-copy .hero-lead {
  margin: 0 0 28px;
  max-width: 840px;
  text-align: left;
}

.sales-actions {
  justify-content: flex-start;
  margin: 0 0 22px;
}

.sales-proof {
  justify-content: flex-start;
  margin: 0;
}

.sales-card {
  position: relative;
  border: 1px solid var(--violet);
  background:
    linear-gradient(180deg, rgba(255, 252, 240, 0.96), rgba(243, 232, 238, 0.74)),
    #fffdf6;
  padding: 28px 26px;
  box-shadow:
    18px 18px 0 rgba(129, 50, 220, 0.12),
    0 18px 48px rgba(24, 7, 44, 0.1);
}

.sales-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 18px;
}

.sales-card h2 {
  margin: 0 0 12px;
  font-family: "Redaction20Pixel", "Redaction10Fallback", "Times New Roman", serif;
  font-size: clamp(32px, 2.4vw, 44px);
  line-height: 1.03;
}

.sales-card p {
  margin: 0 0 18px;
  color: #382e4f;
  line-height: 1.5;
}

.sales-price {
  border-top: 1px solid #d5c9bb;
  border-bottom: 1px solid #d5c9bb;
  margin: 20px 0 18px;
  padding: 18px 0;
}

.sales-price strong {
  display: block;
  font-family: "Redaction20Pixel", "Redaction10Fallback", "Times New Roman", serif;
  color: var(--brown);
  font-size: clamp(48px, 4vw, 68px);
  line-height: 0.95;
}

.image-slot {
  position: relative;
  overflow: hidden;
  border: 1px solid #b59bbf;
  background:
    linear-gradient(135deg, rgba(129, 50, 220, 0.08), rgba(28, 108, 102, 0.1)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 8px, transparent 8px 16px),
    repeating-linear-gradient(90deg, rgba(60, 35, 17, 0.07) 0 8px, transparent 8px 16px),
    #f3e8ee;
}

.image-slot::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(129, 50, 220, 0.5);
}

.image-slot::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  right: 22px;
  top: 22px;
  background:
    linear-gradient(90deg, transparent 44%, var(--violet) 45% 55%, transparent 56%),
    linear-gradient(0deg, transparent 44%, var(--violet) 45% 55%, transparent 56%);
  opacity: 0.55;
}

.image-slot span,
.image-slot strong {
  position: relative;
  z-index: 1;
  display: block;
}

.image-slot span {
  color: var(--violet);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.image-slot strong {
  max-width: 360px;
  margin-top: 10px;
  color: var(--brown);
  font-family: "Redaction20Pixel", "Redaction10Fallback", "Times New Roman", serif;
  font-size: clamp(26px, 2.5vw, 40px);
  line-height: 1.04;
}

.hero-image-slot {
  max-width: 720px;
  min-height: 170px;
  margin-top: 26px;
  padding: 28px;
}

.course-cover {
  min-height: 180px;
  margin: 2px 0 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sales-price span {
  display: block;
  margin-top: 7px;
  color: #49365b;
  font-weight: 700;
}

.sales-context,
.program,
.sales-offer {
  padding: 82px 0;
  background: #fffdf6;
  border-top: 1px solid #d8cdbd;
  border-bottom: 1px solid #d8cdbd;
}

.sales-outcomes {
  padding: 76px 0 82px;
}

.sales-outcomes h2 {
  max-width: 1060px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: clamp(38px, 3.5vw, 60px);
  line-height: 1.08;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.outcome-card {
  border: 1px solid #c7bcad;
  background: #fffdf6;
  padding: 24px 20px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.outcome-card span {
  width: max-content;
  margin-bottom: auto;
  border: 1px solid var(--violet);
  color: var(--violet);
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 900;
}

.outcome-card h3 {
  margin: 34px 0 10px;
  font-family: "Redaction20Pixel", "Redaction10Fallback", "Times New Roman", serif;
  font-size: clamp(28px, 2vw, 38px);
  line-height: 1.02;
}

.outcome-card p {
  margin: 0;
  color: #392e52;
  line-height: 1.45;
}

.sales-context-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.context-card {
  border: 1px solid #c7bcad;
  background:
    linear-gradient(180deg, #fffcf0, #fff7e1);
  padding: 30px 28px;
}

.context-card span {
  color: var(--violet);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.context-card h2 {
  margin: 18px 0 14px;
  font-size: clamp(30px, 2.4vw, 44px);
  line-height: 1.08;
}

.context-card p,
.sales-promise p,
.included-grid p,
.offer-panel p {
  color: #392e52;
  font-size: 16px;
  line-height: 1.55;
}

.sales-promise,
.sales-fit,
.included {
  padding: 78px 0;
}

.promise-grid,
.included-grid,
.proof-grid,
.offer-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
}

.promise-grid h2,
.included-grid h2,
.proof-grid h2,
.offer-panel h2 {
  margin: 0;
  font-size: clamp(38px, 3.4vw, 58px);
  line-height: 1.08;
}

.promise-image,
.offer-media {
  min-height: 220px;
  margin-top: 28px;
  padding: 28px;
}

.sales-promise p {
  margin: 0 0 18px;
}

.program h2 {
  max-width: 940px;
  margin: 0 auto 16px;
  text-align: center;
  font-size: clamp(38px, 3.4vw, 58px);
  line-height: 1.08;
}

.timeline-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 0;
  overflow-x: auto;
  padding: 0 0 18px;
  scroll-snap-type: x proximity;
}

.timeline-step {
  border: 1px solid #c7bcad;
  border-left: 0;
  background:
    linear-gradient(180deg, #fffcf0, #fffdf6);
  padding: 24px 20px;
  scroll-snap-align: start;
}

.timeline-step:first-child {
  border-left: 1px solid #c7bcad;
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border: 2px solid var(--violet);
  border-radius: 50%;
  color: var(--violet);
  font-size: 13px;
  font-weight: 900;
}

.timeline-step h3 {
  margin: 0 0 10px;
  font-family: "Redaction20Pixel", "Redaction10Fallback", "Times New Roman", serif;
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1.04;
}

.timeline-step p {
  margin: 0;
  color: #392e52;
  font-size: 14px;
  line-height: 1.45;
}

.included-list {
  display: grid;
  gap: 14px;
}

.included-list article {
  border: 1px solid #d5c9bb;
  background:
    radial-gradient(#d6d2c2 1px, transparent 1px),
    #fffdf6;
  background-size: 7px 7px;
  padding: 18px 20px;
}

.included-list strong,
.included-list span {
  display: block;
}

.included-list strong {
  margin-bottom: 5px;
  color: var(--brown);
  font-size: 19px;
}

.included-list span {
  color: #392e52;
  line-height: 1.45;
}

.proof {
  color: #fff;
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}

.proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.proof > .container {
  position: relative;
  z-index: 1;
}

.proof .body {
  margin: 20px 0 28px;
  color: #ece7f2;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-stats article {
  border: 1px solid #a387be;
  background: #faf6ff;
  color: var(--brown);
  padding: 16px 14px;
}

.proof-stats strong,
.proof-stats span {
  display: block;
}

.proof-stats strong {
  font-size: clamp(34px, 3vw, 50px);
  line-height: 1;
}

.proof-stats span {
  margin-top: 6px;
  color: #392e52;
  font-size: 13px;
  font-weight: 700;
}

.reviews-stack {
  display: grid;
  gap: 16px;
}

.reviews-stack .review {
  position: relative;
  border-color: #a387be;
}

.reviews-stack .review::before {
  content: "★★★★★";
  display: block;
  margin-bottom: 8px;
  color: var(--violet);
  letter-spacing: 0.08em;
}

.reviews-stack .review span {
  display: block;
  margin-top: 12px;
  color: #6a547c;
  font-weight: 800;
}

.offer-panel {
  border: 1px solid var(--violet);
  background:
    linear-gradient(120deg, rgba(255, 252, 240, 0.98), rgba(243, 232, 238, 0.82)),
    #fffcf0;
  padding: 38px;
  align-items: center;
}

.checkout-box {
  border: 1px solid #d5c9bb;
  background: #fffdf6;
  padding: 24px;
  box-shadow: 14px 14px 0 rgba(129, 50, 220, 0.1);
}

.business-case {
  padding: 78px 0;
  background: #fffdf6;
  border-top: 1px solid #d8cdbd;
  border-bottom: 1px solid #d8cdbd;
}

.business-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.business-grid h2 {
  margin: 0;
  font-size: clamp(38px, 3.4vw, 58px);
  line-height: 1.08;
}

.business-cards {
  display: grid;
  gap: 14px;
}

.business-cards article {
  border: 1px solid #d5c9bb;
  background: #fffcf0;
  padding: 20px;
}

.business-cards strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.business-cards p {
  margin: 0;
  color: #392e52;
  line-height: 1.5;
}

@keyframes pixelFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(12deg);
  }

  50% {
    transform: translate3d(-18px, 14px, 0) rotate(12deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sales-hero::before {
    animation: none;
  }
}

@media (max-width: 1160px) {
  .sales-hero-grid,
  .business-grid,
  .promise-grid,
  .included-grid,
  .proof-grid,
  .offer-panel {
    grid-template-columns: 1fr;
  }

  .sales-card {
    max-width: 680px;
  }

  .timeline-grid {
    grid-template-columns: repeat(5, minmax(240px, 1fr));
  }

  .outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .sales-hero,
  .sales-outcomes,
  .sales-context,
  .sales-promise,
  .sales-fit,
  .program,
  .included,
  .proof,
  .sales-offer {
    padding: 54px 0;
  }

  .sales-hero-copy h1 {
    font-size: 39px;
  }

  .sales-actions,
  .sales-proof {
    align-items: stretch;
    flex-direction: column;
  }

  .sales-actions .btn {
    text-align: center;
  }

  .sales-card,
  .offer-panel {
    padding: 26px 18px;
    box-shadow: none;
  }

  .sales-context-grid,
  .outcome-grid,
  .proof-stats {
    grid-template-columns: 1fr;
  }

  .timeline-grid {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .timeline-step,
  .timeline-step:first-child {
    border-left: 1px solid #c7bcad;
  }

  .pixel-highlight {
    border-radius: 18px;
    padding-inline: 10px;
    box-shadow: inset 0 -4px 0 rgba(129, 50, 220, 0.08);
  }

  .hero-image-slot,
  .promise-image,
  .offer-media,
  .course-cover {
    min-height: 150px;
  }
}

/* Revert sales landing to the previous calmer version */
.sales-hero {
  position: static;
  overflow: visible;
  padding: 68px 0 76px;
  background-position: 0 0;
}

.sales-hero::before,
.sales-hero::after {
  display: none;
}

.sales-hero-grid {
  position: static;
  z-index: auto;
}

.sales-hero-copy h1 {
  font-family: "IBM Plex Sans", sans-serif;
}

.sales-card {
  background: #fffdf6;
  box-shadow: 18px 18px 0 rgba(129, 50, 220, 0.08);
}

.sales-card h2,
.timeline-step h3 {
  font-family: "Redaction10Fallback", "Times New Roman", serif;
}

.sales-price strong {
  font-family: "IBM Plex Sans", sans-serif;
}

.context-card {
  background: #fffcf0;
}

.timeline-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  padding: 0;
  scroll-snap-type: none;
}

.timeline-step,
.timeline-step:first-child {
  border: 1px solid #c7bcad;
  background: #fffcf0;
  padding: 22px 18px;
  scroll-snap-align: none;
}

.included-list article {
  background: #fffdf6;
}

.proof {
  position: static;
  overflow: visible;
}

.proof::before {
  display: none;
}

.proof > .container {
  position: static;
  z-index: auto;
}

.offer-panel {
  background: #fffcf0;
}

.checkout-box {
  box-shadow: none;
}

@media (max-width: 1160px) {
  .timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .timeline-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   V3 — Concept "pixel → clair" : animations, hero, sections
   ============================================================ */

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 99;
  background: var(--violet);
  color: #fff;
  padding: 8px 14px;
  border-radius: 4px;
}

/* Reveal "pixel → clair" générique */
.reveal-pixel {
  filter: blur(7px) contrast(0.85);
  opacity: 0;
  transform: translateY(14px);
  transition:
    filter 900ms cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 700ms ease-out,
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: filter, opacity, transform;
}
.reveal-pixel.is-resolved {
  filter: blur(0) contrast(1);
  opacity: 1;
  transform: none;
}

/* Hero headline — un mot reste pixelisé, l'autre se résout */
.hero-headline {
  position: relative;
}

.word-blur {
  font-family: "Redaction10Fallback", "Times New Roman", serif;
  display: inline-block;
  color: var(--violet);
  font-weight: 700;
  letter-spacing: 0.01em;
  filter: blur(1.4px);
  transform: translateY(2px);
}

.word-resolve {
  position: relative;
  display: inline-block;
  color: var(--violet);
  font-weight: 700;
  background-image: linear-gradient(transparent 72%, rgba(129, 50, 220, 0.16) 72% 92%, transparent 92%);
  animation: wordResolve 1700ms cubic-bezier(0.2, 0.75, 0.2, 1) 350ms both;
}

@keyframes wordResolve {
  0% {
    filter: blur(9px) contrast(0.7);
    letter-spacing: 0.18em;
    opacity: 0;
  }
  55% {
    filter: blur(2px) contrast(0.9);
    letter-spacing: 0.04em;
    opacity: 1;
  }
  100% {
    filter: blur(0) contrast(1);
    letter-spacing: 0;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .word-resolve {
    animation: none;
  }
  .word-blur {
    filter: none;
    transform: none;
  }
  .reveal-pixel {
    filter: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Hero — les CTA assument le prix */
.platform-hero .hero-actions {
  margin-top: 22px;
}

.platform-hero .hero-proof li strong {
  display: inline-block;
  margin-right: 6px;
  color: var(--violet);
  font-weight: 800;
}

/* Visuel pixel → grille (canvas décoratif) */
.pixel-canvas {
  position: relative;
  margin: 56px auto 0;
  max-width: 720px;
  height: 130px;
  border: 1px solid #d5c9bb;
  background: #fffdf6;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}

.pixel-canvas-noise,
.pixel-canvas-grid {
  height: 100%;
}

.pixel-canvas-noise {
  background-image:
    radial-gradient(rgba(60, 35, 17, 0.55) 1px, transparent 1.5px),
    radial-gradient(rgba(129, 50, 220, 0.35) 1px, transparent 1.5px),
    radial-gradient(rgba(28, 108, 102, 0.3) 1px, transparent 1.5px);
  background-size: 6px 6px, 9px 11px, 13px 7px;
  background-position: 0 0, 3px 4px, 7px 2px;
  filter: blur(0.6px);
  animation: noiseDrift 9s linear infinite;
}

.pixel-canvas-grid {
  background-image:
    linear-gradient(90deg, rgba(129, 50, 220, 0.55) 1px, transparent 1px),
    linear-gradient(0deg, rgba(129, 50, 220, 0.55) 1px, transparent 1px);
  background-size: 14px 14px;
}

.pixel-canvas-arrow {
  align-self: center;
  padding: 0 18px;
  color: var(--violet);
  font-size: 28px;
  font-weight: 700;
}

@keyframes noiseDrift {
  from { background-position: 0 0, 3px 4px, 7px 2px; }
  to   { background-position: 24px 18px, 27px 22px, 31px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .pixel-canvas-noise { animation: none; }
}

/* PROOF BAR */
.proof-bar {
  background: #fffdf6;
  border-top: 1px solid #d8cdbd;
  border-bottom: 1px solid #d8cdbd;
  padding: 36px 0;
}

.proof-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 0.7fr)) minmax(0, 1.4fr);
  gap: 28px;
  align-items: center;
}

.proof-stat strong {
  display: block;
  color: var(--violet);
  font-size: clamp(38px, 3.5vw, 56px);
  line-height: 1;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.proof-stat span {
  display: block;
  margin-top: 6px;
  color: #392e52;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.proof-quote {
  margin: 0;
  padding: 14px 18px;
  border-left: 3px solid var(--violet);
  background: #faf6ff;
}

.proof-quote p {
  margin: 0 0 8px;
  color: #2e1c2c;
  font-size: 15px;
  line-height: 1.5;
}

.proof-quote cite {
  color: #6a547c;
  font-size: 13px;
  font-weight: 800;
  font-style: normal;
}

/* FORMATIONS — affichage du prix dans la carte */
.offer-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 4px 0 14px;
  padding: 10px 0;
  border-top: 1px solid #d5c9bb;
  border-bottom: 1px solid #d5c9bb;
}

.offer-price strong {
  color: var(--brown);
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 800;
  line-height: 1;
}

.offer-price span {
  color: #6a547c;
  font-size: 13px;
  font-weight: 700;
}

/* BUNDLES v3 — refonte */
.bundles .bundles-title {
  margin: 0 auto 36px;
  max-width: 880px;
  text-align: center;
  font-size: clamp(36px, 3vw, 50px);
  line-height: 1.12;
}

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.bundle-card {
  border: 1px solid var(--violet);
  background: #fffdf6;
  padding: 30px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 12px 12px 0 rgba(129, 50, 220, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.bundle-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 16px 16px 0 rgba(129, 50, 220, 0.14);
}

.bundle-card.bundle-coaching {
  border-color: #1c6c66;
  box-shadow: 12px 12px 0 rgba(28, 108, 102, 0.1);
}

.bundle-card.bundle-coaching:hover {
  box-shadow: 16px 16px 0 rgba(28, 108, 102, 0.16);
}

.bundle-tag {
  align-self: flex-start;
  padding: 4px 10px;
  border: 1px solid var(--violet);
  background: #faf6ff;
  color: var(--violet);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bundle-tag-alt {
  border-color: #1c6c66;
  background: #e7f3ee;
  color: #1c6c66;
}

.bundle-card h3 {
  margin: 0;
  font-family: "Redaction10Fallback", "Times New Roman", serif;
  color: var(--brown);
  font-size: clamp(28px, 2.2vw, 38px);
  line-height: 1.05;
  font-weight: 700;
}

.bundle-card p {
  margin: 0;
  color: #392e52;
  font-size: 15px;
  line-height: 1.5;
}

.bundle-card .offer-list {
  margin: 0;
}

.bundle-price {
  margin: 8px 0 4px;
  padding: 14px 0;
  border-top: 1px solid #d5c9bb;
  border-bottom: 1px solid #d5c9bb;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bundle-price strong {
  color: var(--brown);
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1;
  font-weight: 800;
}

.bundle-price span {
  color: #6a547c;
  font-size: 13px;
  font-weight: 700;
}

.bundle-card .btn {
  margin-top: 6px;
}

/* À PROPOS compact */
.about-compact {
  padding: 64px 0;
}

.about-compact-grid {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.portrait-small {
  height: 200px;
  border: 1px solid #c8c0b2;
  background:
    radial-gradient(circle at 45% 38%, #f9f9f9 0 14%, transparent 15%),
    linear-gradient(165deg, #d7d8dd, #f4f4f4 45%, #c4c6cd);
}

.about-compact h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 2.2vw, 38px);
  line-height: 1.15;
}

.about-compact p {
  margin: 0 0 14px;
  color: #342a4b;
  font-size: 16px;
  line-height: 1.55;
}

.about-link {
  color: var(--violet);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  padding-bottom: 1px;
}

.about-link:hover {
  color: var(--violet-dark);
}

/* LEAD MAGNET */
.lead-magnet {
  padding: 72px 0 76px;
}

.lead-magnet-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
  padding: 38px 40px;
  background:
    linear-gradient(120deg, rgba(255, 252, 240, 0.06), rgba(255, 252, 240, 0.02)),
    var(--violet-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lead-magnet-copy {
  color: #ece7f2;
}

.lead-magnet-copy h2 {
  margin: 6px 0 14px;
  color: #fff;
  font-family: "Redaction10Fallback", "Times New Roman", serif;
  font-size: clamp(34px, 2.8vw, 48px);
  line-height: 1.05;
}

.lead-magnet-copy p {
  margin: 0 0 18px;
  color: #d8cfe8;
  font-size: 16px;
  line-height: 1.55;
}

.lead-magnet-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.lead-magnet-points li {
  position: relative;
  padding-left: 22px;
  color: #ece7f2;
  font-size: 15px;
  line-height: 1.4;
}

.lead-magnet-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  background: var(--mint);
  transform: rotate(45deg);
}

.lead-magnet-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fffdf6;
  border: 1px solid #d5c9bb;
  padding: 22px;
}

.lead-magnet-form input {
  border: 1px solid #8f7d76;
  background: #fff;
  color: #2b1a10;
  font-size: 15px;
  padding: 12px 14px;
}

.lead-magnet-fineprint {
  margin: 0;
  color: #6a547c;
  font-size: 12px;
}

/* Hover réservé aux blocs porteurs d'un CTA principal (pack-cards) */
@media (prefers-reduced-motion: reduce) {
  .bundle-card:hover {
    transform: none;
    box-shadow: 12px 12px 0 rgba(129, 50, 220, 0.08);
  }
}

/* Redaction sur les chiffres de preuve et titres de prix */
.proof-stat strong,
.bundle-price strong,
.offer-price strong {
  font-family: "Redaction35", "Redaction10Fallback", "Times New Roman", serif;
  letter-spacing: 0.01em;
}

.proof-stat strong {
  font-size: clamp(46px, 4.2vw, 68px);
}

/* Headlines accentuées en Redaction-70 (presque net, character) */
.bundles-title,
.lead-magnet-copy h2,
.manifesto h2 {
  font-family: "Redaction70", "IBM Plex Sans", sans-serif;
  letter-spacing: 0;
}

/* Section MANIFESTO sobre, fond clair, sans cartes */
.manifesto {
  padding: 84px 0;
  background:
    radial-gradient(#e7e0d2 1px, transparent 1px) 0 0 / 8px 8px,
    #fffdf6;
  border-top: 1px solid #d8cdbd;
  border-bottom: 1px solid #d8cdbd;
  text-align: center;
}

.manifesto-shell {
  max-width: 920px;
}

.manifesto h2 {
  margin: 0 auto 18px;
  max-width: 880px;
  color: var(--brown);
  font-size: clamp(36px, 3vw, 52px);
  line-height: 1.1;
  font-weight: 700;
}

.manifesto .subtitle {
  margin: 6px 0 26px;
  font-size: clamp(20px, 1.6vw, 26px);
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
}

.manifesto-body {
  margin: 0 auto;
  max-width: 820px;
  color: #392e52;
  font-size: 17px;
  line-height: 1.6;
}

/* Compare cards — affichage plus robuste */
.compare-card {
  padding: 28px 30px;
}

.compare-card ul {
  gap: 14px;
}

.compare-card li {
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  font-size: 16px;
  line-height: 1.5;
  overflow-wrap: normal;
  word-wrap: break-word;
}

.compare-card li > span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  color: var(--violet);
  font-size: 14px;
  font-weight: 800;
  transform: translateY(0);
  line-height: 1;
}

.compare-card .not-for-you li > span {
  color: #6a547c;
}

@media (max-width: 540px) {
  .compare-card {
    padding: 22px 18px;
  }
  .compare-card h3 {
    font-size: 24px;
  }
  .compare-card li {
    font-size: 15px;
  }
}

/* =====================================================
   Itération 4 — corrections
   ===================================================== */

/* Redaction limitée aux chiffres et prix uniquement.
   Les titres reviennent à IBM Plex pour la lisibilité. */
.bundles-title,
.lead-magnet-copy h2,
.manifesto h2,
.formation-card h2,
.platform-card h2,
.offer h3,
.bundle-card h3,
.outcome-card h3,
.timeline-step h3,
.sales-card h2,
.image-slot strong,
.bundle-grid strong,
.mission-card p,
.mini-stats p,
.stats p,
.faq h2 {
  font-family: "IBM Plex Sans", sans-serif;
  letter-spacing: 0;
}

/* Compare card — fix layout : la puce est en absolute, le texte coule normalement */
.compare-card li {
  display: block;
  position: relative;
  padding-left: 38px;
  font-size: 16px;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.compare-card li > span {
  position: absolute;
  left: 0;
  top: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  color: var(--violet);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.compare-card .not-for-you li > span {
  color: #6a547c;
}

/* Fond pointillé animé partout, à la même cadence que le hero */
.dotted {
  animation: dottedDrift 22s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .dotted {
    animation: none;
  }
}

/* Mention de garantie — discrète, en vert sourd */
.hero-trust,
.offer-trust {
  color: #1c6c66;
  font-weight: 700;
}

.hero-trust {
  margin: 6px auto 22px;
  text-align: center;
  font-size: 14px;
}

.hero-trust::before,
.offer-trust::before {
  content: "✓ ";
  font-weight: 900;
  margin-right: 2px;
}

.offer-trust {
  margin: -4px 0 14px;
  font-size: 13px;
  line-height: 1.35;
}

.bundle-card .offer-trust {
  margin: 0 0 10px;
}

.offer-trust sup {
  font-size: 0.7em;
}

.hero-trust sup {
  font-size: 0.65em;
}

/* Page de vente — variantes spécifiques */
.hero-trust-left {
  text-align: left;
  margin: 4px 0 18px;
}

.sales-card .offer-trust {
  margin: -4px 0 16px;
}

/* Trust strip après le hero */
.trust-strip {
  background: #fffdf6;
  border-top: 1px solid #d8cdbd;
  border-bottom: 1px solid #d8cdbd;
  padding: 28px 0;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
}

.trust-strip article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.trust-strip strong {
  font-family: "Redaction35", "Redaction10Fallback", "Times New Roman", serif;
  color: var(--violet);
  font-size: clamp(34px, 2.8vw, 46px);
  line-height: 1;
  letter-spacing: 0.01em;
}

.trust-strip span {
  color: #392e52;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

/* CTA final */
.final-cta {
  padding: 64px 0;
  background:
    radial-gradient(#e7e0d2 1px, transparent 1px) 0 0 / 8px 8px,
    #fffdf6;
  border-top: 1px solid #d8cdbd;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 40px;
  align-items: center;
}

.final-cta h2 {
  margin: 6px 0 10px;
  color: var(--brown);
  font-family: "IBM Plex Sans", sans-serif;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.15;
  font-weight: 700;
}

.final-cta p {
  margin: 0;
  color: #392e52;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
  }
  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: left;
  }
  .final-cta .btn {
    text-align: center;
  }
}

/* MARKET CONTEXT — stat Ifop + narratifs */
.market-context {
  padding: 76px 0 82px;
  background: #fffdf6;
  border-top: 1px solid #d8cdbd;
}

.market-intro {
  text-align: center;
  margin-bottom: 38px;
}

.market-intro h2 {
  margin: 0 auto 14px;
  max-width: 880px;
  font-size: clamp(36px, 3vw, 52px);
  line-height: 1.12;
}

.market-intro .section-lead {
  margin: 0 auto 32px;
}

.market-stat {
  margin: 0 auto;
  max-width: 760px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 24px 30px;
  background: #fffcf0;
  border: 1px solid var(--violet);
  text-align: left;
}

.market-stat-value {
  font-family: "Redaction35", "Redaction10Fallback", "Times New Roman", serif;
  color: var(--violet);
  font-size: clamp(64px, 6vw, 96px);
  line-height: 1;
  letter-spacing: 0.01em;
}

.market-stat-label {
  margin: 0 0 6px;
  color: var(--brown);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.3;
  font-weight: 700;
}

.market-stat-label em {
  font-style: normal;
  background-image: linear-gradient(transparent 70%, rgba(129, 50, 220, 0.18) 70% 92%, transparent 92%);
  padding: 0 2px;
}

.market-stat-source {
  margin: 0;
  color: #6a547c;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 640px) {
  .market-stat {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 22px 18px;
  }
}

/* BONUSES */
.bonuses {
  padding: 76px 0;
  background:
    radial-gradient(#e7e0d2 1px, transparent 1px) 0 0 / 8px 8px,
    #fffdf6;
  border-top: 1px solid #d8cdbd;
  border-bottom: 1px solid #d8cdbd;
  text-align: center;
}

.bonuses h2 {
  margin: 0 auto 32px;
  max-width: 820px;
  font-size: clamp(34px, 2.8vw, 48px);
  line-height: 1.12;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  text-align: left;
  margin-bottom: 26px;
}

.bonus-card {
  border: 1px solid #c7bcad;
  background: #fffdf6;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bonus-tag {
  align-self: flex-start;
  padding: 4px 10px;
  border: 1px solid var(--violet);
  background: #faf6ff;
  color: var(--violet);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bonus-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 700;
}

.bonus-card p {
  margin: 0;
  color: #392e52;
  font-size: 14px;
  line-height: 1.5;
}

.bonus-trust {
  display: inline-block;
  margin: 0 auto;
  padding: 10px 18px;
  border: 1.5px dashed #1c6c66;
  color: #1c6c66;
  font-size: 14px;
  font-weight: 700;
}

.bonus-trust sup {
  font-size: 0.7em;
}

@media (max-width: 1000px) {
  .bonuses-grid {
    grid-template-columns: 1fr;
  }
}

/* VIDEO EXTRACT */
.video-extract {
  padding: 76px 0;
  text-align: center;
}

.video-extract h2 {
  margin: 0 auto 12px;
  max-width: 760px;
}

.video-extract .section-lead {
  margin: 0 auto 28px;
}

.video-frame {
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--violet);
  background: #fffcf0;
  padding: 14px;
}

.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(129, 50, 220, 0.12), rgba(28, 108, 102, 0.1)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 8px, transparent 8px 16px),
    repeating-linear-gradient(90deg, rgba(60, 35, 17, 0.08) 0 8px, transparent 8px 16px),
    var(--violet-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
}

.video-play {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  padding-left: 5px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease, background 220ms ease;
}

.video-frame:hover .video-play {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.18);
}

.video-caption {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

@media (prefers-reduced-motion: reduce) {
  .video-frame:hover .video-play {
    transform: none;
  }
}

/* ============================================================
   Pictos & visuels (sales page)
   ============================================================ */

/* Personas hero */
.personas {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 22px;
  flex-wrap: wrap;
}

.persona {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid currentColor;
  background: #fffdf6;
}

.persona svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.persona-violet { color: var(--violet); }
.persona-violet-dark { color: var(--violet-dark); }
.persona-mint { color: #1c6c66; background: var(--mint); }
.persona-lavender { color: #6a3d7a; background: var(--lavender); }
.persona-brown { color: var(--brown); background: #f3ead6; }

.personas-label {
  margin-left: 6px;
  color: #392e52;
  font-size: 13px;
  font-weight: 600;
}

/* Market-stat — visualisation pictographique */
.market-stat {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  text-align: left;
}

.market-stat-figures {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 6px;
  margin-bottom: 4px;
}

.market-stat-figures .fig {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1.2;
  border: 1px solid currentColor;
}

.market-stat-figures .fig svg {
  width: 60%;
  height: 60%;
  fill: currentColor;
}

.fig-off { color: var(--violet); background: #faf6ff; }
.fig-on { color: #1c6c66; background: var(--mint); }

.market-stat-content {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 22px;
}

.market-stat-legend {
  display: flex;
  gap: 22px;
  margin: 0;
  color: #392e52;
  font-size: 13px;
  font-weight: 700;
}

.market-stat-legend .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  vertical-align: -1px;
  border: 1px solid currentColor;
}

.dot-violet { color: var(--violet); background: #faf6ff; }
.dot-mint { color: #1c6c66; background: var(--mint); }

@media (max-width: 640px) {
  .market-stat-figures {
    grid-template-columns: repeat(5, 1fr);
  }
  .market-stat-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .market-stat-legend {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Meme card "catalogues de prompts" */
.meme-card {
  margin-top: 24px;
  border: 1px solid var(--line);
  background: #fffdf6;
  box-shadow: 8px 8px 0 rgba(129, 50, 220, 0.1);
  max-width: 420px;
  font-family: "IBM Plex Sans", monospace;
  transform: rotate(-1.2deg);
}

.meme-card-head {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--violet-dark);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.meme-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.meme-dot-r { background: #e96c6c; }
.meme-dot-y { background: #e9c76c; }
.meme-dot-g { background: #88d49e; }

.meme-card-title {
  margin-left: 6px;
}

.meme-card-body {
  padding: 16px 18px;
  display: grid;
  gap: 10px;
}

.meme-line {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.3;
}

.meme-strike {
  position: relative;
  color: #8d7c98;
}

.meme-strike::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 3px;
  background: var(--violet);
  transform: rotate(-2deg);
}

.meme-ok {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1c6c66;
  background: var(--mint);
  padding: 8px 10px;
  border: 1.5px solid #1c6c66;
}

.meme-check {
  width: 18px;
  height: 18px;
  fill: #1c6c66;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .meme-card { transform: none; }
}

/* Timeline steps — pictos */
.timeline-step {
  position: relative;
}

.timeline-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border: 2px solid var(--violet);
  border-radius: 50%;
  color: var(--violet);
  font-size: 13px;
  font-weight: 900;
  font-family: "IBM Plex Sans", sans-serif;
}

.timeline-step .step-icon {
  position: absolute;
  top: 22px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--mint);
  color: #1c6c66;
  border: 1.5px solid #1c6c66;
}

.timeline-step .step-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.timeline-step:nth-child(2n) .step-icon {
  background: var(--lavender);
  color: #6a3d7a;
  border-color: #6a3d7a;
}

/* Bonus icons */
.bonus-card {
  position: relative;
  padding-top: 30px;
}

.bonus-card .bonus-icon {
  position: absolute;
  top: -22px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--violet);
  color: #fff;
  border: 2px solid var(--violet-dark);
  box-shadow: 4px 4px 0 rgba(24, 7, 44, 0.18);
}

.bonus-card .bonus-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.bonus-card:nth-child(2) .bonus-icon { background: #1c6c66; border-color: var(--violet-dark); }
.bonus-card:nth-child(3) .bonus-icon { background: var(--brown); border-color: var(--violet-dark); }

/* Review avatars */
.reviews-stack .review {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-text {
  margin: 0;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #6a547c;
  font-size: 13px;
  font-weight: 800;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid currentColor;
  font-family: "Redaction35", "IBM Plex Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.avatar-violet { color: var(--violet); background: #faf6ff; }
.avatar-mint { color: #1c6c66; background: var(--mint); }
.avatar-lavender { color: #6a3d7a; background: var(--lavender); }

/* Sceau garantie (final-cta) */
.final-cta-action {
  display: flex;
  align-items: center;
  gap: 18px;
}

.seal {
  flex-shrink: 0;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background:
    repeating-conic-gradient(var(--violet) 0deg 18deg, var(--violet-dark) 18deg 36deg);
  padding: 6px;
  position: relative;
  animation: sealSpin 24s linear infinite;
}

.seal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--mint);
  color: #1c6c66;
  text-align: center;
  line-height: 1;
}

.seal-inner svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  margin-bottom: 4px;
}

.seal-inner strong {
  font-family: "Redaction35", "IBM Plex Sans", sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.seal-inner span {
  font-size: 10px;
  font-weight: 700;
  margin-top: 2px;
}

.seal-inner sup {
  font-size: 0.7em;
}

@keyframes sealSpin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .seal { animation: none; }
}

@media (max-width: 860px) {
  .final-cta-action {
    flex-direction: column;
    align-items: stretch;
  }
  .seal {
    align-self: flex-start;
  }
}

/* ============================================================
   Itération 6 — affinage visuels & couleurs
   ============================================================ */

/* Market stat — figurines gris / mint + brackets sous la frise */
.market-stat-viz {
  margin-bottom: 18px;
}

.fig-off {
  color: #8a8378;
  background: #f4f0e6;
  border-color: #c2bbae;
}

.fig-on {
  color: #1c6c66;
  background: var(--mint);
  border-color: #1c6c66;
}

.market-stat-brackets {
  display: grid;
  grid-template-columns: 8fr 2fr;
  gap: 10px;
  margin-top: 10px;
}

.bracket {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.bracket-curve {
  display: block;
  width: 100%;
  height: 14px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 14px 14px;
  margin-bottom: 6px;
}

.bracket-text {
  display: block;
  line-height: 1.3;
}

.bracket-off { color: #6a6770; }
.bracket-on { color: #1c6c66; }

@media (max-width: 640px) {
  .market-stat-brackets {
    grid-template-columns: 4fr 1fr;
  }
  .bracket-text {
    font-size: 11px;
  }
}

/* Promise VS — opposition claire ailleurs / ici */
.promise-header {
  text-align: center;
  margin-bottom: 38px;
}

.promise-header h2 {
  margin: 0 auto 14px;
  max-width: 880px;
  font-size: clamp(34px, 2.8vw, 50px);
  line-height: 1.1;
}

.promise-header .section-lead {
  margin: 0 auto;
  max-width: 760px;
}

.promise-vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
}

.promise-side {
  padding: 26px 26px 28px;
  border: 1px solid var(--line);
  background: #fffdf6;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promise-side-bad {
  background: #faf6f0;
  border-color: #c2bbae;
  color: #6a6770;
}

.promise-side-good {
  background: linear-gradient(180deg, #fffdf6, #f1fbf5);
  border-color: #1c6c66;
}

.promise-side-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.promise-side-head h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: var(--brown);
}

.promise-side-bad .promise-side-head h3 {
  color: #5a4f4a;
}

.promise-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid currentColor;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}

.promise-mark-bad {
  color: #b94a5b;
  background: #fbe9ec;
  font-size: 24px;
  line-height: 1;
}

.promise-mark-good {
  color: #1c6c66;
  background: var(--mint);
}

.promise-mark-good svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.promise-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.promise-list li {
  font-size: 15px;
  line-height: 1.45;
  color: var(--brown);
  padding-left: 4px;
}

.promise-side-bad .promise-list li {
  color: #6a6770;
}

.promise-list .strike {
  position: relative;
  display: inline;
}

.promise-list .strike::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 50%;
  height: 2px;
  background: #b94a5b;
  transform: rotate(-1.5deg);
}

.promise-arrow {
  align-self: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--violet);
}

@media (max-width: 900px) {
  .promise-vs {
    grid-template-columns: 1fr;
  }
  .promise-arrow {
    transform: rotate(90deg);
    margin: -4px auto;
  }
}

/* Compare cards — couleurs rouge / vert assumées */
.compare-yes {
  background: linear-gradient(180deg, #fffdf6, #f1fbf5);
  border-color: #1c6c66;
}

.compare-no {
  background: linear-gradient(180deg, #fffdf6, #fbf2f2);
  border-color: #b94a5b;
}

.compare-yes h3 {
  color: #1c6c66;
}

.compare-no h3 {
  color: #b94a5b;
}

.compare-card.compare-yes li > span {
  color: #1c6c66;
  border-color: #1c6c66;
  background: var(--mint);
}

.compare-card.compare-no li > span {
  color: #b94a5b;
  border-color: #b94a5b;
  background: #fbe9ec;
}

/* Programme — callout d'emphase + flow d'étapes */
.program {
  padding: 88px 0;
}

.program-callout {
  position: relative;
  max-width: 980px;
  margin: 0 auto 48px;
  padding: 32px 36px 30px;
  background: #fffdf6;
  border: 2px solid var(--violet);
  text-align: center;
  box-shadow: 12px 12px 0 rgba(129, 50, 220, 0.1);
}

.callout-tag {
  display: inline-block;
  padding: 5px 14px;
  margin-bottom: 18px;
  background: var(--violet);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.program-callout h2 {
  margin: 0 auto 14px;
  max-width: 820px;
  font-size: clamp(32px, 2.8vw, 48px);
  line-height: 1.12;
}

.program-lead {
  margin: 0 auto 22px;
  max-width: 760px;
  color: #392e52;
  font-size: 17px;
  line-height: 1.55;
}

.program-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  margin: 0;
  padding: 18px 0 0;
  list-style: none;
  border-top: 1px dashed #c7bcad;
}

.program-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brown);
  font-size: 14px;
  line-height: 1.35;
}

.program-highlights li > span {
  color: var(--violet);
  font-size: 18px;
  font-weight: 800;
}

/* Flow d'étapes — vraie séquence linéaire avec connecteurs */
.timeline-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  counter-reset: flow;
  position: relative;
}

.flow-step {
  position: relative;
  padding: 20px 24px 22px 90px;
  background: #fffdf6;
  border: 1px solid #c7bcad;
}

.flow-step .flow-num {
  position: absolute;
  left: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--violet);
  background: #faf6ff;
  color: var(--violet);
  font-family: "Redaction35", "IBM Plex Sans", sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.flow-step h3 {
  margin: 0 0 6px;
  color: var(--brown);
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.2;
  font-weight: 700;
}

.flow-step p {
  margin: 0;
  color: #392e52;
  font-size: 15px;
  line-height: 1.5;
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 44px;
  bottom: -16px;
  width: 2px;
  height: 16px;
  background: var(--violet);
  z-index: 1;
}

.flow-step:not(:last-child)::before {
  content: "↓";
  position: absolute;
  left: 38px;
  bottom: -22px;
  color: var(--violet);
  font-size: 16px;
  font-weight: 800;
  background: var(--bg);
  padding: 2px 4px;
  z-index: 2;
}

@media (max-width: 720px) {
  .flow-step {
    padding: 70px 18px 22px;
  }
  .flow-step .flow-num {
    top: 12px;
    left: 14px;
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
  .flow-step:not(:last-child)::after {
    left: 36px;
  }
  .flow-step:not(:last-child)::before {
    left: 30px;
  }
}

/* Témoignages clean — encart purement témoignages */
.testimonials-clean {
  padding: 84px 0;
  background:
    radial-gradient(#e7e0d2 1px, transparent 1px) 0 0 / 8px 8px,
    #fffdf6;
  border-top: 1px solid #d8cdbd;
  border-bottom: 1px solid #d8cdbd;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 38px;
}

.testimonials-header h2 {
  margin: 0 auto;
  max-width: 760px;
  color: var(--brown);
  font-size: clamp(32px, 2.6vw, 46px);
  line-height: 1.12;
}

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

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 24px 22px;
  background: #fffdf6;
  border: 1px solid #c7bcad;
}

.testimonial-stars {
  margin: 0;
  color: var(--violet);
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1;
}

.testimonial-text {
  margin: 0;
  flex: 1;
  color: var(--brown);
  font-size: 15px;
  line-height: 1.55;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding-top: 14px;
  border-top: 1px dashed #d5c9bb;
}

.testimonial-author > span:not(.avatar) {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.testimonial-author strong {
  color: var(--brown);
  font-size: 14px;
  font-weight: 800;
}

.testimonial-author em {
  color: #6a547c;
  font-size: 12px;
  font-weight: 600;
  font-style: normal;
}

@media (max-width: 1000px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Trust badge discret (remplace le sceau qui tourne) */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1.5px solid #1c6c66;
  background: var(--mint);
  color: #1c6c66;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.trust-badge sup {
  font-size: 0.7em;
}

/* Désactivation des anciens styles pictos timeline (devenus inutiles) */
.timeline-step .step-icon {
  display: none;
}

/* ============================================================
   Itération 7 — embed vidéo, listes ✓, recap programme, témoignages
   ============================================================ */

/* YouTube embed responsive */
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--violet-dark);
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption-below {
  margin: 12px 0 0;
  text-align: center;
  color: #6a547c;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Listes avec ✓ verts (sales-card et checkout-box) */
.offer-list-checks {
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.offer-list-checks li {
  position: relative;
  padding: 0 0 0 30px;
  color: var(--brown);
  font-size: 14px;
  line-height: 1.45;
}

.offer-list-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.05em;
  width: 22px;
  height: 22px;
  background-color: var(--mint);
  border: 1.5px solid #1c6c66;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 17 4 12l1.4-1.4L9 14.2l9.6-9.6L20 6 9 17z' fill='%231c6c66'/></svg>");
  background-size: 70% 70%;
  background-position: center;
  background-repeat: no-repeat;
}

/* Surcharge .offer-list classique pour ne pas casser le losange violet ailleurs */
.offer-list.offer-list-checks li::before {
  width: 22px;
  height: 22px;
  transform: none;
}

/* Recap sous la trame */
.program-recap {
  max-width: 820px;
  margin: 36px auto 0;
  padding: 18px 24px;
  border: 1.5px dashed var(--violet);
  background: #faf6ff;
  color: var(--brown);
  font-size: 16px;
  line-height: 1.55;
  text-align: center;
}

.program-recap strong {
  color: var(--violet);
}

.program-recap-mark {
  display: inline-block;
  margin-right: 8px;
  color: var(--violet);
  font-size: 20px;
  font-weight: 800;
  vertical-align: -1px;
}

/* Témoignages — sans avatar, gros guillemet typo */
.testimonial {
  position: relative;
  overflow: hidden;
}

.testimonial-quote {
  position: absolute;
  top: 4px;
  left: 14px;
  font-family: "Redaction10Fallback", "Times New Roman", serif;
  color: rgba(129, 50, 220, 0.18);
  font-size: 96px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-stars {
  position: relative;
  z-index: 1;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: 0;
  flex: 1;
  color: var(--brown);
  font-size: 16px;
  line-height: 1.55;
  font-style: italic;
  quotes: "« " " »";
}

.testimonial-text::before { content: open-quote; }
.testimonial-text::after { content: close-quote; }

.testimonial-author {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding-top: 14px;
  border-top: 1px dashed #d5c9bb;
}

.testimonial-author strong {
  color: var(--brown);
  font-size: 15px;
  font-weight: 800;
}

.testimonial-author em {
  color: #6a547c;
  font-size: 13px;
  font-weight: 600;
  font-style: normal;
}

/* Variation chromatique discrète sur les témoignages (top-border) */
.testimonial:nth-child(1) { border-top: 3px solid var(--violet); }
.testimonial:nth-child(2) { border-top: 3px solid #1c6c66; }
.testimonial:nth-child(3) { border-top: 3px solid #6a3d7a; }
.testimonial:nth-child(4) { border-top: 3px solid var(--brown); }
.testimonial:nth-child(5) { border-top: 3px solid var(--violet-dark); }

.testimonial:nth-child(2) .testimonial-quote { color: rgba(28, 108, 102, 0.18); }
.testimonial:nth-child(3) .testimonial-quote { color: rgba(106, 61, 122, 0.18); }
.testimonial:nth-child(4) .testimonial-quote { color: rgba(60, 35, 17, 0.18); }
.testimonial:nth-child(5) .testimonial-quote { color: rgba(24, 7, 44, 0.22); }

/* Témoignage "featured" — carte mise en avant qui occupe 2 colonnes */
.testimonial-featured {
  grid-column: span 2;
  background: linear-gradient(180deg, #fffdf6, #faf6ff);
}

.testimonial-featured .testimonial-quote {
  font-size: 130px;
  top: 0;
  left: 18px;
}

.testimonial-featured .testimonial-text {
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 1000px) {
  .testimonial-featured {
    grid-column: span 1;
  }
  .testimonial-featured .testimonial-quote {
    font-size: 96px;
  }
}

/* ============================================================
   Itération 8 — emoji ✅/❌, public hero, outcomes, garantie panel
   ============================================================ */

/* Public hero — phrase simple à la place des pictos */
.hero-public {
  margin: 0 0 18px;
  color: #392e52;
  font-size: 14px;
  line-height: 1.4;
}

.hero-public strong {
  color: var(--violet);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-right: 4px;
}

/* Compare cards — markers emoji ✅ / ❌ : on retire la pastille cerclée */
.compare-card.compare-yes li > span,
.compare-card.compare-no li > span {
  display: inline-block;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 2px;
}

.compare-card li {
  padding-left: 32px;
}

/* Bonus cards — sans médaillon picto */
.bonus-card {
  padding-top: 22px;
}

.bonus-card .bonus-icon {
  display: none;
}

/* Bonus card — mise en valeur du tag */
.bonus-card .bonus-tag {
  align-self: flex-start;
  background: var(--violet);
  color: #fff;
  border: 0;
  padding: 5px 12px;
}

.bonus-card:nth-child(2) .bonus-tag { background: #1c6c66; }
.bonus-card:nth-child(3) .bonus-tag { background: var(--brown); }

/* Garantie — panneau compact, proportionné aux bonus */
.guarantee-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 28px auto 0;
  max-width: 680px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--mint), #fffdf6 80%);
  border: 1.5px solid #1c6c66;
  box-shadow: 6px 6px 0 rgba(28, 108, 102, 0.12);
}

.guarantee-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #1c6c66;
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

.guarantee-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.guarantee-tag {
  display: inline-block;
  margin-bottom: 4px;
  padding: 2px 8px;
  background: #1c6c66;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guarantee-content h3 {
  margin: 2px 0 4px;
  color: var(--brown);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.2;
  font-weight: 700;
}

.guarantee-content p {
  margin: 0;
  color: var(--brown);
  font-size: 13px;
  line-height: 1.5;
}

.guarantee-content sup {
  font-size: 0.7em;
}

@media (max-width: 720px) {
  .guarantee-panel {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 24px 20px;
  }
  .guarantee-icon {
    margin: 0 auto;
  }
}

/* Outcomes v2 — section "Ce que vous saurez faire" */
.outcomes-v2 {
  padding: 84px 0;
}

.outcomes-v2 h2 {
  margin: 0 auto 14px;
  max-width: 860px;
  text-align: center;
  color: var(--brown);
  font-size: clamp(34px, 2.8vw, 50px);
  line-height: 1.12;
}

.outcomes-v2 .section-lead {
  margin: 0 auto 38px;
  max-width: 720px;
  text-align: center;
}

.outcomes-v2-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.outcome-v2 {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: flex-start;
  padding: 24px 26px 22px;
  background: #fffdf6;
  border: 1px solid #c7bcad;
}

.outcome-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--mint);
  color: #1c6c66;
  border: 1.5px solid #1c6c66;
}

.outcome-mark svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.outcome-v2 h3 {
  margin: 4px 0 8px;
  color: var(--brown);
  font-size: clamp(19px, 1.5vw, 22px);
  line-height: 1.25;
  font-weight: 700;
}

.outcome-v2 p {
  margin: 0;
  color: #392e52;
  font-size: 15px;
  line-height: 1.5;
}

.outcome-v2:nth-child(2) .outcome-mark {
  background: #faf6ff;
  color: var(--violet);
  border-color: var(--violet);
}

.outcome-v2:nth-child(3) .outcome-mark {
  background: var(--lavender);
  color: #6a3d7a;
  border-color: #6a3d7a;
}

.outcome-v2:nth-child(4) .outcome-mark {
  background: #f3ead6;
  color: var(--brown);
  border-color: var(--brown);
}

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

/* ============================================================
   Page « Créer un programme de formation avec l'IA »
   Sections spécifiques : hands-on, reassurance, cross-sell
   ============================================================ */

/* Hands-on — créer en même temps */
.hands-on {
  padding: 84px 0;
  background: #fffdf6;
  border-top: 1px solid #d8cdbd;
  border-bottom: 1px solid #d8cdbd;
}

.hands-on-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding: 38px 40px;
  background: linear-gradient(135deg, #faf6ff, #fffdf6 70%);
  border: 2px solid var(--violet);
  box-shadow: 12px 12px 0 rgba(129, 50, 220, 0.1);
}

.hands-on-copy h2 {
  margin: 8px 0 14px;
  font-size: clamp(30px, 2.6vw, 44px);
  line-height: 1.12;
  font-weight: 700;
}

.hands-on-copy h2 em {
  font-style: italic;
  color: var(--violet);
}

.hands-on-copy p {
  margin: 0;
  color: #392e52;
  font-size: 16px;
  line-height: 1.55;
}

.hands-on-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.hands-on-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: flex-start;
}

.hands-on-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--mint);
  color: #1c6c66;
  border: 1.5px solid #1c6c66;
}

.hands-on-mark svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hands-on-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brown);
  font-size: 17px;
  font-weight: 800;
}

.hands-on-list span {
  color: #392e52;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1000px) {
  .hands-on-shell {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px 24px;
  }
}

/* Réassurance Vincent — mini bloc */
.reassurance {
  padding: 80px 0;
}

.reassurance-grid {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.reassurance-portrait {
  height: 220px;
  border: 1px solid #c8c0b2;
  background:
    radial-gradient(circle at 45% 38%, #f9f9f9 0 14%, transparent 15%),
    linear-gradient(165deg, #d7d8dd, #f4f4f4 45%, #c4c6cd);
}

.reassurance-content h2 {
  margin: 6px 0 14px;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.12;
  font-weight: 700;
}

.reassurance-content p {
  margin: 0 0 14px;
  color: #392e52;
  font-size: 16px;
  line-height: 1.6;
}

.reassurance-content p:last-of-type {
  margin-bottom: 0;
}

.reassurance-signature {
  margin: 18px 0 0 !important;
  color: var(--violet);
  font-family: "Redaction35", "IBM Plex Sans", sans-serif;
  font-size: 18px;
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .reassurance-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }
  .reassurance-portrait {
    width: 160px;
    height: 160px;
  }
}

/* Cross-sell — mention discrète */
.cross-sell {
  padding: 24px 0 64px;
}

.cross-sell-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 22px 28px;
  background: #faf6ff;
  border: 1.5px dashed var(--violet);
  text-align: center;
}

.cross-sell-eyebrow {
  margin: 0 0 6px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cross-sell-eyebrow em {
  font-style: italic;
  text-transform: none;
}

.cross-sell-text {
  margin: 0;
  color: var(--brown);
  font-size: 15px;
  line-height: 1.55;
}

.cross-sell-text a {
  color: var(--violet);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.cross-sell-text a:hover {
  color: var(--violet-dark);
}

/* Badge "NOUVEAU" sur sales-card */
.sales-card .offer-badge {
  background: var(--mint);
  color: #1c6c66;
  border-color: #1c6c66;
}

.sales-card .offer-badge::before,
.sales-card .offer-badge::after {
  color: #1c6c66;
}

/* ============================================================
   Page « Créer un programme » — itération 2
   Constat dramatisé / promesse outcome / roadmap horizontale
   ============================================================ */

/* CONSTAT — démonstration "vous commencez par la fin" */
.constat {
  padding: 80px 0 70px;
  background:
    radial-gradient(#e7e0d2 1px, transparent 1px) 0 0 / 8px 8px,
    #fffdf6;
  border-top: 1px solid #d8cdbd;
  border-bottom: 1px solid #d8cdbd;
}

.constat-intro {
  text-align: center;
  margin-bottom: 38px;
}

.constat-intro h2 {
  margin: 0 auto 14px;
  max-width: 880px;
  font-size: clamp(34px, 2.8vw, 50px);
  line-height: 1.1;
}

.constat-intro .section-lead {
  margin: 0 auto;
  max-width: 720px;
}

.constat-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: center;
}

/* Mockup chat ChatGPT-like */
.chat-mockup {
  background: #fff;
  border: 1px solid #d8d4cc;
  box-shadow: 10px 10px 0 rgba(185, 74, 91, 0.14);
  transform: rotate(-0.8deg);
  font-family: "IBM Plex Sans", sans-serif;
  overflow: hidden;
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f7f5ef;
  border-bottom: 1px solid #e3ddd2;
  font-size: 13px;
  color: #2a2230;
}

.chat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1c6c66;
  box-shadow: 0 0 0 2px rgba(28, 108, 102, 0.18);
}

.chat-name {
  font-weight: 700;
  flex: 1;
}

.chat-status {
  font-size: 11px;
  color: #1c6c66;
  font-weight: 600;
}

.chat-body {
  padding: 18px 16px;
  display: grid;
  gap: 14px;
  background: #fffdf9;
}

.chat-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 92%;
}

.chat-row-user {
  margin-left: auto;
  flex-direction: row-reverse;
  text-align: right;
}

.chat-avatar {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  font-family: "IBM Plex Sans", sans-serif;
}

.chat-avatar-user {
  background: var(--violet);
  color: #fff;
}

.chat-avatar-ai {
  background: var(--brown);
  color: var(--mint);
  font-size: 16px;
}

.chat-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.4;
  color: #2a2230;
  text-align: left;
}

.chat-bubble-user {
  background: var(--violet);
  color: #fff;
  border-top-right-radius: 4px;
}

.chat-bubble-ai {
  background: #f3f0e8;
  border: 1px solid #e3ddd2;
  border-top-left-radius: 4px;
  position: relative;
  color: #5a5260;
}

.chat-typing {
  display: inline-flex;
  gap: 3px;
  margin-right: 6px;
  vertical-align: middle;
}

.chat-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #aaa3b1;
  animation: chatBlink 1.4s ease-in-out infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes chatBlink {
  0%, 60%, 100% { opacity: 0.3; }
  30% { opacity: 1; }
}

.constat-blank {
  display: inline-block;
  padding: 0 8px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px dashed rgba(255, 255, 255, 0.55);
  color: #fff;
  font-style: italic;
}

.chat-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #f7f5ef;
  border-top: 1px solid #e3ddd2;
}

.chat-input-text {
  flex: 1;
  color: #98919e;
  font-size: 13px;
}

.chat-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}

.chat-warn {
  margin: 14px 14px 16px;
  padding: 8px 12px;
  background: #fbe9ec;
  border: 1.5px solid #b94a5b;
  color: #b94a5b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

@media (prefers-reduced-motion: reduce) {
  .chat-typing span { animation: none; opacity: 0.6; }
  .chat-mockup { transform: none; }
}

.constat-consequences-head {
  margin: 0 0 14px;
  color: var(--brown);
  font-size: 18px;
  font-weight: 800;
}

.constat-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.constat-list li {
  position: relative;
  padding-left: 28px;
  color: #392e52;
  font-size: 15px;
  line-height: 1.55;
}

.constat-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #fbe9ec;
  border: 1.5px solid #b94a5b;
  color: #b94a5b;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.constat-conclusion {
  max-width: 840px;
  margin: 38px auto 0;
  padding: 18px 24px;
  text-align: center;
  border: 1.5px dashed var(--violet);
  background: #faf6ff;
  color: var(--brown);
  font-size: 17px;
  line-height: 1.55;
}

.constat-conclusion em {
  font-style: italic;
  color: var(--violet);
}

.constat-conclusion strong {
  color: var(--violet);
}

@media (max-width: 900px) {
  .constat-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .chat-mockup {
    transform: none;
  }
}

/* PROMESSE — outcome avec mock-up scénario */
.promise-outcome {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  margin-bottom: 38px;
}

.scenario-mockup {
  background: #fffdf6;
  border: 1px solid var(--violet);
  box-shadow: 14px 14px 0 rgba(129, 50, 220, 0.12);
  font-family: "IBM Plex Sans", sans-serif;
}

.scenario-head {
  padding: 14px 18px;
  background: linear-gradient(120deg, var(--violet), var(--violet-dark));
  color: #fff;
}

.scenario-tag {
  display: inline-block;
  padding: 2px 9px;
  margin-bottom: 4px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scenario-title {
  display: block;
  font-size: 17px;
  font-weight: 700;
}

.scenario-body {
  padding: 18px 20px 20px;
  display: grid;
  gap: 12px;
}

.scenario-line {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #d5c9bb;
}

.scenario-line:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.scenario-label {
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scenario-value {
  color: var(--brown);
  font-size: 14px;
  line-height: 1.4;
}

.scenario-line-dim {
  opacity: 0.55;
}

.promise-outcome-copy h3 {
  margin: 0 0 14px;
  color: var(--brown);
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.2;
  font-weight: 700;
}

.promise-formats {
  text-align: center;
  margin-top: 22px;
}

.promise-formats-label {
  margin: 0 0 14px;
  color: var(--brown);
  font-size: 14px;
  font-weight: 700;
}

.format-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.format-badges li {
  padding: 8px 14px;
  border: 1px solid #c7bcad;
  background: #fffdf6;
  color: var(--brown);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .promise-outcome {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Scenario callout flottant pointant vers le mockup */
.scenario-wrap {
  position: relative;
}

.scenario-callout {
  position: absolute;
  top: -34px;
  left: -10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 12px;
  background: var(--mint);
  border: 1.5px solid #1c6c66;
  color: #1c6c66;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  transform: rotate(-2deg);
  z-index: 2;
  box-shadow: 4px 4px 0 rgba(28, 108, 102, 0.18);
}

.scenario-callout-arrow {
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.scenario-callout-text strong {
  color: #1c6c66;
  font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
  .scenario-callout { transform: none; }
}

@media (max-width: 900px) {
  .scenario-callout {
    position: static;
    transform: none;
    margin-bottom: 14px;
    width: max-content;
  }
}

/* ROADMAP HORIZONTALE, méthode 5 temps avec dégradé violet vers mint */
.roadmap-track {
  position: relative;
  margin: 42px 0 0;
  padding: 0 0 12px;
}

.roadmap-anchor {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid currentColor;
  white-space: nowrap;
  line-height: 1.2;
}

.roadmap-anchor-start {
  color: var(--violet);
  background: #faf6ff;
}

.roadmap-anchor-end {
  color: #1c6c66;
  background: var(--mint);
}

.roadmap-steps {
  list-style: none;
  margin: 0;
  padding: 26px 0 6px;
  display: grid;
  /* anchor-start | 5 steps | anchor-end, tous au niveau de la ligne directrice */
  grid-template-columns: auto repeat(5, minmax(0, 1fr)) auto;
  gap: 0;
  position: relative;
  align-items: start;
}

.roadmap-steps > .roadmap-anchor {
  align-self: start;
  margin-top: 18px;
  position: relative;
  z-index: 2;
}

.roadmap-steps > .roadmap-anchor-start { margin-right: 14px; }
.roadmap-steps > .roadmap-anchor-end { margin-left: 14px; }

/* Signal pixel-art : pointillés colorés qui défilent entre les nœuds */
.roadmap-steps::before {
  content: "";
  position: absolute;
  top: 52px; /* centré sur les nœuds (56 px), passe derrière */
  left: 4%;
  right: 4%;
  height: 4px;
  background-image: linear-gradient(
    90deg,
    var(--violet) 0%,
    #7a3098 25%,
    #6a3d7a 50%,
    #3d695f 75%,
    #1c6c66 100%
  );
  -webkit-mask-image: repeating-linear-gradient(
    90deg,
    #000 0 5px,
    transparent 5px 12px
  );
  mask-image: repeating-linear-gradient(
    90deg,
    #000 0 5px,
    transparent 5px 12px
  );
  -webkit-mask-size: 12px 100%;
  mask-size: 12px 100%;
  animation: signalFlow 1.6s steps(12, end) infinite;
  z-index: 0;
}

/* Le signal "marche" pixel par pixel, façon transmission rétro */
@keyframes signalFlow {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  to {
    -webkit-mask-position: 12px 0;
    mask-position: 12px 0;
  }
}

/* Plus de second pseudo-élément, le signal pointillé suffit */
.roadmap-steps::after {
  display: none;
}

/* Pulse subtil sur les nœuds, staggered */
.roadmap-node {
  animation: roadmapNodePulse 5s ease-in-out infinite;
}
.roadmap-step-1 .roadmap-node { animation-delay: 0s; }
.roadmap-step-2 .roadmap-node { animation-delay: 0.4s; }
.roadmap-step-3 .roadmap-node { animation-delay: 0.8s; }
.roadmap-step-4 .roadmap-node { animation-delay: 1.2s; }
.roadmap-step-5 .roadmap-node { animation-delay: 1.6s; }

@keyframes roadmapNodePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(0,0,0,0); }
  50% { transform: scale(1.06); box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.6); }
}

@media (prefers-reduced-motion: reduce) {
  .roadmap-steps::before { animation: none; }
  .roadmap-node { animation: none; }
}

.roadmap-step {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.roadmap-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: #fffdf6;
  color: var(--violet);
  font-family: "Redaction35", "IBM Plex Sans", sans-serif;
  font-size: 22px;
  letter-spacing: 0.02em;
  font-weight: 700;
}

/* Dégradé chromatique des nœuds */
.roadmap-step-1 .roadmap-node { color: var(--violet); }
.roadmap-step-2 .roadmap-node { color: #7a3098; }
.roadmap-step-3 .roadmap-node { color: #6a3d7a; }
.roadmap-step-4 .roadmap-node { color: #3d695f; }
.roadmap-step-5 .roadmap-node { color: #1c6c66; background: var(--mint); }

.roadmap-step h3 {
  margin: 0 0 8px;
  color: var(--brown);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.25;
  font-weight: 700;
}

.roadmap-step p {
  margin: 0 0 12px;
  color: #392e52;
  font-size: 13px;
  line-height: 1.45;
}

.roadmap-deliverable {
  display: inline-block;
  padding: 4px 10px;
  background: #faf6ff;
  border: 1px solid var(--violet);
  color: var(--violet);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-top: auto;
}

.roadmap-step-5 .roadmap-deliverable {
  background: var(--mint);
  border-color: #1c6c66;
  color: #1c6c66;
}

@media (max-width: 1100px) {
  .roadmap-steps {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 18px 0;
  }
  .roadmap-steps::before {
    top: 0;
    bottom: 0;
    left: 28px;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, var(--violet) 0%, #6a3d7a 50%, #1c6c66 100%);
    border: 0;
    box-shadow: none;
  }
  .roadmap-steps::after {
    display: none;
  }
  .roadmap-steps > .roadmap-anchor {
    margin: 0 0 6px;
  }
  .roadmap-steps > .roadmap-anchor-end {
    margin: 6px 0 0;
  }
  .roadmap-step {
    padding-left: 80px;
    text-align: left;
    align-items: flex-start;
  }
  .roadmap-node {
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 0;
  }
  .roadmap-anchor-end {
    align-self: flex-start;
    margin-top: 18px;
  }
}








/* Responsive V3 */
@media (max-width: 1160px) {
  .proof-bar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .proof-bar-grid .proof-quote {
    grid-column: 1 / -1;
  }
  .bundles-grid {
    grid-template-columns: 1fr;
  }
  .lead-magnet-shell {
    grid-template-columns: 1fr;
    padding: 30px 26px;
  }
}

@media (max-width: 860px) {
  .proof-bar-grid {
    grid-template-columns: 1fr 1fr;
  }
  .proof-bar-grid .proof-quote {
    grid-column: 1 / -1;
  }
  .about-compact-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .portrait-small {
    width: 160px;
    height: 160px;
  }
  .pixel-canvas {
    height: 92px;
  }
  .lead-magnet {
    padding: 48px 0;
  }
  .lead-magnet-shell {
    padding: 24px 18px;
  }
  .bundle-card {
    padding: 24px 22px;
  }
}


/* === Coupons (prix barré + badge) === */
.price-strike {
  color: var(--c-muted, #888);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  font-weight: 500;
  margin-right: 0.35em;
}
.price-new {
  color: inherit;
  font-weight: inherit;
}
.coupon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 6px 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #fff3d6;
  color: #6b4a00;
  border: 1px solid #f3c75a;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.sales-card .coupon-badge,
.checkout-box .coupon-badge {
  display: flex;
  justify-content: center;
}
/* Respecter l'attribut hidden quel que soit le contexte */
[hidden] {
  display: none !important;
}
.sales-card .price-strike,
.checkout-box .price-strike {
  font-size: 0.7em;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.4em;
}

/* === Logo image (remplace l'ancien logo texte) === */
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.logo img {
  display: block;
  height: 44px;
  width: auto;
}
.footer-logo img {
  height: 36px;
}
@media (max-width: 720px) {
  .logo img { height: 36px; }
  .footer-logo img { height: 30px; }
}

/* === Photo Vincent — remplace les placeholders graphiques === */
.portrait,
.reassurance-portrait {
  background-image: url("/assets/vincent.png");
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  /* on garde la bordure existante définie plus haut */
}

/* === Note "à venir prochainement" sous les boutons === */
.coming-soon-note {
  margin: 10px 0 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #6b6b75;
  text-align: center;
  font-style: italic;
}

/* === Embed Kit (ConvertKit) dans nos cartes === */
.ck-embed {
  margin-top: 8px;
}
/* Conteneur du formulaire Kit injecté */
.ck-embed .formkit-form {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}
/* Champ email plus discret, aligné sur nos couleurs */
.ck-embed .formkit-input {
  border: 1px solid #c8c0b2 !important;
  border-radius: 4px !important;
  padding: 12px 14px !important;
  font-size: 15px !important;
  background: #fff !important;
}
/* Bouton de soumission aligné sur nos btn-primary */
.ck-embed .formkit-submit {
  background: var(--violet) !important;
  border-radius: 4px !important;
  padding: 12px 18px !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  cursor: pointer;
}
.ck-embed .formkit-submit:hover {
  background: var(--violet-dark, var(--violet)) !important;
  opacity: 0.92;
}
/* Cache les éléments Kit qui font doublon avec notre contexte (en-tête, image) */
.ck-embed .formkit-header,
.ck-embed .formkit-subheader,
.ck-embed .formkit-image,
.ck-embed .formkit-background {
  display: none !important;
}

/* === Bouton désactivé "À venir prochainement" === */
.btn.is-disabled {
  background: #d4d0c4 !important;
  color: #6b6b75 !important;
  border-color: #c8c0b2 !important;
  cursor: not-allowed !important;
  pointer-events: none;
  opacity: 0.85;
}
.btn.is-disabled:hover {
  background: #d4d0c4 !important;
  color: #6b6b75 !important;
  opacity: 0.85;
}
/* Pour que le span se comporte comme un bouton */
span.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  user-select: none;
}
span.btn.full {
  display: flex;
  width: 100%;
}
