@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/barlow-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/barlow-latin-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/barlow-latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/barlow-latin-700-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/barlow-condensed-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/barlow-condensed-latin-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/barlow-condensed-latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/barlow-condensed-latin-700-normal.woff2") format("woff2");
}

:root {
  --paper: #f7f5f1;
  --white: #ffffff;
  --ink: #202126;
  --muted: #666970;
  --red: #d11d37;
  --red-dark: #ac152b;
  --line: rgba(32, 33, 38, 0.14);
  --green: #1f7655;
  --display: "Barlow", "Segoe UI", Arial, sans-serif;
  --body: "Barlow", "Segoe UI", Arial, sans-serif;
  --max: 1000px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.1rem, 4.2vw, 3.9rem);
}

h2 {
  font-size: clamp(2.35rem, 3.4vw, 3.25rem);
}

h3 {
  font-size: clamp(1.65rem, 2.7vw, 2.65rem);
}

.container {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 48px), 720px);
  margin-inline: auto;
}

.kicker {
  margin-bottom: 20px;
  color: var(--red-dark);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.kicker-light {
  color: #ffb3bd;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.6;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 11px;
  padding: 15px 24px;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(172, 21, 43, 0.2);
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.25;
  text-align: center;
  text-transform: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  background: var(--red-dark);
  box-shadow: 0 14px 30px rgba(172, 21, 43, 0.26);
  transform: translateY(-2px);
}

.payment-button {
  width: min(100%, 560px);
  min-height: 64px;
  margin-inline: auto;
  justify-content: space-between;
  gap: 12px;
  border-radius: 10px;
  padding: 0 14px 0 18px;
  box-shadow: 0 10px 20px rgba(73, 13, 22, 0.24);
  font-size: clamp(0.87rem, 1.3vw, 0.94rem);
  text-align: left;
}

.payment-button > span:first-child::after {
  display: inline-block;
  margin-left: 7px;
  content: "\2192";
  opacity: 0.72;
  transition: transform 160ms ease;
}

.payment-button:hover > span:first-child::after {
  transform: translateX(2px);
}

.payment-button .button-price {
  display: flex;
  align-self: stretch;
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.32);
  padding-left: 14px;
  font-family: var(--display);
  font-size: clamp(1.18rem, 1.6vw, 1.3rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.button-black {
  background: var(--ink);
}

.button-black:hover {
  background: #303238;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.text-link {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(209, 29, 55, 0.45);
  color: var(--red-dark);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hidden {
  display: none !important;
}

/* Header */
.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 241, 0.88);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--body);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  text-transform: uppercase;
}

.brand-mark {
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  background: url("brand-mark-128.png?v=20260811-generated") center / contain no-repeat;
}

.topbar-cta {
  font-size: 0.76rem;
}

/* TikTok landing */
.landing-hero {
  padding: clamp(44px, 5vw, 68px) 0 clamp(56px, 6vw, 82px);
  overflow: hidden;
}

.landing-hero-single {
  padding-bottom: 28px;
}

.landing-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(42px, 5vw, 64px);
}

.landing-grid-single {
  width: min(calc(100% - 48px), 1100px);
  grid-template-columns: minmax(0, 1fr);
  justify-content: center;
}

.landing-grid-single .hero-copy {
  width: 100%;
}

.hero-content-shell {
  display: flex;
  width: min(100%, 750px);
  margin-inline: auto;
  flex-direction: column;
  align-items: stretch;
}

.hero-content-shell h1,
.hero-content-shell .lead,
.hero-content-shell .capture-box,
.hero-content-shell .micro-proof {
  width: 100%;
  max-width: none;
}

.hero-content-shell .hero-tiktok-video {
  align-self: center;
}

.hero-content-shell .benefit-list {
  margin-bottom: 0;
}

@media (min-width: 641px) {
  .hero-content-shell {
    text-align: center;
  }

  .hero-content-shell h1,
  .hero-content-shell .micro-proof {
    text-align: center;
    text-wrap: balance;
  }

  .hero-content-shell .lead {
    text-align: center;
    text-wrap: wrap;
  }

  .hero-content-shell .capture-box {
    text-align: left;
  }
}

@media (min-width: 641px) {
  .hero-content-shell {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    grid-template-areas:
      "title video"
      "lead video"
      "form video"
      "proof video";
    column-gap: clamp(32px, 4.5vw, 58px);
    row-gap: 20px;
    align-items: stretch;
    text-align: left;
  }

  .hero-content-shell h1 {
    grid-area: title;
    align-self: end;
    margin: 0;
    text-align: left;
  }

  .hero-content-shell .lead {
    grid-area: lead;
    margin: 0;
    text-align: left;
  }

  .hero-content-shell .capture-box {
    grid-area: form;
  }

  .hero-content-shell .micro-proof {
    grid-area: proof;
    align-self: start;
    margin: 0;
    text-align: left;
    text-wrap: wrap;
  }

  .hero-content-shell .hero-tiktok-video {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    grid-area: video;
    align-self: stretch;
    margin: 0;
    overflow: hidden;
  }

  .hero-content-shell .hero-tiktok-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center 53%;
  }
}

@media (min-width: 641px) and (max-width: 920px) {
  .hero-content-shell {
    grid-template-columns: minmax(0, 1.06fr) minmax(270px, 0.94fr);
    column-gap: 28px;
    row-gap: 12px;
  }

  .hero-content-shell h1 {
    font-size: clamp(2.45rem, 5vw, 2.7rem);
    line-height: 1;
  }

  .hero-content-shell .capture-box {
    padding: 9px;
  }

  .hero-content-shell .capture-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-content-shell .capture-row input {
    padding: 12px 14px;
  }

  .hero-content-shell .capture-row .button {
    width: 100%;
    min-height: 49px;
    justify-content: center;
  }

  .hero-content-shell .consent {
    margin-top: 9px;
  }
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(2.75rem, 3.2vw, 2.85rem);
}

.hero-tiktok-video {
  width: min(100%, 390px);
  margin: 0 auto 30px;
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(32, 33, 38, 0.14);
}

.hero-tiktok-video video {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  background: #17181c;
  object-fit: cover;
  object-position: center 53%;
}

.hero-copy .lead {
  margin-bottom: 26px;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 30px;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.benefit-list[hidden] {
  display: none !important;
}

.benefit-list li {
  min-width: 0;
  margin: 0;
  padding: 18px 16px;
  font-weight: 400;
}

.benefit-list li + li {
  border-left: 1px solid var(--line);
}

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

.benefit-list strong {
  margin-bottom: 5px;
  color: var(--red);
  font-family: var(--display);
  font-size: 1.02rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

.benefit-list span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .benefit-list {
    grid-template-columns: 1fr;
  }

  .benefit-list li {
    padding: 15px 0;
  }

  .benefit-list li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

.capture-box {
  max-width: 660px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  background: var(--white);
  box-shadow: 0 24px 65px rgba(32, 33, 38, 0.12);
}

.capture-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.capture-row input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 16px 17px;
  outline: none;
  background: #fff;
}

.capture-row input:focus {
  border-color: rgba(209, 29, 55, 0.55);
  box-shadow: 0 0 0 4px rgba(209, 29, 55, 0.1);
}

.capture-row .button {
  border: 0;
  padding-inline: 20px;
}

.capture-box.is-unlocked .capture-row {
  grid-template-columns: 1fr;
}

.capture-box.is-unlocked .capture-row .button {
  width: 100%;
}

.capture-success-copy {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.45;
}

.consent {
  display: flex;
  margin-top: 14px;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.4;
}

.consent input {
  margin-top: 3px;
  accent-color: var(--red);
}

.micro-proof {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.79rem;
}

.micro-proof + .benefit-list {
  margin-top: 24px;
}

.hero-product {
  position: relative;
  isolation: isolate;
}

.hero-product::before {
  position: absolute;
  z-index: -1;
  top: -7%;
  right: -8%;
  width: 88%;
  height: 88%;
  border-radius: 38% 62% 48% 52%;
  background: linear-gradient(145deg, rgba(209, 29, 55, 0.18), rgba(209, 29, 55, 0.04));
  filter: blur(1px);
  content: "";
}

.hero-product img {
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(32, 33, 38, 0.16);
}

/* Product path after the free guide */
.offer-path {
  border-top: 1px solid var(--line);
}

.next-offer {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.next-offer-review {
  background: #f1eee8;
}

.next-offer-call {
  border-bottom: 1px solid var(--line);
  background: #e9e5de;
}

.next-offer-grid {
  display: grid;
  min-height: 520px;
  align-items: center;
  grid-template-areas:
    "copy visual"
    "actions visual";
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  grid-template-rows: 1fr auto;
  column-gap: clamp(48px, 7vw, 76px);
  row-gap: 22px;
  padding: clamp(52px, 6vw, 72px) 0;
}

.offer-path > .next-offer:first-child .next-offer-grid {
  padding-top: clamp(36px, 4vw, 48px);
}

.next-offer-copy {
  grid-area: copy;
  align-self: end;
}

.next-offer-copy .kicker {
  margin-bottom: 15px;
}

.next-offer-copy h3 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 3.8vw, 3.2rem);
}

.next-offer-copy > p:last-child {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.next-offer-visual {
  display: grid;
  grid-area: visual;
  place-items: center;
}

.next-offer-visual img {
  width: min(100%, 460px);
  max-height: 410px;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: 0 28px 60px rgba(32, 33, 38, 0.17);
}

.next-offer-guide .next-offer-visual img {
  width: min(100%, 330px);
  max-height: 430px;
}

.next-offer-actions {
  display: flex;
  grid-area: actions;
  align-self: start;
  align-items: flex-start;
  flex-direction: column;
}

.next-offer-actions .payment-button {
  width: 100%;
  margin: 0;
}

.offer-more {
  display: inline-flex;
  margin-top: 15px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(32, 33, 38, 0.28);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.offer-more span {
  color: var(--red);
}

.signal-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.signal-item {
  padding: 27px 32px;
  text-align: center;
}

.signal-item + .signal-item {
  border-left: 1px solid var(--line);
}

.signal-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
}

.signal-item span {
  color: var(--muted);
  font-size: 0.78rem;
}

.problem-section,
.creator-section,
.offer-section,
.faq-section,
.legal-content {
  padding: clamp(52px, 5vw, 70px) 0;
}

.problem-section {
  padding: clamp(48px, 4.5vw, 62px) 0 clamp(30px, 3vw, 40px);
}

.problem-section .section-intro {
  margin-bottom: 0;
}

.section-intro {
  display: grid;
  margin-bottom: clamp(34px, 4vw, 50px);
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.section-intro h2,
.section-intro .lead {
  margin-bottom: 0;
}

@media (min-width: 921px) {
  .booking-section-intro,
  .problem-section-entretien .section-intro {
    align-items: end;
  }
}

.symptom-list {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.symptom {
  min-height: 170px;
  padding: 30px 40px 30px 0;
  border-bottom: 1px solid var(--line);
}

.symptom:nth-child(even) {
  padding-right: 0;
  padding-left: 40px;
  border-left: 1px solid var(--line);
}

.symptom h3 {
  margin-bottom: 14px;
  font-size: 1.72rem;
}

.symptom p {
  margin: 0;
  color: var(--muted);
}

.inside-section {
  padding: clamp(54px, 5.5vw, 74px) 0;
  background: linear-gradient(145deg, #202126, #2a2c32);
  color: #fff;
}

.inside-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(46px, 6vw, 70px);
}

.inside-copy h2 {
  margin-bottom: 28px;
}

.inside-copy p:not(.kicker) {
  color: #bfc1c3;
}

.inside-list {
  border-top: 1px solid #4a4c4f;
}

.inside-item {
  display: grid;
  padding: 27px 0;
  border-bottom: 1px solid #4a4c4f;
  grid-template-columns: 0.55fr 1fr;
  gap: 34px;
}

.inside-item strong {
  color: #fff;
  font-family: var(--display);
  font-size: 1.7rem;
  line-height: 1;
}

.inside-item span {
  color: #bfc1c3;
}

.creator-section {
  background: var(--white);
}

.creator-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(46px, 6vw, 70px);
}

.creator-mark {
  display: grid;
  min-height: 360px;
  place-items: center;
  border-radius: 28px;
  background: linear-gradient(145deg, #dc2842, #b9162f);
  box-shadow: 0 28px 70px rgba(172, 21, 43, 0.22);
  color: #fff;
  font-family: var(--display);
  font-size: clamp(7rem, 14vw, 12rem);
  font-weight: 700;
  line-height: 1;
}

.creator-copy h2 {
  margin-bottom: 28px;
}

.creator-copy p:not(.kicker) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
}

.final-capture {
  padding: clamp(48px, 4.5vw, 62px) 0;
  background: linear-gradient(135deg, #d11d37 0%, #a9142a 100%);
  color: #fff;
}

.final-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}

.final-grid h2 {
  margin-bottom: 0;
}

.final-capture .price span {
  color: rgba(255, 255, 255, 0.72);
}

.final-capture .capture-box {
  box-shadow: 0 28px 70px rgba(72, 5, 17, 0.28);
}

.final-guide-cta {
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.final-guide-cta .final-grid {
  display: block;
  max-width: 560px;
  text-align: center;
}

.final-guide-cta h2 {
  max-width: 560px;
  margin: 0 auto 18px;
}

.final-guide-cta .lead {
  max-width: 560px;
  margin: 0 auto 28px;
}

.final-guide-product {
  width: min(100%, 560px);
  margin: 0 auto 28px;
}

.final-guide-product img {
  border-radius: 8px;
  box-shadow: 0 24px 55px rgba(32, 33, 38, 0.18);
}

.final-guide-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.sticky-mobile-cta {
  display: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .2s ease, transform .2s ease;
}

.sticky-mobile-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Confirmation and sales */
.receipt-banner {
  padding: 18px 0;
  background: var(--green);
  color: #fff;
  text-align: center;
}

.receipt-banner strong {
  letter-spacing: 0.01em;
}

.sales-hero {
  padding: clamp(48px, 6vw, 74px) 0 clamp(48px, 5vw, 64px);
}

.sales-grid {
  display: block;
}

.sales-copy {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.sales-copy h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.1rem, 4.2vw, 3.9rem);
}

.sales-copy .lead {
  max-width: 680px;
  margin-bottom: 28px;
  margin-inline: auto;
}

.sales-copy .benefit-list {
  width: min(100%, 560px);
  margin-inline: auto;
  text-align: left;
}

@media (min-width: 641px) {
  .sales-hero-guide {
    --sales-intro-width: 560px;
  }

  .sales-hero-point {
    --sales-intro-width: 560px;
  }

  .sales-hero-entretien {
    --sales-intro-width: 560px;
  }

  .sales-hero-guide .sales-copy,
  .sales-hero-point .sales-copy,
  .sales-hero-entretien .sales-copy {
    max-width: 560px;
  }

  .sales-hero-entretien .sales-copy {
    text-align: left;
  }

  .sales-hero-guide .sales-product-cover,
  .sales-hero-guide .product-carousel {
    width: min(100%, 560px);
  }

  .sales-hero-guide .sales-copy > h1,
  .sales-hero-guide .sales-copy > .lead,
  .sales-hero-guide .sales-copy > .benefit-list,
  .sales-hero-point .sales-copy > h1,
  .sales-hero-point .sales-copy > .lead,
  .sales-hero-point .sales-copy > .benefit-list,
  .sales-hero-entretien .sales-copy > h1,
  .sales-hero-entretien .sales-copy > .lead,
  .sales-hero-entretien .sales-copy > .benefit-list {
    width: min(100%, var(--sales-intro-width));
    max-width: none;
    margin-inline: auto;
  }

  .sales-hero-entretien .sales-copy > h1,
  .sales-hero-entretien .sales-copy > .lead,
  .sales-hero-entretien .sales-copy > .benefit-list {
    margin-inline: 0;
    text-align: left;
  }
}

.price {
  display: flex;
  margin: 30px 0;
  align-items: flex-end;
  gap: 12px;
}

.price strong {
  font-family: var(--display);
  font-size: 4.2rem;
  line-height: 0.8;
  white-space: nowrap;
}

.price span {
  color: var(--muted);
  font-size: 0.82rem;
}

.sales-product {
  position: relative;
}

.sales-product img {
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(32, 33, 38, 0.16);
}

.sales-product-primary {
  width: min(100%, 560px);
  margin: 8px auto 30px;
}

.sales-product-cover {
  width: min(100%, 420px);
}

.sales-product-cover img {
  border-radius: 8px;
}

.product-carousel {
  position: relative;
  margin-top: 18px;
}

.product-carousel-viewport {
  overflow: hidden;
  border: 1px solid rgba(32, 33, 38, 0.1);
  border-radius: 18px;
  background: #ebe7e0;
  box-shadow: 0 30px 80px rgba(32, 33, 38, 0.14);
}

.product-carousel-track {
  display: flex;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.product-carousel-slide {
  display: grid;
  flex: 0 0 100%;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  margin: 0;
  aspect-ratio: 4 / 5;
  background: #f2eee7;
}

.product-carousel-slide img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.product-carousel-slide-packshot img {
  padding: clamp(10px, 3vw, 22px);
}

.product-carousel-slide figcaption {
  padding: 13px 56px;
  border-top: 1px solid rgba(32, 33, 38, 0.1);
  background: rgba(247, 245, 241, 0.96);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
}

.product-carousel-arrow {
  position: absolute;
  z-index: 2;
  top: calc(50% - 22px);
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: rgba(20, 21, 25, 0.92);
  box-shadow: 0 10px 28px rgba(20, 21, 25, 0.22);
  color: #fff;
  font: 700 1.25rem/1 var(--body);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.product-carousel-arrow:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.04);
}

.product-carousel-prev { left: 12px; }
.product-carousel-next { right: 12px; }

.product-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.product-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(32, 33, 38, 0.24);
  cursor: pointer;
  transition: width 200ms ease, background 200ms ease;
}

.product-carousel-dots button[aria-current="true"] {
  width: 26px;
  background: var(--accent);
}

@media (max-width: 640px) {
  .product-carousel {
    width: 100%;
    margin-bottom: 24px;
  }

  .product-carousel-viewport {
    border-radius: 14px;
  }

  .product-carousel-arrow {
    top: calc(50% - 20px);
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .product-carousel-prev { left: 8px; }
  .product-carousel-next { right: 8px; }

  .product-carousel-slide figcaption {
    padding: 11px 48px;
    font-size: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-carousel-track { transition: none; }
}

.sales-copy .purchase-note {
  display: block;
  width: min(100%, 560px);
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.4;
  text-align: center;
}

.stage-section {
  padding: 0 0 clamp(44px, 4.5vw, 60px);
  background: var(--paper);
}

.stage-list {
  border-top: 1px solid var(--line);
}

.stage-row {
  display: grid;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.58fr 1.42fr;
  gap: 38px;
}

.stage-row h3 {
  margin: 0;
  color: var(--red);
  font-size: clamp(2.5rem, 3.6vw, 3.4rem);
}

.stage-row p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.package-section {
  padding: clamp(48px, 4.5vw, 62px) 0;
  background: linear-gradient(135deg, #d11d37 0%, #a9142a 100%);
  color: #fff;
}

.package-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 52px;
}

.package-grid h2 {
  margin-bottom: 26px;
}

.package-list {
  border-top: 1px solid rgba(255, 255, 255, 0.55);
}

.package-list div {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  justify-content: space-between;
  gap: 30px;
}

.package-list strong {
  flex: 0 0 175px;
  font-family: var(--display);
  font-size: 1.45rem;
  white-space: nowrap;
}

.package-list span {
  min-width: 0;
  flex: 1;
  max-width: 430px;
  color: #ffe0e2;
  text-align: right;
}

.faq-section {
  padding: clamp(48px, 4.5vw, 62px) 0;
  background: var(--paper);
}

.faq-section h2 {
  margin-bottom: clamp(32px, 3.5vw, 42px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 50px 24px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 0;
  color: var(--red);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  padding-bottom: 26px;
  color: var(--muted);
}

/* Personalized call */
.booking-hero {
  overflow: hidden;
  padding: clamp(44px, 5vw, 68px) 0 clamp(56px, 6vw, 82px);
}

.booking-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(42px, 5vw, 64px);
}

.booking-grid-single {
  max-width: 760px;
  grid-template-columns: 1fr;
}

.booking-hero-oeil .booking-grid-single,
.booking-process-oeil .booking-process-grid-single {
  max-width: 560px;
}

.booking-grid-single .booking-visual {
  width: min(100%, 540px);
  margin: 0 auto 30px;
}

.booking-hero-oeil .booking-grid-single .booking-visual {
  width: min(100%, 560px);
}

.booking-copy h1 {
  margin-bottom: 26px;
  font-size: clamp(3.1rem, 4.2vw, 4rem);
}

.booking-copy .lead {
  margin-bottom: 26px;
}

.booking-visual,
.booking-process-visual {
  position: relative;
  isolation: isolate;
}

.booking-visual::before {
  position: absolute;
  z-index: -1;
  top: -7%;
  right: -8%;
  width: 88%;
  height: 88%;
  border-radius: 38% 62% 48% 52%;
  background: linear-gradient(145deg, rgba(209, 29, 55, 0.18), rgba(209, 29, 55, 0.04));
  content: "";
}

.booking-visual img,
.booking-process-visual img {
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(32, 33, 38, 0.16);
}

.booking-cases-section,
.booking-process-section {
  padding: clamp(52px, 5vw, 70px) 0;
}

.booking-section-intro {
  margin-bottom: clamp(28px, 3vw, 38px);
}

.booking-cases {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.booking-cases article {
  padding: 32px 34px;
}

.booking-cases article + article {
  border-left: 1px solid var(--line);
}

.booking-cases h3 {
  margin-bottom: 14px;
  font-size: 1.58rem;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.booking-cases p {
  margin: 0;
  color: var(--muted);
}

.booking-process-section {
  background: var(--white);
}

.booking-process-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(42px, 5vw, 66px);
}

.booking-process-grid-single {
  max-width: 760px;
  grid-template-columns: 1fr;
}

.booking-process-copy h2 {
  margin-bottom: 24px;
}

.booking-process-copy .lead {
  margin-bottom: 34px;
}

.booking-steps {
  border-top: 1px solid var(--line);
}

.booking-steps + .payment-button {
  margin-top: 24px;
}

.booking-step {
  display: grid;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.48fr 1fr;
  gap: 28px;
}

.booking-step strong {
  color: var(--red);
  font-size: 1rem;
}

.booking-step p {
  margin: 0;
  color: var(--muted);
}

.calendar-section {
  padding: clamp(52px, 5vw, 70px) 0;
  background: #fff;
}

.calendar-intro {
  display: grid;
  margin-bottom: 36px;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
}

.calendar-intro h2,
.calendar-intro .lead {
  margin-bottom: 0;
}

.calendar-shell {
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 28px 75px rgba(32, 33, 38, 0.1);
}

.calendar-placeholder {
  display: grid;
  min-height: 650px;
  place-items: center;
  padding: 50px;
  text-align: center;
}

.calendar-placeholder p {
  max-width: 600px;
  color: var(--muted);
}

/* Legal */
.legal-content h1 {
  margin-bottom: 50px;
}

.legal-content section {
  padding: 50px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 24px;
  font-size: 3rem;
}

.legal-content h3 {
  margin-top: 34px;
  font-family: var(--body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.7;
}

.setup-warning {
  margin-bottom: 55px;
  border: 1px solid rgba(209, 29, 55, 0.45);
  border-radius: 14px;
  padding: 20px;
  background: #fff;
}

/* Footer */
.site-footer {
  padding: 45px 0 28px;
  border-top: 1px solid #3e4042;
  background: #202126;
  color: #fff;
}

.footer-main {
  display: flex;
  padding-bottom: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
}

.footer-links a {
  color: #bfc1c3;
  font-size: 0.78rem;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid #3e4042;
  color: #86888a;
  font-size: 0.73rem;
}

@media (max-width: 920px) {
  .sales-hero-left-intro .sales-copy > h1,
  .sales-hero-left-intro .sales-copy > .lead {
    text-align: left;
  }

  .problem-section-entretien + .stage-section .stage-row {
    grid-template-columns: minmax(210px, 0.8fr) 1.2fr;
    gap: 24px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 48px), 680px);
  }

  .landing-grid,
  .booking-grid,
  .booking-process-grid,
  .section-intro,
  .inside-layout,
  .creator-grid,
  .final-grid,
  .package-grid,
  .calendar-intro {
    grid-template-columns: 1fr;
  }

  .next-offer-grid {
    min-height: 0;
    grid-template-areas:
      "copy"
      "visual"
      "actions";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 32px;
  }

  .next-offer-copy {
    align-self: auto;
  }

  .next-offer-visual img,
  .next-offer-guide .next-offer-visual img {
    width: min(100%, 460px);
    max-height: 470px;
  }

  .landing-grid,
  .booking-grid {
    gap: 42px;
  }

  .hero-product,
  .booking-visual,
  .booking-process-visual {
    width: min(100%, 540px);
    margin-inline: auto;
  }

  .section-intro,
  .calendar-intro {
    gap: 24px;
  }

  .inside-layout,
  .creator-grid,
  .final-grid,
  .package-grid,
  .booking-process-grid {
    gap: 40px;
  }

  .creator-mark {
    min-height: 240px;
  }

}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .topbar {
    display: none;
  }

  .container,
  .narrow {
    width: min(calc(100% - 32px), var(--max));
  }

  h1,
  .hero-copy h1,
  .sales-copy h1,
  .booking-copy h1 {
    font-size: clamp(2.55rem, 11vw, 3.15rem);
    line-height: 1.01;
  }

  h2 {
    font-size: clamp(2.15rem, 9.5vw, 2.7rem);
  }

  .lead {
    font-size: 1.03rem;
    line-height: 1.52;
  }

  .topbar-inner {
    min-height: 64px;
  }

  .brand {
    font-size: 1.1rem;
  }

  .brand-mark {
    width: 23px;
    height: 23px;
  }

  .topbar-cta {
    display: none;
  }

  .landing-hero {
    padding: 26px 0 48px;
  }

  .landing-hero-single {
    padding-bottom: 24px;
  }

  .hero-tiktok-video {
    width: 100%;
    max-width: none;
    margin-bottom: 16px;
    border-radius: 17px;
    box-shadow: 0 16px 36px rgba(32, 33, 38, 0.13);
  }

  .hero-tiktok-video video {
    aspect-ratio: 1;
    border-radius: 17px;
    object-position: center 53%;
  }

  .hero-copy .lead {
    margin-bottom: 16px;
  }

  .next-offer-grid {
    gap: 25px;
    padding: 42px 0;
  }

  .next-offer-copy h3 {
    margin-bottom: 16px;
    font-size: clamp(2.05rem, 10vw, 2.55rem);
  }

  .next-offer-copy > p:last-child {
    font-size: 1rem;
    line-height: 1.52;
  }

  .next-offer-visual img,
  .next-offer-guide .next-offer-visual img {
    width: min(100%, 390px);
    max-height: 430px;
    border-radius: 16px;
    box-shadow: 0 20px 44px rgba(32, 33, 38, 0.16);
  }

  .next-offer-guide .next-offer-visual img {
    max-height: 380px;
  }

  .next-offer-actions .payment-button {
    min-height: 62px;
  }

  .offer-more {
    margin-top: 13px;
  }

  .booking-hero {
    padding: 34px 0 48px;
  }

  .landing-grid,
  .booking-grid {
    gap: 34px;
  }

  .creator-section,
  .offer-section,
  .inside-section,
  .booking-cases-section,
  .booking-process-section,
  .calendar-section,
  .legal-content {
    padding: 44px 0;
  }

  .sales-hero {
    padding: 38px 0 44px;
  }

  .problem-section {
    padding: 40px 0 24px;
  }

  .stage-section {
    padding: 0 0 36px;
  }

  .package-section,
  .faq-section,
  .final-capture {
    padding: 40px 0;
  }

  .faq-section h2 {
    margin-bottom: 30px;
  }

  .section-intro,
  .booking-section-intro {
    margin-bottom: 24px;
  }

  .inside-layout,
  .creator-grid,
  .final-grid,
  .package-grid,
  .booking-process-grid {
    gap: 32px;
  }

  .calendar-intro {
    margin-bottom: 28px;
  }

  .capture-box {
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 20px 45px rgba(32, 33, 38, 0.12);
  }

  .capture-row {
    grid-template-columns: 1fr;
  }

  .capture-row input {
    border: 1px solid var(--line);
  }

  .capture-row .button {
    width: 100%;
  }

  .hero-product::before {
    top: -5%;
    right: -4%;
  }

  .booking-visual::before {
    top: -5%;
    right: -4%;
  }

  .signal-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .signal-item {
    padding: 18px 7px;
  }

  .signal-item + .signal-item {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .signal-item strong {
    display: grid;
    min-height: 2.2em;
    place-items: center;
    font-size: 1.08rem;
    line-height: 1.1;
  }

  .signal-item span {
    display: block;
    margin-top: 5px;
    font-size: 0.68rem;
    line-height: 1.25;
  }

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

  .symptom,
  .symptom:nth-child(even) {
    min-height: 0;
    padding: 25px 0;
    border-left: 0;
  }

  .inside-item,
  .stage-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .inside-item strong {
    font-size: 1.9rem;
  }

  .package-list div {
    display: block;
  }

  .booking-cases {
    grid-template-columns: 1fr;
  }

  .booking-cases article {
    padding: 25px 0;
  }

  .booking-cases article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .booking-step {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .package-list span {
    display: block;
    margin-top: 5px;
    text-align: left;
  }

  .sticky-mobile-cta {
    position: fixed;
    z-index: 50;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
  }

  .sticky-mobile-cta .button {
    width: 100%;
    box-shadow: 0 12px 28px rgba(172, 21, 43, 0.28);
  }

  .footer-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Conversion architecture: one method, three targeted services */
.offer-router {
  padding: clamp(54px, 6vw, 82px) 0;
  border-top: 1px solid var(--line);
  background: #f0ede7;
}

.offer-router-intro {
  max-width: 720px;
  margin: 0 auto clamp(38px, 5vw, 58px);
  text-align: center;
}

.offer-router-intro h2 {
  margin-bottom: 20px;
}

.offer-router-intro .lead {
  margin-inline: auto;
}

.offer-core-card {
  display: grid;
  max-width: 980px;
  margin: 0 auto clamp(54px, 6vw, 76px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 24px 65px rgba(32, 33, 38, 0.1);
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.offer-core-copy {
  padding: clamp(32px, 5vw, 58px);
}

.offer-core-copy h3,
.offer-support-copy h3 {
  margin-bottom: 15px;
}

.offer-core-copy > p:not(.kicker),
.offer-support-copy > p:not(.kicker) {
  color: var(--muted);
}

.offer-core-card > img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.offer-compact-list {
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.offer-compact-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 22px;
  font-weight: 650;
}

.offer-compact-list li::before {
  position: absolute;
  top: .52em;
  left: 0;
  width: 10px;
  height: 6px;
  border-radius: 99px;
  background: var(--red);
  content: "";
}

.offer-card-actions,
.offer-support-copy {
  display: flex;
  flex-direction: column;
}

.offer-card-actions .button,
.offer-support-copy .button {
  width: 100%;
}

.offer-support-heading {
  max-width: 680px;
  margin: 0 auto 30px;
  text-align: center;
}

.offer-support-heading h3 {
  font-size: clamp(2rem, 4vw, 3rem);
}

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

.offer-support-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  flex-direction: column;
}

.offer-support-card > img {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  background: #dedad3;
  object-fit: cover;
}

.offer-support-copy {
  height: 100%;
  padding: 26px;
}

.offer-support-copy h3 {
  font-size: clamp(1.85rem, 2.8vw, 2.5rem);
}

.offer-boundary {
  margin: auto 0 20px;
  padding-top: 18px;
  font-size: .78rem;
  font-weight: 750;
  line-height: 1.4;
}

.trust-statement {
  display: grid;
  max-width: 980px;
  margin: 28px auto 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  grid-template-columns: .75fr 1.25fr;
  gap: 28px;
}

.trust-statement strong {
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.05;
}

.trust-statement span {
  color: var(--muted);
}

@media (max-width: 920px) {
  .offer-core-card {
    max-width: 620px;
    grid-template-columns: 1fr;
  }

  .offer-core-card > img {
    min-height: 0;
    max-height: 440px;
    grid-row: 1;
  }

  .offer-support-grid {
    max-width: 620px;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }

  .offer-support-card {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .offer-support-card > img {
    height: 100%;
    aspect-ratio: auto;
  }
}

@media (max-width: 640px) {
  .offer-router {
    padding: 44px 0;
  }

  .offer-router-intro {
    margin-bottom: 30px;
    text-align: left;
  }

  .offer-core-card {
    margin-bottom: 48px;
    border-radius: 17px;
  }

  .offer-core-card > img {
    max-height: 330px;
  }

  .offer-core-copy,
  .offer-support-copy {
    padding: 24px 20px;
  }

  .offer-support-heading {
    text-align: left;
  }

  .offer-support-grid {
    gap: 16px;
  }

  .offer-support-card {
    display: flex;
    border-radius: 17px;
  }

  .offer-support-card > img {
    height: auto;
    aspect-ratio: 1.45 / 1;
  }

  .trust-statement {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Proof of method and clearer product boundaries */
.evidence-section {
  padding: clamp(52px, 6vw, 82px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ece8e1;
}

.evidence-oeil {
  background: #202126;
  color: #fff;
}

.evidence-guide {
  background: #202126;
  color: #fff;
}

.evidence-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 6vw, 74px);
}

.evidence-copy h2 {
  margin-bottom: 22px;
}

.evidence-copy .lead {
  margin-bottom: 20px;
}

.evidence-oeil .evidence-copy .lead,
.evidence-oeil .evidence-note,
.evidence-oeil .evidence-disclaimer,
.evidence-guide .evidence-copy .lead,
.evidence-guide .evidence-note,
.evidence-guide .evidence-disclaimer {
  color: #c8c9cb;
}

.evidence-note,
.evidence-disclaimer {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.5;
}

.evidence-disclaimer {
  margin-top: 24px;
  text-align: right;
}

.cv-proof-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cv-proof-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(32, 33, 38, .14);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 55px rgba(32, 33, 38, .16);
}

.cv-proof-card span {
  display: block;
  padding: 12px 14px;
  background: #202126;
  color: #fff;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.cv-proof-after span {
  background: var(--red);
}

.cv-proof-card img {
  display: block;
  width: 100%;
}

.point-scope-section {
  padding: clamp(52px, 6vw, 72px) 0;
  background: var(--paper);
}

.point-scope-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  gap: clamp(38px, 7vw, 86px);
}

.point-scope-grid h2 {
  margin-bottom: 20px;
}

.point-boundary {
  padding: 28px;
  border-left: 4px solid var(--red);
  background: #fff;
}

.point-boundary strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: 1.45rem;
}

.point-boundary p {
  margin: 0 0 22px;
  color: var(--muted);
}

.point-boundary p:last-child {
  margin-bottom: 0;
}

@media (max-width: 920px) {
  .evidence-layout,
  .point-scope-grid {
    grid-template-columns: 1fr;
  }

  .evidence-copy,
  .cv-proof-grid,
  .point-scope-grid {
    width: min(100%, 620px);
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .evidence-section,
  .point-scope-section {
    padding: 42px 0;
  }

  .evidence-layout {
    gap: 28px;
  }

  .cv-proof-grid {
    gap: 9px;
  }

  .cv-proof-card {
    border-radius: 10px;
  }

  .cv-proof-card span {
    min-height: 48px;
    padding: 10px;
    font-size: .64rem;
  }

  .evidence-disclaimer {
    text-align: left;
  }

  .point-boundary {
    padding: 22px 20px;
  }

  .problem-section-entretien + .stage-section .stage-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .problem-section-entretien + .stage-section .stage-row h3 {
    font-size: 2.1rem;
  }
}

/* Operational pages after conversion */
.operational-footer .footer-main {
  padding-bottom: 24px;
}

.confirmation-page {
  background: var(--paper);
}

.confirmation-shell {
  display: grid;
  min-height: calc(100svh - 170px);
  padding: 48px 18px;
  place-items: center;
}

.confirmation-card {
  width: min(100%, 620px);
  padding: 42px;
  border-top: 5px solid var(--red);
  background: #fff;
  box-shadow: 0 24px 70px rgba(32, 33, 38, .1);
}

.confirmation-card > .brand {
  margin-bottom: 42px;
}

.confirmation-check {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  place-items: center;
  font-size: 1.7rem;
  font-weight: 900;
}

.confirmation-card h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 5.1rem);
}

.confirmation-steps {
  display: grid;
  margin: 30px 0 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 16px;
}

.confirmation-steps > div {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.confirmation-steps b {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  place-items: center;
  font-size: .72rem;
}

.confirmation-note {
  display: grid;
  margin-top: 24px;
  padding: 20px;
  background: #202126;
  color: #fff;
  gap: 5px;
}

.confirmation-note strong {
  font-family: var(--display);
  font-size: 1.35rem;
}

.confirmation-note span {
  color: #c8c9cb;
}

.confirmation-support {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: .8rem;
}

.confirmation-support a {
  color: var(--ink);
  font-weight: 800;
}

.upload-next-steps {
  display: grid;
  width: min(100%, 560px);
  margin: 26px auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.upload-next-steps p {
  display: grid;
  margin: 0;
  padding: 18px 0;
  text-align: left;
  gap: 4px;
}

.upload-next-steps p + p {
  border-top: 1px solid var(--line);
}

.upload-next-steps strong {
  font-family: var(--display);
  font-size: 1.35rem;
}

.upload-next-steps span {
  color: var(--muted);
  font-size: .86rem;
}

@media (max-width: 640px) {
  .confirmation-shell {
    padding: 24px 14px;
  }

  .confirmation-card {
    padding: 30px 22px;
  }

  .confirmation-card > .brand {
    margin-bottom: 34px;
  }

  .legal-content h1 {
    margin-bottom: 34px;
  }

  .legal-content section {
    padding: 34px 0;
  }

  .legal-content h2 {
    font-size: 2.35rem;
  }
}
