/* style.css — PrismData Styles */

/* ========== COLOR VARIABLES ========== */
:root {
  --black: #000;
  --white: #fff;
  --green-light: rgb(215, 251, 193);
  --green: rgb(77, 189, 38);
  --gray-1: rgb(162, 162, 162);
  --gray-text: rgb(133, 133, 133);
  --gray-2: rgb(222, 222, 222);
  --gray-3: rgb(231, 231, 231);
  --gray-4: rgb(213, 213, 213);
  --gray-5: rgb(226, 226, 226);
  --gray-6: rgb(184, 184, 184);
  --gray-bg: rgb(247, 247, 247);
}

/* ========== UTILITY CLASSES ========== */
.text-gray-1 { color: var(--gray-1); }
.text-gray-text { color: var(--gray-text); }
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.text-black { color: var(--black); }
.bg-black { background-color: var(--black); }
.bg-white { background-color: var(--white); }
.bg-green-light { background-color: var(--green-light); }
.border-gray-2 { border-color: var(--gray-2); }
.border-gray-3 { border-color: var(--gray-3); }
.border-gray-4 { border-color: var(--gray-4); }
.border-gray-5 { border-color: var(--gray-5); }
.bg-gray-5 { background-color: var(--gray-5); }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }

.leading-none { line-height: 1; }

.opacity-40 { opacity: .4; }
.opacity-50 { opacity: .5; }

.whitespace-nowrap { white-space: nowrap; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.hidden { display: none; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.w-full { width: 100%; }
.select-none { user-select: none; }
.cursor-grab { cursor: grab; }
.cursor-grab:active { cursor: grabbing; }
.origin-left { transform-origin: left center; }
.pointer-events-none { pointer-events: none; }
.fill-current { fill: currentColor; }
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-r { border-right-width: 1px; }
.rounded-full { border-radius: 9999px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.cursor-pointer { cursor: pointer; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.z-2 { z-index: 2; }
.z-3 { z-index: 3; }
.z-5 { z-index: 5; }
.z-\[100\] { z-index: 100; }
.z-\[101\] { z-index: 101; }
.order-1 { order: 1; }
.order-2 { order: 2; }
.w-auto { width: auto; }
.top-1\/2 { top: 50%; }
.-translate-y-1\/2 { transform: translateY(-50%); }

/* ========== TEXT SIZE CLASSES (rem = viewport-proportional) ========== */
.text-10 { font-size: 1rem; }
.text-14 { font-size: 1.4rem; }
.text-17 { font-size: 1.7rem; }
.text-20 { font-size: 2rem; }
.text-23 { font-size: 2.3rem; }
.text-32 { font-size: 3.2rem; }
.text-42 { font-size: 4.2rem; }
.text-52 { font-size: 5.2rem; }
.text-120 { font-size: 12rem; }

/* ========== SPACING UTILITIES ========== */
.mt-5 { margin-top: .5rem; }
.mt-8 { margin-top: .8rem; }
.mt-10 { margin-top: 1rem; }
.mt-12 { margin-top: 1.2rem; }
.mt-15 { margin-top: 1.5rem; }
.mt-20 { margin-top: 2rem; }
.mt-25 { margin-top: 2.5rem; }
.mt-30 { margin-top: 3rem; }
.mt-40 { margin-top: 4rem; }
.mt-50 { margin-top: 5rem; }
.mt-70 { margin-top: 7rem; }
.mt-80 { margin-top: 8rem; }
.mt-90 { margin-top: 9rem; }
.mt-100 { margin-top: 10rem; }
.-mt-5 { margin-top: -.5rem; }
.-mt-10 { margin-top: -1rem; }
.-mt-20 { margin-top: -2rem; }
.-mt-35 { margin-top: -3.5rem; }

.mb-15 { margin-bottom: 1.5rem; }
.mb-25 { margin-bottom: 2.5rem; }
.mb-40 { margin-bottom: 4rem; }
.mb-50 { margin-bottom: 5rem; }
.mb-75 { margin-bottom: 7.5rem; }
.mb-100 { margin-bottom: 10rem; }
.mb-130 { margin-bottom: 13rem; }
.mb-150 { margin-bottom: 15rem; }
.mb-200 { margin-bottom: 20rem; }
.mb-250 { margin-bottom: 25rem; }
.-mb-8 { margin-bottom: -.8rem; }
.-mb-20 { margin-bottom: -2rem; }

.ml-20 { margin-left: 2rem; }
.mr-5 { margin-right: .5rem; }
.mr-12 { margin-right: 1.2rem; }
.-mr-8 { margin-right: -.8rem; }

.my-100 { margin-top: 10rem; margin-bottom: 10rem; }

.p-5 { padding: .5rem; }
.p-10 { padding: 1rem; }
.p-15 { padding: 1.5rem; }
.p-25 { padding: 2.5rem; }

.px-10 { padding-left: 1rem; padding-right: 1rem; }
.px-12 { padding-left: 1.2rem; padding-right: 1.2rem; }
.px-14 { padding-left: 1.4rem; padding-right: 1.4rem; }
.px-15 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-20 { padding-left: 2rem; padding-right: 2rem; }
.px-25 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-30 { padding-left: 3rem; padding-right: 3rem; }

.py-8 { padding-top: .8rem; padding-bottom: .8rem; }
.py-10 { padding-top: 1rem; padding-bottom: 1rem; }
.py-15 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-20 { padding-top: 2rem; padding-bottom: 2rem; }
.py-25 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-30 { padding-top: 3rem; padding-bottom: 3rem; }

.pt-25 { padding-top: 2.5rem; }
.pt-30 { padding-top: 3rem; }
.pt-45 { padding-top: 4.5rem; }
.pt-72 { padding-top: 7.2rem; }
.pt-180 { padding-top: 18rem; }
.pb-125 { padding-bottom: 12.5rem; }
.pb-150 { padding-bottom: 15rem; }
.pb-300 { padding-bottom: 30rem; }
.pb-10 { padding-bottom: 1rem; }
.pb-12 { padding-bottom: 1.2rem; }
.pb-20 { padding-bottom: 2rem; }
.pb-25 { padding-bottom: 2.5rem; }
.pb-30 { padding-bottom: 3rem; }
.pl-10 { padding-left: 1rem; }
.pl-20 { padding-left: 2rem; }
.pr-15 { padding-right: 1.5rem; }
.pr-30 { padding-right: 3rem; }

/* Size utilities */
.size-12 { height: 1.2rem; width: 1.2rem; }
.size-16 { height: 1.6rem; width: 1.6rem; }
.size-50 { height: 5rem; width: 5rem; }
.size-full { height: 100%; width: 100%; }

.h-10 { height: 1rem; }
.h-12 { height: 1.2rem; }
.h-20 { height: 2rem; }
.h-24 { height: 2.4rem; }
.h-30 { height: 3rem; }
.h-40 { height: 4rem; }
.h-45 { height: 4.5rem; }
.h-50 { height: 5rem; }
.h-60 { height: 6rem; }
.h-70 { height: 7rem; }
.h-80 { height: 8rem; }

/* Gap utilities */
.gap-x-5 { column-gap: .5rem; }
.gap-x-8 { column-gap: .8rem; }
.gap-x-12 { column-gap: 1.2rem; }
.gap-x-15 { column-gap: 1.5rem; }
.gap-x-16 { column-gap: 1.6rem; }
.gap-x-17 { column-gap: 1.7rem; }
.gap-x-20 { column-gap: 2rem; }
.gap-x-30 { column-gap: 3rem; }

.gap-y-8 { row-gap: .8rem; }
.gap-y-10 { row-gap: 1rem; }
.gap-y-12 { row-gap: 1.2rem; }
.gap-y-15 { row-gap: 1.5rem; }
.gap-y-20 { row-gap: 2rem; }
.gap-y-30 { row-gap: 3rem; }
.gap-y-40 { row-gap: 4rem; }
.gap-y-50 { row-gap: 5rem; }
.gap-y-60 { row-gap: 6rem; }
.gap-y-70 { row-gap: 7rem; }
.gap-y-75 { row-gap: 7.5rem; }
.gap-y-100 { row-gap: 10rem; }
.gap-y-150 { row-gap: 15rem; }

/* Grid cols */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-6 { grid-column: span 6 / span 6; }
.col-span-4 { grid-column: span 4 / span 4; }
.col-start-3 { grid-column-start: 3; }

/* Line height */
.leading-1-08 { line-height: 1.08; }
.leading-1-1 { line-height: 1.1; }

/* Rounded */
.rounded-4 { border-radius: .4rem; }
.rounded-7 { border-radius: .7rem; }

/* ========== RESPONSIVE (min-width: 650px) ========== */
@media (min-width: 650px) {
  .s\:fixed { position: fixed; }
  .s\:block { display: block; }
  .s\:flex { display: flex; }
  .s\:hidden { display: none; }
  .s\:inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

  .s\:flex-row { flex-direction: row; }
  .s\:flex-1 { flex: 1 1 0%; }
  .s\:items-center { align-items: center; }
  .s\:justify-between { justify-content: space-between; }
  .s\:justify-center { justify-content: center; }

  .s\:order-1 { order: 1; }
  .s\:order-2 { order: 2; }
  .s\:order-3 { order: 3; }
  .s\:order-4 { order: 4; }

  .s\:col-span-1 { grid-column: span 1 / span 1; }
  .s\:col-span-2 { grid-column: span 2 / span 2; }
  .s\:col-span-3 { grid-column: span 3 / span 3; }
  .s\:col-span-4 { grid-column: span 4 / span 4; }
  .s\:col-span-5 { grid-column: span 5 / span 5; }
  .s\:col-span-6 { grid-column: span 6 / span 6; }
  .s\:col-span-7 { grid-column: span 7 / span 7; }
  .s\:col-span-8 { grid-column: span 8 / span 8; }
  .s\:col-span-9 { grid-column: span 9 / span 9; }
  .s\:col-span-10 { grid-column: span 10 / span 10; }
  .s\:col-span-12 { grid-column: span 12 / span 12; }

  .s\:col-start-2 { grid-column-start: 2; }
  .s\:col-start-5 { grid-column-start: 5; }
  .s\:col-start-6 { grid-column-start: 6; }
  .s\:col-start-7 { grid-column-start: 7; }
  .s\:col-start-8 { grid-column-start: 8; }
  .s\:col-start-10 { grid-column-start: 10; }
  .s\:col-start-11 { grid-column-start: 11; }

  .s\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .s\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .s\:grid-cols-8 { grid-template-columns: repeat(8, minmax(0, 1fr)); }

  .s\:text-17 { font-size: 1.7rem; }
  .s\:text-32 { font-size: 3.2rem; }
  .s\:text-155 { font-size: 15.5rem; }

  .s\:mt-0 { margin-top: 0; }
  .s\:mt-25 { margin-top: 2.5rem; }
  .s\:mt-40 { margin-top: 4rem; }
  .s\:mt-50 { margin-top: 5rem; }
  .s\:mt-100 { margin-top: 10rem; }
  .s\:mt-150 { margin-top: 15rem; }
  .s\:mt-200 { margin-top: 20rem; }
  .s\:mt-350 { margin-top: 35rem; }
  .s\:-mt-10 { margin-top: -1rem; }
  .s\:-mt-20 { margin-top: -2rem; }
  .s\:-mt-30 { margin-top: -3rem; }
  .s\:-mt-32 { margin-top: -3.2rem; }
  .s\:-mt-65 { margin-top: -6.5rem; }

  .s\:mb-0 { margin-bottom: 0; }
  .s\:mb-75 { margin-bottom: 7.5rem; }
  .s\:mb-135 { margin-bottom: 13.5rem; }
  .s\:mb-250 { margin-bottom: 25rem; }
  .s\:mb-275 { margin-bottom: 27.5rem; }
  .s\:mb-320 { margin-bottom: 32rem; }
  .s\:mb-350 { margin-bottom: 35rem; }
  .s\:mb-400 { margin-bottom: 40rem; }

  .s\:mr-17 { margin-right: 1.7rem; }

  .s\:my-0 { margin-top: 0; margin-bottom: 0; }

  .s\:px-20 { padding-left: 2rem; padding-right: 2rem; }
  .s\:px-30 { padding-left: 3rem; padding-right: 3rem; }
  .s\:px-40 { padding-left: 4rem; padding-right: 4rem; }

  .s\:py-0 { padding-top: 0; padding-bottom: 0; }
  .s\:py-20 { padding-top: 2rem; padding-bottom: 2rem; }
  .s\:py-30 { padding-top: 3rem; padding-bottom: 3rem; }
  .s\:py-40 { padding-top: 4rem; padding-bottom: 4rem; }
  .s\:py-50 { padding-top: 5rem; padding-bottom: 5rem; }

  .s\:pt-30 { padding-top: 3rem; }
  .s\:pt-50 { padding-top: 5rem; }
  .s\:pt-95 { padding-top: 9.5rem; }
  .s\:pt-\[33\.5rem\] { padding-top: 33.5rem; }

  .s\:pb-20 { padding-bottom: 2rem; }
  .s\:pb-60 { padding-bottom: 6rem; }
  .s\:pb-100 { padding-bottom: 10rem; }
  .s\:pb-200 { padding-bottom: 20rem; }
  .s\:pb-300 { padding-bottom: 30rem; }
  .s\:pb-350 { padding-bottom: 35rem; }
  /* Testimonials carousel — desktop card sizing */
  .js-slide { min-width: 59.8rem !important; max-width: 59.8rem !important; margin-right: 1.7rem !important; }
  .js-slide > div { padding: 5rem 4rem !important; min-height: 54.6rem !important; }

  .s\:pr-40 { padding-right: 4rem; }
  .s\:pr-70 { padding-right: 7rem; }
  .s\:pr-100 { padding-right: 10rem; }

  .s\:gap-x-17 { column-gap: 1.7rem; }
  .s\:gap-x-40 { column-gap: 4rem; }

  .s\:gap-y-0 { row-gap: 0; }
  .s\:gap-y-15 { row-gap: 1.5rem; }
  .s\:gap-y-45 { row-gap: 4.5rem; }
  .s\:gap-y-75 { row-gap: 7.5rem; }
  .s\:gap-y-90 { row-gap: 9rem; }

  .s\:size-22 { height: 2.2rem; width: 2.2rem; }
  .s\:h-75 { height: 7.5rem; }
  .s\:h-full-screen { height: 100svh; }
}

/* ========== MAX-WIDTH MOBILE ========== */
@media (max-width: 649px) {
  .max-s\:w-full { width: 100%; }
  .max-s\:first\:border-t:first-child { border-top-width: 1px; }
}

/* Progress bar height */
.min-h-\[1px\] { min-height: 1px; }

/* ========== PRICING CARD UTILITIES ========== */
.-mx-30 { margin-left: -3rem; margin-right: -3rem; }
.rounded-\[\.4rem\] { border-radius: 0.4rem; }
.rounded-\[\.7rem\] { border-radius: 0.7rem; }
.translate-y-\[\.875em\] { transform: translateY(0.875em); }
.translate-y-\[-1rem\] { transform: translateY(-1rem); }
.gap-x-\[\.085em\] { column-gap: 0.085em; }
@media (max-width: 649px) { .max-s\:\!text-57 { font-size: 5.7rem !important; } }

/* Bouton CTA — double label hover */
.btn { font-size: 2rem; font-weight: 500; text-decoration: none; display: flex; }
.stack { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; }
.btn__label { display: block; transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1); }
.btn__label.--2 { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; transform: translateY(100%); }
.has-hover .btn:hover .btn__label.--1 { transform: translateY(-100%); }
.has-hover .btn:hover .btn__label.--2 { transform: translateY(0); }

/* ========== HEADER / NAVIGATION ========== */
.sh {
  /* positioned via utility classes: absolute top-0 left-0 w-full z-[100] */
}

/* ========== HERO ========== */
/* The hero uses utility classes from the source:
   s:h-full-screen pt-72 s:pt-95 pb-20 flex
   Two stacked .site-grid rows inside .site-max */

/* .space — indentation inline pour le H2 éditorial (≈ 2 colonnes) */
/* Supporte les variables CSS custom --space et --space-s */
.space {
  display: inline-flex;
  min-width: var(--space, 20rem);
  max-width: var(--space, 20rem);
}
@media (max-width: 649px) {
  .space { min-width: var(--space-s, 10.6rem); max-width: var(--space-s, 10.6rem); }
}

/* Section Instructor — bio text */
.txt > :not(:last-child) { margin-bottom: 2.5rem; }
.txt p { color: #a2a2a2; font-weight: 400; }
.txt strong { color: #000; font-weight: 500; }

/* Liste numérotée section "who" */
.list-col > div {
  border-bottom: 1px solid var(--gray-5);
}
@media (max-width: 649px) {
  .list-col > div:first-child { border-top: 1px solid var(--gray-5); }
}

/* Hero main image wrapper — space on mobile only */
.hero-main-wrap {
  padding-top: 3rem;
  padding-bottom: 2rem;
}
@media (min-width: 650px) {
  .hero-main-wrap {
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* split-fix: tightens line-height for split-line text */
.split-fix {
  line-height: 1.05;
}
.split-fix > :not(:first-child) {
  margin-top: -.1125em;
}

/* max-s:!text-42 — mobile override for the bottom-left h2 */
@media (max-width: 649px) {
  .max-s\:\!text-42 {
    font-size: 4.2rem !important;
  }
}

/* Learn more icon — stacked double-arrow with hover animation */
.learn-more-icon {
  width: 6rem;
  height: 6rem;
}

.learn-more-icon__item {
  transition: transform .75s cubic-bezier(.19, 1, .22, 1);
}

.learn-more-icon__item.--1 {
  transition-delay: .1s;
}

.learn-more-icon__item.--2 {
  transform: translateY(-105%);
  transition-delay: 0s;
}

@media (hover: hover) and (pointer: fine) {
  .h-t:hover .learn-more-icon__item.--1 {
    transform: translateY(105%);
    transition-delay: 0s;
  }
  .h-t:hover .learn-more-icon__item.--2 {
    transform: translateY(0);
    transition-delay: .1s;
  }
}

/* .--t-active state on uline-double: underline always visible */
.uline-double.--t-active:before {
  transform: scaleX(1);
  transform-origin: left;
}

/* ========== COURSE DESCRIPTION ========== */
.course-desc {
  padding: 10rem 1.2rem;
}

@media (min-width: 650px) {
  .course-desc {
    padding: 15rem 2rem;
  }
}

.course-desc__label {
  margin-bottom: 2.5rem;
  color: var(--gray-1);
  font-weight: 400;
}

.course-desc__headline {
  margin-bottom: 5rem;
}

@media (min-width: 650px) {
  .course-desc__headline {
    margin-bottom: 7.5rem;
  }
}

.course-desc__attribution {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

@media (max-width: 649px) {
  .course-desc__attribution {
    flex-direction: column;
  }
}

.course-desc__attribution-left {
  font-size: 2rem;
  font-weight: 500;
}

.course-desc__attribution-right {
  font-size: 1.4rem;
  color: var(--gray-text);
  max-width: 42rem;
  font-weight: 400;
}

@media (max-width: 649px) {
  .course-desc__attribution-right {
    text-align: left;
  }
}

@media (min-width: 650px) {
  .course-desc__attribution-right {
    text-align: right;
  }
}

.course-desc__divider {
  width: 100%;
  height: 1px;
  background: var(--gray-3);
  margin-bottom: 4rem;
}

.course-desc__values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 650px) {
  .course-desc__values {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.7rem;
  }
}

.course-desc__value-label {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gray-text);
  margin-bottom: 1.2rem;
}

.course-desc__value-text {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.2;
  max-width: 38rem;
  color: var(--gray-1);
}

@media (min-width: 650px) {
  .course-desc__value-text {
    font-size: 2rem;
  }
}

/* ========== LESSONS / CURRICULUM ========== */
.lessons { padding: 0; }
@media (min-width: 650px) { .lessons { padding: 0; } }

/* Header */
.lessons__header {
  padding-bottom: 2rem;
}
@media (min-width: 650px) { .lessons__header { padding-top: 2rem; padding-bottom: 2rem; } }

/* Tabs */
.lessons__tab {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  opacity: 0.4;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.lessons__tab.active { opacity: 1; }
@media (hover: hover) and (pointer: fine) { .lessons__tab:hover { opacity: 0.8; } }

/* Scroll container */
.lessons__scroll-container {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 1.2rem;
  cursor: grab;
}
.lessons__scroll-container:active { cursor: grabbing; }
@media (min-width: 650px) { .lessons__scroll-container { padding: 0 2rem; } }
.lessons__scroll-container::-webkit-scrollbar { display: none; }
.lessons__grid { display: none; }
.lessons__grid.active { display: block; }
.lessons__grid .flex { gap: 0; }

/* ============ CARTE ============ */
.lesson-card {
  display: flex;
  position: relative;
  min-width: 34.1rem;
  max-width: 34.1rem;
  height: 58.5rem;
  max-height: 100svh;
  flex-shrink: 0;
  border-right: 1px solid #e2e2e2;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  background: #fff;
}
.lesson-card:first-child { border-left: 1px solid #e2e2e2; }
@media (min-width: 650px) {
  .lesson-card {
    min-width: 46.5rem;
    max-width: 46.5rem;
    height: auto;
    min-height: 58.5rem;
  }
}

.lesson-card__inner {
  position: relative;
  padding: 2rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
@media (min-width: 650px) { .lesson-card__inner { padding: 2rem 3rem; } }

/* Numéro h3 */
.lesson-card__num { line-height: 1.08; }

/* Figure image 16:9 centrée verticalement */
.lesson-card__img {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 26rem;
}
@media (min-width: 650px) { .lesson-card__img { max-width: 35rem; } }
.lesson-card__img > div:first-child { padding-top: 56.25%; }
.lesson-card__img .lesson-card__thumb-overlay {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.lesson-card__thumb-title {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* Contenu */
.lesson-card__content { display: flex; flex-direction: column; align-items: flex-start; }
.lesson-card__symbol { color: #a2a2a2; margin-right: 0.4em; }
.lesson-card__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: normal;
  color: #000;
}
.lesson-card__desc {
  font-size: 2rem;
  line-height: 1.2;
  color: #a2a2a2;
  font-weight: 400;
  margin-top: 1.5rem;
  max-width: 35rem;
}

/* Bouton chapters */
.lesson-card__btn {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  padding: 0.8rem 1.5rem 0.8rem 1rem;
  border: 1px solid #e2e2e2;
  border-radius: 0.4rem;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.5s ease-out;
  display: inline-flex;
  align-items: center;
}
@media (min-width: 650px) { .lesson-card__btn { font-size: 1.7rem; } }
@media (hover: hover) and (pointer: fine) { .lesson-card__btn:hover { background: #f4f4f4; } }
.lesson-card__btn-plus {
  color: #a2a2a2;
  display: inline-flex;
  transform: translateY(-0.1em);
  margin-right: 0.5rem;
}

/* Dropdown chapters */
.lesson-card__dropdown {
  position: absolute;
  bottom: calc(100% + 0.8rem);
  left: 0;
  min-width: 32.5rem;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 0.4rem;
  padding: 1rem;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
.chapters-t:hover + .chapters,
.chapters-t:hover ~ .chapters {
  opacity: 1;
  pointer-events: auto;
}
.lesson-card__dropdown ul {
  display: flex;
  flex-direction: column;
  font-size: 1.7rem;
}
.lesson-card__dropdown li { display: flex; }
.lesson-card__ch-num {
  min-width: 4.5rem;
  max-width: 4.5rem;
}

/* Dark block — now light card style */
.lessons__dark {
  margin-top: 4rem;
  padding-top: 0;
}
@media (min-width: 650px) {
  .lessons__dark {
    margin-top: 5rem;
    padding-top: 0;
  }
}
.lessons__dark-block { }
.lessons__dark h3 { font-size: 2rem; font-weight: 500; line-height: 1.2; margin-bottom: 1.5rem; color: #111; }
.lessons__dark p { font-size: 2rem; line-height: 1.2; color: #a2a2a2; font-weight: 400; margin-bottom: 2rem; }
.lessons__dark-items { display: flex; flex-wrap: wrap; gap: 0.6rem; }
/* Tags — même style que lesson-card__btn, sans le + */
.lessons__dark-item {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: #111;
  padding: 0.8rem 1.5rem;
  border: 1px solid #e2e2e2;
  border-radius: 0.4rem;
  background: #fff;
}
@media (min-width: 650px) { .lessons__dark-item { font-size: 1.7rem; } }
/* Tags "en négatif" — fond noir, texte blanc, même forme */
.lessons__dark-item--neg {
  background: #111;
  color: #fff;
  border-color: #111;
}
/* Tags "positif" — fond vert clair, texte vert foncé */
.lessons__dark-item--pos {
  background: var(--green-light);
  color: #1a5c0a;
  border-color: var(--green-light);
}
/* ========== WHO IS THIS FOR ========== */
.who {
  padding: 10rem 1.2rem;
}

@media (min-width: 650px) {
  .who {
    padding: 15rem 2rem;
  }
}

.who__image {
  width: 100%;
  aspect-ratio: 21/9;
  background: #111;
  border-radius: 1rem;
  margin-bottom: 5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 650px) {
  .who__image {
    margin-bottom: 7.5rem;
  }
}

@media (max-width: 649px) {
  .who__image {
    aspect-ratio: 16/9;
  }
}

.who__image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who__image-mock {
  width: 55%;
  height: 70%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  gap: .8rem;
}

.who__image-mock span:first-child {
  font-size: 2.5rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
}

.who__image-mock span:last-child {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.who__headline {
  margin-bottom: 5rem;
}

@media (min-width: 650px) {
  .who__headline {
    margin-bottom: 7.5rem;
  }
}

.who__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 650px) {
  .who__content {
    grid-template-columns: 1fr 1fr;
    gap: 1.7rem;
  }
}

.who__section-title {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--gray-text);
}

.who__list li {
  font-size: 1.7rem;
  line-height: 1.2;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--gray-3);
  padding-left: 2rem;
  position: relative;
  font-weight: 400;
  color: var(--gray-1);
}

@media (min-width: 650px) {
  .who__list li {
    font-size: 2rem;
  }
}

.who__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gray-4);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 10rem 0;
}

@media (min-width: 650px) {
  .testimonials {
    padding: 15rem 0;
  }
}

.testimonials__header {
  padding: 0 1.2rem;
  margin-bottom: 4rem;
}

@media (min-width: 650px) {
  .testimonials__header {
    padding: 0 2rem;
    margin-bottom: 5rem;
  }
}

.testimonials__heading {
  max-width: 80rem;
}

.testimonials__label {
  padding: 0 1.2rem;
  font-size: 1.4rem;
  color: var(--gray-text);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-weight: 400;
}

@media (min-width: 650px) {
  .testimonials__label {
    padding: 0 2rem;
  }
}

.testimonials__label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-3);
}

.testimonials__scroll {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 1.2rem;
}

@media (min-width: 650px) {
  .testimonials__scroll {
    padding: 0 2rem;
  }
}

.testimonials__scroll::-webkit-scrollbar {
  display: none;
}

.testimonials__grid {
  display: flex;
  gap: 1.7rem;
  padding-bottom: 2rem;
}

.testimonial-card {
  min-width: 32.5rem;
  max-width: 34.1rem;
  flex-shrink: 0;
  border: 1px solid var(--gray-3);
  border-radius: 1rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.testimonial-card__avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-card__quote {
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--gray-1);
  flex: 1;
  font-weight: 400;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.testimonial-card__name {
  font-size: 1.4rem;
  font-weight: 500;
}

.testimonial-card__title {
  font-size: 1.4rem;
  color: var(--gray-text);
  font-weight: 400;
}

/* ========== PRICING ========== */
.pricing {
  padding: 10rem 1.2rem;
}

@media (min-width: 650px) {
  .pricing {
    padding: 15rem 2rem;
  }
}

.pricing__heading {
  margin-bottom: 5rem;
}

@media (min-width: 650px) {
  .pricing__heading {
    margin-bottom: 7.5rem;
  }
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.7rem;
  max-width: 120rem;
  margin: 0 auto;
}

@media (min-width: 650px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  border: 1px solid var(--gray-3);
  border-radius: 1rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

@media (min-width: 650px) {
  .pricing-card {
    padding: 3rem;
  }
}

.pricing-card--popular {
  border-color: var(--gray-4);
}

.pricing-card__badge {
  position: absolute;
  top: -1.2rem;
  left: 2.5rem;
  background: var(--green-light);
  color: var(--black);
  font-size: 1.2rem;
  font-weight: 500;
  padding: .4rem 1.2rem;
  border-radius: 9999px;
  letter-spacing: 0.02em;
}

.pricing-card__tier {
  font-size: 1.4rem;
  color: var(--gray-text);
  margin-bottom: .8rem;
  font-weight: 500;
}

.pricing-card__price {
  font-size: 4.2rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: .4rem;
  line-height: 1;
}

@media (min-width: 650px) {
  .pricing-card__price {
    font-size: 5.2rem;
  }
}

.pricing-card__price-note {
  font-size: 1.4rem;
  color: var(--gray-text);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.pricing-card__cta {
  display: block;
  width: 100%;
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  transition: opacity .15s cubic-bezier(.23, 1, .32, 1);
}

@media (hover: hover) and (pointer: fine) {
  .pricing-card__cta:hover {
    opacity: 0.8;
  }
}

.pricing-card__guarantee {
  font-size: 1.2rem;
  color: var(--gray-text);
  text-align: center;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 400;
}

.pricing-card__feature-check {
  color: var(--green);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: .2rem;
}

.pricing-card__feature--highlight {
  font-weight: 500;
}

/* ========== FAQ ========== */
/* Icône + (dd-plus) */
.dd-plus {
  --size: 2rem;
  --height: 0.2rem;
}
.dd-plus__icon {
  background-color: #b8b8b8;
  width: var(--size);
  height: var(--height);
  position: relative;
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}
.dd-plus__icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #b8b8b8;
  transition: inherit;
  transform: rotate(90deg);
}
.is-active .dd-plus__icon {
  transform: rotate(90deg);
}
.is-active .dd-plus__icon::before {
  transform: rotate(90deg) scaleX(0);
}
/* Réponse : hauteur animée 0 → auto */
.js-dd {
  overflow: hidden;
  transition: height 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ========== INSTRUCTOR ========== */
.instructor {
  padding: 10rem 1.2rem;
}

@media (min-width: 650px) {
  .instructor {
    padding: 15rem 2rem;
  }
}

.instructor__label {
  margin-bottom: 2.5rem;
  color: var(--gray-1);
  font-weight: 400;
}

.instructor__headline {
  margin-bottom: 5rem;
}

@media (min-width: 650px) {
  .instructor__headline {
    margin-bottom: 7.5rem;
  }
}

.instructor__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}

@media (min-width: 650px) {
  .instructor__content {
    grid-template-columns: 1fr 1.5fr;
    gap: 1.7rem;
    margin-bottom: 7.5rem;
  }
}

.instructor__photo {
  aspect-ratio: 3/4;
  background: var(--gray-5);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (max-width: 649px) {
  .instructor__photo {
    max-height: 30rem;
    aspect-ratio: auto;
  }
}

.instructor__photo-placeholder {
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: var(--gray-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.8rem;
  font-weight: 500;
  color: var(--gray-text);
}

.instructor__bio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.instructor__bio p {
  font-size: 1.7rem;
  line-height: 1.2;
  color: var(--gray-1);
  max-width: 56rem;
  font-weight: 400;
}

@media (min-width: 650px) {
  .instructor__bio p {
    font-size: 2rem;
  }
}

.instructor__awards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

@media (min-width: 650px) {
  .instructor__awards {
    grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
    gap: 1.7rem;
  }
}

.instructor__award {
  border: 1px solid var(--gray-3);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.instructor__award-name {
  font-size: 1.4rem;
  font-weight: 500;
}

.instructor__award-count {
  font-size: 1.4rem;
  color: var(--gray-text);
  font-weight: 400;
}

/* ========== FOOTER ========== */
.footer {
  padding: 10rem 1.2rem 0;
  border-top: 1px solid var(--gray-3);
}

@media (min-width: 650px) {
  .footer {
    padding: 10rem 2rem 0;
  }
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

@media (min-width: 650px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 1.7rem;
    margin-bottom: 7.5rem;
  }
}

.footer__section-label {
  font-size: 1.4rem;
  color: var(--gray-text);
  margin-bottom: 2rem;
  font-weight: 400;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.footer__links a {
  font-size: 2.3rem;
  font-weight: 500;
  transition: opacity .15s cubic-bezier(.23, 1, .32, 1);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

@media (min-width: 650px) {
  .footer__links a {
    font-size: 3.2rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .footer__links a:hover {
    opacity: 0.5;
  }
}

.footer__text {
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--gray-text);
  margin-bottom: 2rem;
  max-width: 34rem;
  font-weight: 400;
}

.footer__text-link {
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: .3rem;
  transition: opacity .15s cubic-bezier(.23, 1, .32, 1);
}

@media (hover: hover) and (pointer: fine) {
  .footer__text-link:hover {
    opacity: 0.5;
  }
}

.footer__sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid var(--gray-3);
  font-size: 1.4rem;
  color: var(--gray-text);
  flex-wrap: wrap;
  gap: 1.2rem;
  font-weight: 400;
}

.footer__sub a {
  transition: opacity .15s cubic-bezier(.23, 1, .32, 1);
}

@media (hover: hover) and (pointer: fine) {
  .footer__sub a:hover {
    opacity: 0.5;
  }
}

.footer__sub-right {
  display: flex;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 649px) {
  .footer__sub {
    flex-direction: column;
    text-align: center;
    gap: .8rem;
  }
  .footer__sub-right {
    flex-direction: column;
    gap: .8rem;
  }
}

.footer__pplx {
  font-size: 1.2rem;
  color: var(--gray-1);
  text-align: center;
  padding: 1.6rem 0;
  font-weight: 400;
}

.footer__pplx a {
  text-decoration: underline;
  text-underline-offset: .2rem;
}

/* ========== V2 — HERO CTA UNDERLINE (multi-line safe) ========== */
/* text-decoration natif : le soulignement suit chaque ligne, pas le conteneur */
.hero-cta-uline {
  text-decoration: underline !important;
  text-underline-offset: .12em;
  text-decoration-thickness: .08em;
  white-space: normal;
}
@media (hover: hover) and (pointer: fine) {
  .hero-cta-uline:hover {
    opacity: .6;
  }
}

/* ========== V2 — METRICS BANNER ========== */
.metrics-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-3);
  border-bottom: 1px solid var(--gray-3);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--gray-text);
}

@media (min-width: 650px) {
  .metrics-banner {
    font-size: 2rem;
    gap: 0 2.5rem;
    flex-wrap: nowrap;
  }
}

.metrics-banner__sep {
  color: var(--gray-3);
  font-weight: 400;
}

/* ========== V2 — PROCESS STEP ========== */
.process-step .site-grid {
  /* nested grid — inherit parent columns */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

@media (min-width: 650px) {
  .process-step .site-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.7rem;
  }
}

/* ========== V2 — DEMO CARD ========== */
.demo-card {
  border: 1px solid var(--gray-3);
  border-radius: 0.8rem;
  overflow: hidden;
}

.demo-card__header {
  background: var(--gray-bg);
  border-bottom: 1px solid var(--gray-3);
  padding: 3rem 0;
}

.demo-card__prospect-name {
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: #111;
}

@media (min-width: 650px) {
  .demo-card__prospect-name {
    font-size: 3.2rem;
  }
}

.demo-card__badges {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.demo-card__badge {
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  border: 1px solid var(--gray-3);
  white-space: nowrap;
}

@media (min-width: 650px) {
  .demo-card__badge {
    font-size: 1.4rem;
  }
}

.demo-card__badge--score {
  background: #111;
  color: #fff;
  border-color: #111;
}

.demo-card__badge--timing {
  background: var(--green-light);
  color: #1a5c0a;
  border-color: var(--green-light);
}

/* ========== V2 — STEPS ANIMATION ========== */
.items-end { align-items: end; }
.step-item .col-span-1 {
  font-size: 2.3rem;
  letter-spacing: -.02em;
  line-height: 1;
}
@media (min-width: 650px) {
  .step-item .col-span-1 { font-size: 3.2rem; }
}
.step-item-text {
  font-size: 3rem;
  letter-spacing: -.03em;
  line-height: 1.05;
}
@media (min-width: 650px) {
  .step-item-text {
    font-size: 4.8rem;
  }
}
.step-divider {
  position: relative;
  height: 1px;
  background: var(--gray-5, #e5e5e5);
}
.step-divider__fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: #111;
}
.step-divider__fill.is-filling {
  animation: stepFill 1.5s linear forwards;
}
@keyframes stepFill {
  from { width: 0; }
  to { width: 100%; }
}
.step-item {
  opacity: 0.35;
  transition: opacity 0.4s ease;
  cursor: pointer;
}
.step-item.is-active {
  opacity: 1;
}
.step-item__body {
  overflow: hidden;
  height: 0;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-card__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 650px) {
  .demo-card__body {
    grid-template-columns: 1fr 1fr;
  }
}

.demo-card__block {
  padding: 2.5rem;
  border-bottom: 1px solid var(--gray-3);
}

@media (min-width: 650px) {
  .demo-card__block {
    padding: 3rem;
    border-right: 1px solid var(--gray-3);
    border-bottom: none;
  }
  .demo-card__block:nth-child(2),
  .demo-card__block:nth-child(4) {
    border-right: none;
  }
  .demo-card__block:nth-child(1),
  .demo-card__block:nth-child(2) {
    border-bottom: 1px solid var(--gray-3);
  }
}

@media (max-width: 649px) {
  .demo-card__block:last-child {
    border-bottom: none;
  }
}

.demo-card__block-label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gray-text);
  margin-bottom: 1.5rem;
}

.demo-card__block-text {
  font-size: 1.7rem;
  line-height: 1.4;
  color: #333;
  font-weight: 400;
}

@media (min-width: 650px) {
  .demo-card__block-text {
    font-size: 1.7rem;
  }
}

.demo-card__list {
  font-size: 1.7rem;
  line-height: 1.4;
  color: #333;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-left: 0;
  list-style: none;
}

.demo-card__list li {
  display: flex;
  gap: 0.6rem;
}

.demo-card__list--decision li {
  align-items: baseline;
}

.demo-card__arrow {
  color: var(--gray-1);
  flex-shrink: 0;
}

/* ========== DEMO CARD ACCORDION ========== */
.demo-card__accordion-item {
  border-bottom: 1px solid var(--gray-3);
}

.demo-card__accordion-item:last-child {
  border-bottom: none;
}

.demo-card__accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.15s cubic-bezier(0.23, 1, 0.32, 1);
  gap: 1rem;
}

.demo-card__accordion-label-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1;
}

.demo-card__accordion-number {
  font-weight: 500;
  color: var(--gray-1);
  flex-shrink: 0;
}

@media (min-width: 650px) {
  .demo-card__accordion-trigger {
    padding: 3rem;
  }
}

.demo-card__accordion-trigger:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.demo-card__accordion-trigger[aria-expanded="true"] {
  background-color: rgba(0, 0, 0, 0.03);
}

.demo-card__accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  margin-left: 1.2rem;
  color: var(--gray-text);
}

.demo-card__accordion-svg {
  width: 100%;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

.demo-card__accordion-trigger[aria-expanded="true"] .demo-card__accordion-svg {
  transform: rotate(45deg);
}

.demo-card__accordion-content {
  transition: height 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}

.demo-card__accordion-body {
  padding: 0 2.5rem 2.5rem 2.5rem;
}

@media (min-width: 650px) {
  .demo-card__accordion-body {
    padding: 0 3rem 3rem 3rem;
  }
}

/* ========== SECTION DIVIDER ========== */
/* margin-top + margin-bottom = référence inter-section = mb-200 s:mb-250 */
.section-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin-top: 16rem;
  margin-bottom: 4rem;
}
@media (min-width: 650px) {
  .section-divider {
    margin-top: 20rem;
    margin-bottom: 5rem;
  }
}
