/* ============================================================
   Première Cible — Landing standalone
   Style éditorial cream / mint sur design system BSA
   ============================================================ */

/* ----- Fonts ----- */
@font-face { font-family: "HK Grotesk"; src: url("../fonts/HKGrotesk-Light.ttf") format("truetype"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "HK Grotesk"; src: url("../fonts/HKGrotesk-Regular.ttf") format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "HK Grotesk"; src: url("../fonts/HKGrotesk-Italic.ttf") format("truetype"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "HK Grotesk"; src: url("../fonts/HKGrotesk-Medium.ttf") format("truetype"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "HK Grotesk"; src: url("../fonts/HKGrotesk-SemiBold.ttf") format("truetype"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "HK Grotesk"; src: url("../fonts/HKGrotesk-Bold.ttf") format("truetype"); font-weight: 700; font-style: normal; font-display: swap; }

/* ----- Tokens ----- */
:root {
  --bsa-green-900: #003a2a;
  --bsa-green-800: #014e38;
  --bsa-green-700: #006a4e;
  --bsa-green-500: #0f8862;
  --bsa-mint-700: #1f9d7c;
  --bsa-mint-500: #35c7a0;
  --bsa-mint-300: #7adcc0;
  --bsa-mint-200: #b9ebda;
  --bsa-mint-100: #e3f7ee;
  --bsa-paper: #ffffff;
  --bsa-cream: #f5f1ea;
  --bsa-cream-2: #ebe5d9;
  --bsa-ink-900: #0e1f1a;
  --bsa-ink-700: #28342f;
  --bsa-ink-600: #46524e;
  --bsa-ink-400: #8a938f;
  --bsa-line: #d9d3c5;
  --bsa-line-strong: #b8b0a0;
  --bsa-amber-500: #c98a3d;
  --bsa-amber-100: #f7eedd;

  --fg-1: var(--bsa-ink-900);
  --fg-2: var(--bsa-ink-600);
  --fg-3: var(--bsa-ink-400);

  --font-sans: "HK Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --shadow-sm: 0 1px 2px rgba(14, 31, 26, 0.06);
  --shadow-md: 0 6px 16px -4px rgba(14, 31, 26, 0.08), 0 2px 4px rgba(14, 31, 26, 0.04);
  --shadow-lg: 0 24px 48px -16px rgba(14, 31, 26, 0.18);

  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur-base: 220ms;
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--fg-1);
  background: var(--bsa-cream);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }
img, video { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; }
a { color: var(--bsa-green-700); text-decoration: none; transition: color var(--dur-base) var(--ease-out); }
a:hover { color: var(--bsa-green-500); }
::selection { background: var(--bsa-mint-200); color: var(--bsa-ink-900); }
:focus-visible { outline: 2px solid var(--bsa-mint-500); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.06; letter-spacing: -0.022em; text-wrap: balance; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 880px; }

/* ----- Eyebrow ----- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bsa-green-700);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.eyebrow--light { color: var(--bsa-mint-300); }
.eyebrow--center { display: flex; justify-content: center; }

/* ============================================================
   Header (minimal, standalone)
   ============================================================ */
.pc-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 234, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bsa-line);
}
.pc-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 16px;
}
.pc-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--bsa-green-900);
  font-weight: 700;
}
.pc-header__brand-logo {
  display: block;
  height: 54px;
  width: auto;
  border-radius: 10px;
}
.pc-header__brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.pc-header__brand-product {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pc-header__brand-tagline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 6px;
}
.pc-header__price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 700;
}
.pc-header__price-amount { font-size: 26px; color: var(--bsa-green-900); letter-spacing: -0.015em; }
.pc-header__price-meta { font-size: 14px; color: var(--fg-2); letter-spacing: 0.02em; font-weight: 600; }
.pc-header__cta {
  font-size: 15.5px;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--bsa-green-900);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
  text-decoration: none;
}
.pc-header__cta:hover { background: var(--bsa-green-800); transform: translateY(-1px); color: #fff; }

@media (max-width: 720px) {
  .pc-header__row { height: 64px; gap: 10px; }
  .pc-header__brand { gap: 10px; min-width: 0; }
  .pc-header__brand-logo { height: 40px; }
  .pc-header__brand-product { font-size: 15px; line-height: 1.15; }
  .pc-header__brand-tagline { display: none; }
  .pc-header__price-amount { font-size: 18px; }
  .pc-header__price-meta { display: none; }
  .pc-header__cta { padding: 10px 14px; font-size: 13.5px; }
}
@media (max-width: 480px) {
  .pc-header__cta { display: none; }
  .pc-header__brand-product { font-size: 14px; }
  .pc-header__price-amount { font-size: 17px; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.005em;
  line-height: 1;
  padding: 18px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--bsa-mint-500);
  color: var(--bsa-green-900);
  box-shadow: 0 8px 22px -8px rgba(15, 136, 98, 0.55);
}
.btn--primary:hover { background: var(--bsa-mint-300); color: var(--bsa-green-900); box-shadow: 0 14px 30px -10px rgba(15, 136, 98, 0.65); }
.btn--ghost {
  background: transparent;
  color: var(--bsa-green-900);
  border-color: rgba(14, 31, 26, 0.22);
}
.btn--ghost:hover { border-color: var(--bsa-green-900); background: rgba(14, 31, 26, 0.04); }
.btn--lg { font-size: 17px; padding: 22px 34px; }
.btn--xl { font-size: 19px; padding: 26px 42px; }
.btn--block { display: flex; width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 0 96px;
  background:
    radial-gradient(1100px 580px at 85% -10%, rgba(53, 199, 160, 0.14), transparent 60%),
    radial-gradient(900px 500px at -10% 40%, rgba(231, 220, 196, 0.5), transparent 70%),
    var(--bsa-cream);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.hero__eyebrow { margin-bottom: 18px; }
.hero h1 {
  font-size: clamp(38px, 5.8vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  font-weight: 700;
}
.hero h1 .accent {
  color: var(--bsa-green-700);
}
.hero__sub {
  margin-top: 28px;
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--fg-2);
  line-height: 1.55;
  font-weight: 500;
}
.hero__price-card {
  margin-top: 36px;
  padding: 22px 26px;
  border-radius: 18px;
  background: var(--bsa-paper);
  border: 1px solid var(--bsa-line);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__price-card .amount {
  font-size: 34px;
  font-weight: 700;
  color: var(--bsa-green-900);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero__price-card .meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13.5px;
  color: var(--fg-2);
}
.hero__price-card .meta strong { color: var(--bsa-ink-900); font-weight: 600; }
.hero__price-card .meta .split {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--bsa-green-700);
  font-weight: 600;
}
.hero__cta-row {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__reassure {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--fg-2);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__reassure span { display: inline-flex; align-items: center; gap: 5px; }
.hero__reassure span + span::before { content: "·"; color: var(--bsa-line-strong); margin-right: 5px; }

/* Hero portrait — JPN */
.hero__visual { position: relative; }
.hero-portrait {
  margin: 0;
  position: relative;
  max-width: 460px;
  margin-left: auto;
}
.hero-portrait picture {
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  background: var(--bsa-green-900);
  box-shadow: var(--shadow-lg);
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.hero-portrait__caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 16px 18px;
  background: rgba(14, 31, 26, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-portrait__by {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bsa-mint-300);
}
.hero-portrait__name {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 2px;
}
.hero-portrait__role {
  font-size: 12.5px;
  color: rgba(255,255,255,0.72);
  margin-top: 4px;
  line-height: 1.4;
}

/* Mosaic — generic (used in tools preview section) */
.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
.mosaic__tile {
  position: relative;
  background: var(--bsa-ink-900);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(14, 31, 26, 0.08);
  aspect-ratio: 1400 / 730;
  cursor: zoom-in;
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out);
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  display: block;
  width: 100%;
}
.mosaic__tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -16px rgba(14, 31, 26, 0.32);
}
.mosaic__tile::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.94) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23003a2a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='m20 20-4-4'/><line x1='11' y1='8' x2='11' y2='14'/><line x1='8' y1='11' x2='14' y2='11'/></svg>") center / 16px no-repeat;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out);
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(14, 31, 26, 0.25);
}
.mosaic__tile:hover::after { opacity: 1; transform: scale(1); }

/* Lightbox vide o */
.pc-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 15, 12, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  cursor: zoom-out;
  animation: pc-lightbox-in 240ms ease forwards;
}
.pc-lightbox video {
  max-width: min(92vw, 1800px);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  display: block;
}
.pc-lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms var(--ease-out);
}
.pc-lightbox__close:hover { background: rgba(255,255,255,0.22); }
@keyframes pc-lightbox-in { from { opacity: 0 } to { opacity: 1 } }
@media (prefers-reduced-motion: reduce) {
  .pc-lightbox { animation: none; }
}
.mosaic__tile video,
.mosaic__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 820px) {
  .mosaic { grid-template-columns: 1fr; max-width: 560px; }
}
.mosaic__tile .chip {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(14, 31, 26, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 999px;
}

/* Tools preview block (after the 8 tools grid) */
.tools-preview {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px dashed var(--bsa-line);
}
.tools-preview__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tools-preview__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bsa-green-500);
}
.tools-preview__title {
  font-size: 19px;
  font-weight: 600;
  color: var(--bsa-ink-900);
  letter-spacing: -0.01em;
}

/* Tablette: 2 col reste mais photo plus petite */
@media (max-width: 980px) {
  .hero { padding: 56px 0 64px; }
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 28px;
    align-items: start;
  }
  .hero-portrait { max-width: 220px; margin: 0; }
  .hero-portrait__caption {
    left: 8px; right: 8px; bottom: 8px;
    padding: 8px 10px;
    border-radius: 8px;
  }
  .hero-portrait__by { font-size: 9px; letter-spacing: 0.12em; }
  .hero-portrait__name { font-size: 13px; margin-top: 2px; }
  .mosaic { max-width: 520px; }
}

/* Mobile: cache " · À votre rythme" pour tenir sur une ligne */
@media (max-width: 720px) {
  .hero__eyebrow-extra { display: none; }
}

/* Mobile: stack complet, photo JPN en figure verticale centrée au dessus du texte */
@media (max-width: 720px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero__visual { order: -1; margin-bottom: 24px; }
  .hero-portrait {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: none;
    margin: 0;
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
  }
  .hero-portrait picture {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bsa-green-900);
    display: block;
    box-shadow: 0 12px 28px -14px rgba(14, 31, 26, 0.32);
  }
  .hero-portrait picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    display: block;
  }
  .hero-portrait__caption {
    position: static;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    color: var(--bsa-ink-900);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
    line-height: 1.25;
  }
  .hero-portrait__by {
    font-size: 10.5px;
    letter-spacing: 0.16em;
    color: var(--fg-3);
    font-weight: 700;
    text-transform: uppercase;
  }
  .hero-portrait__name {
    font-size: 17px;
    color: var(--bsa-ink-900);
    font-weight: 700;
    margin-top: 0;
    letter-spacing: -0.01em;
  }
}

/* ============================================================
   BONUS BANDEAU
   ============================================================ */
.bonus-band {
  background: linear-gradient(135deg, #1c2622 0%, var(--bsa-green-900) 100%);
  color: #fff;
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}
.bonus-band::before,
.bonus-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.32;
  pointer-events: none;
}
.bonus-band::before { width: 320px; height: 320px; background: var(--bsa-mint-500); top: -120px; left: -80px; }
.bonus-band::after { width: 380px; height: 380px; background: var(--bsa-mint-700); bottom: -180px; right: -80px; }
.bonus-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}
.bonus-band__badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--bsa-mint-500);
  color: var(--bsa-green-900);
  padding: 8px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.bonus-band__badge-long { display: none; }
.bonus-band__badge-icon {
  font-size: 1.8em;
  line-height: 0;
  display: inline-block;
  vertical-align: -0.25em;
  margin-right: 4px;
}
.bonus-band__title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.bonus-band__meta {
  margin-top: 8px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.72);
}
.bonus-band__cta {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 820px) {
  .bonus-band__inner { grid-template-columns: 1fr; text-align: left; gap: 16px; }
  .bonus-band__cta { justify-self: start; }
}

/* ============================================================
   PROOF (creator + media)
   ============================================================ */
.proof {
  padding: 64px 0 64px;
  background: var(--bsa-cream);
  text-align: center;
}
.proof__lede {
  max-width: 820px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.6;
}
.proof__lede strong { color: var(--bsa-ink-900); font-weight: 600; }
.proof__media {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.proof__media-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.proof__media-logos {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 18px 8px;
}
.proof__media-logos img {
  height: 40px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(1);
  transition: opacity var(--dur-base), filter var(--dur-base);
}
.proof__media-logos img:hover { opacity: 1; filter: grayscale(0); }
@media (max-width: 720px) {
  .proof__media-logos { gap: 36px; }
  .proof__media-logos img { height: 32px; }
}

/* ============================================================
   SECTIONS (générique)
   ============================================================ */
.section {
  padding: 96px 0;
  position: relative;
}
.section--paper { background: var(--bsa-paper); }
.section--cream { background: var(--bsa-cream); }
.section--dark { background: var(--bsa-green-900); color: rgba(255,255,255,0.92); }
.section--dark h2, .section--dark h3 { color: #fff; }

.section__head {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 760px;
}
.section__head--left { text-align: left; margin-left: 0; margin-right: 0; max-width: 820px; }
.section__head h2 {
  margin-top: 18px;
  font-size: clamp(30px, 4vw, 50px);
  letter-spacing: -0.025em;
}
.section__head p {
  margin-top: 18px;
  font-size: 17.5px;
  color: var(--fg-2);
  line-height: 1.6;
}
.section--dark .section__head p { color: rgba(255,255,255,0.75); }

/* ============================================================
   PROMESSE
   ============================================================ */
.promise {
  padding: 96px 0;
  background: var(--bsa-paper);
}
.promise__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.promise__head h2 {
  margin-top: 18px;
  font-size: clamp(30px, 4vw, 50px);
  letter-spacing: -0.025em;
}
.promise__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.promise__body p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-1);
  margin-bottom: 22px;
}
.promise__body p:last-child { margin-bottom: 0; }
.promise__body strong { color: var(--bsa-green-700); font-weight: 600; }
.promise__body .lead {
  font-size: 20px;
  color: var(--fg-1);
  border-left: 3px solid var(--bsa-mint-500);
  padding-left: 22px;
  line-height: 1.5;
  margin-bottom: 0;
}
@media (max-width: 820px) {
  .promise__body {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 720px;
  }
}

/* ============================================================
   PACK CONTENTS (Section 5)
   ============================================================ */
.pack { background: var(--bsa-cream); }
.pack__head { text-align: center; margin-bottom: 64px; max-width: 760px; margin-left: auto; margin-right: auto; }
.pack__head h2 {
  margin-top: 18px;
  font-size: clamp(30px, 4vw, 50px);
  letter-spacing: -0.025em;
}
.pack__head p {
  margin-top: 18px;
  font-size: 18px;
  color: var(--fg-2);
}

.pack-block { margin-bottom: 72px; }
.pack-block:last-child { margin-bottom: 0; }
.pack-block__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}
.pack-block__icon {
  font-size: 28px;
  line-height: 1;
}
.pack-block__title {
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.02em;
}
.pack-block__lede {
  font-size: 17px;
  color: var(--fg-2);
  max-width: 70ch;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Chapters list — horizontal rows */
.chapters {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chapter-card {
  display: grid;
  grid-template-columns: 110px minmax(220px, 1fr) minmax(0, 2fr);
  gap: 28px;
  align-items: baseline;
  background: var(--bsa-paper);
  border: 1px solid var(--bsa-line);
  border-radius: 14px;
  padding: 22px 26px;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.chapter-card:hover { border-color: var(--bsa-mint-300); box-shadow: var(--shadow-sm); }
.chapter-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bsa-green-500);
}
.chapter-card__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--bsa-ink-900);
  letter-spacing: -0.015em;
}
.chapter-card__items {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.5;
}
@media (max-width: 720px) {
  .chapter-card {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 20px;
  }
  .chapter-card__title { margin-top: 2px; }
  .chapter-card__items { margin-top: 6px; }
}

/* Tools grid (8 outils) */
.tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.tool-card {
  background: var(--bsa-paper);
  border: 1px solid var(--bsa-line);
  border-radius: 14px;
  padding: 18px 18px 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 280ms var(--ease-out),
              box-shadow 280ms var(--ease-out),
              transform 280ms var(--ease-out);
  position: relative;
  overflow: hidden;
}
.tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(53, 199, 160, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 280ms var(--ease-out);
  pointer-events: none;
}
.tool-card:hover {
  border-color: var(--bsa-mint-300);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px -12px rgba(14, 31, 26, 0.18);
}
.tool-card:hover::before { opacity: 1; }
.tool-card__bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bsa-mint-500);
  margin-top: 8px;
  flex-shrink: 0;
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
.tool-card:hover .tool-card__bullet {
  transform: scale(1.6);
  box-shadow: 0 0 0 4px rgba(53, 199, 160, 0.2);
}
.tool-card__title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--bsa-ink-900);
  margin-bottom: 4px;
}
.tool-card__desc {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.5;
}
.tool-card__quota {
  display: inline-block;
  margin-top: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bsa-green-700);
  background: var(--bsa-mint-100);
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.tool-card__quota--free {
  color: var(--bsa-ink-700);
  background: rgba(14, 31, 26, 0.06);
}

/* Masterclass cards */
.masterclasses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.mc-card {
  background: var(--bsa-paper);
  border: 1px solid var(--bsa-line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 320ms var(--ease-out),
              box-shadow 320ms var(--ease-out),
              border-color 320ms var(--ease-out);
}
.mc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -20px rgba(14, 31, 26, 0.25);
  border-color: var(--bsa-mint-300);
}
.mc-card__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bsa-ink-700);
  position: relative;
}
.mc-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 700ms var(--ease-out);
}
.mc-card:hover .mc-card__photo img { transform: scale(1.05); }
.mc-card__banner {
  background: var(--bsa-green-900);
  color: #fff;
  padding: 18px 22px 16px;
}
.mc-card__body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.mc-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bsa-mint-300);
  margin-bottom: 8px;
}
.mc-card__title {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.mc-card__expert {
  font-size: 14px;
  margin-bottom: 14px;
}
.mc-card__expert-name { color: var(--bsa-ink-900); font-weight: 700; }
.mc-card__expert-role { color: var(--fg-3); font-weight: 500; }
.mc-card__expert-bio {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.55;
  font-style: italic;
  padding-left: 14px;
  border-left: 2px solid var(--bsa-mint-200);
  margin-bottom: 16px;
}
.mc-card__desc {
  font-size: 15px;
  color: var(--fg-1);
  line-height: 1.55;
  margin-top: auto;
}

/* Side blocks (base repreneurs + bonus session) */
.pack-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 16px;
}
.side-card {
  background: var(--bsa-paper);
  border: 1px solid var(--bsa-line);
  border-radius: 20px;
  padding: 28px;
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out), border-color 320ms var(--ease-out);
}
.side-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -16px rgba(14, 31, 26, 0.18);
  border-color: var(--bsa-mint-300);
}
.side-card--accent:hover { box-shadow: 0 18px 36px -14px rgba(0, 58, 42, 0.6); border-color: transparent; }
.side-card--accent {
  background: linear-gradient(135deg, #013726 0%, var(--bsa-green-900) 100%);
  color: #fff;
  border: none;
  position: relative;
  overflow: hidden;
}
.side-card--accent::before {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  background: var(--bsa-mint-500);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  top: -60px; right: -40px;
}
.side-card__icon { font-size: 44px; line-height: 1; margin-bottom: 18px; display: block; }
.side-card__title {
  font-size: 21px;
  font-weight: 700;
  color: inherit;
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.side-card--accent .side-card__title { color: #fff; }
.side-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-2);
  position: relative;
}
.side-card--accent .side-card__desc { color: rgba(255,255,255,0.85); }
.side-card__note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--fg-3);
  font-style: italic;
}
.side-card--accent .side-card__note { color: rgba(255,255,255,0.6); }

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

/* ============================================================
   TIMELINE (Comment ça se passe)
   ============================================================ */
.timeline { background: var(--bsa-paper); }
.timeline__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
/* Trait fin reliant les markers */
.timeline__grid::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--bsa-mint-300), var(--bsa-mint-500) 25%, var(--bsa-green-500) 75%, var(--bsa-green-900));
  z-index: 0;
}
.tl-step {
  position: relative;
  padding: 0 18px;
  text-align: center;
  cursor: default;
}
.tl-step__marker {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bsa-paper);
  border: 1px solid var(--bsa-line);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  color: var(--bsa-green-700);
  transition: transform 320ms var(--ease-out),
              border-color 320ms var(--ease-out),
              background 320ms var(--ease-out),
              box-shadow 320ms var(--ease-out),
              color 320ms var(--ease-out);
}
.tl-step__marker svg {
  width: 22px;
  height: 22px;
  display: block;
}
.tl-step--start .tl-step__marker,
.tl-step--end .tl-step__marker {
  background: var(--bsa-green-900);
  border-color: var(--bsa-green-900);
  color: var(--bsa-mint-300);
}
.tl-step__range {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bsa-green-500);
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.tl-step__range span { color: var(--bsa-mint-500); margin: 0 4px; font-weight: 400; }
.tl-step__label {
  font-size: 14.5px;
  color: var(--fg-2);
  line-height: 1.55;
  transition: color 320ms var(--ease-out);
}
.tl-step__label strong { font-weight: 600; color: var(--bsa-ink-900); }

/* Hover elegant */
.tl-step:hover .tl-step__marker {
  transform: translateY(-2px);
  border-color: var(--bsa-mint-500);
  background: var(--bsa-mint-100);
  box-shadow: 0 6px 16px -6px rgba(15, 136, 98, 0.35);
  color: var(--bsa-green-900);
}
.tl-step--start:hover .tl-step__marker,
.tl-step--end:hover .tl-step__marker {
  background: var(--bsa-green-700);
  border-color: var(--bsa-green-700);
  color: var(--bsa-mint-300);
}
.tl-step:hover .tl-step__label { color: var(--fg-1); }

.timeline__note {
  margin-top: 64px;
  text-align: center;
  font-size: 16px;
  color: var(--fg-2);
  font-style: italic;
}
.timeline__note strong { color: var(--bsa-green-700); font-style: normal; }

@media (max-width: 820px) {
  .timeline__grid { grid-template-columns: 1fr; gap: 28px; margin-top: 36px; }
  .timeline__grid::before { display: none; }
  .tl-step {
    text-align: left;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 18px;
    row-gap: 6px;
    align-items: start;
    padding: 0;
  }
  .tl-step__marker {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0;
    align-self: start;
  }
  .tl-step__range {
    grid-column: 2;
    grid-row: 1;
    margin: 12px 0 0;
  }
  .tl-step__label {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
  }
}

/* ============================================================
   POUR QUI
   ============================================================ */
.audience { background: var(--bsa-cream); }
.audience__list {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}
.audience__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 22px;
  background: var(--bsa-paper);
  border: 1px solid var(--bsa-line);
  border-radius: 14px;
  font-size: 16.5px;
  color: var(--fg-1);
  line-height: 1.5;
  transition: border-color 280ms var(--ease-out), transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
.audience__item:hover {
  border-color: var(--bsa-mint-300);
  transform: translateX(4px);
  box-shadow: 0 8px 18px -10px rgba(14, 31, 26, 0.18);
}
.audience__check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bsa-mint-500);
  color: var(--bsa-green-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  margin-top: 2px;
  transition: transform 280ms var(--ease-out);
}
.audience__item:hover .audience__check { transform: scale(1.12) rotate(-4deg); }

/* ============================================================
   CREATEUR (Section 8)
   ============================================================ */
.creator {
  background: var(--bsa-green-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.creator::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: var(--bsa-mint-500);
  filter: blur(120px);
  opacity: 0.22;
  bottom: -200px;
  left: -120px;
  pointer-events: none;
}
.creator__grid {
  position: relative;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: center;
}
.creator__photo {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  background: #000;
}
.creator__photo img { width: 100%; height: 100%; object-fit: cover; }
.creator__body h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); letter-spacing: -0.025em; }
.creator__role {
  margin-top: 8px;
  font-size: 16px;
  color: var(--bsa-mint-300);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.creator__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  margin: 28px 0;
}
.creator__stat {
  border-left: 2px solid var(--bsa-mint-500);
  padding-left: 14px;
}
.creator__stat-num {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.creator__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.creator__bio {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
}

@media (max-width: 820px) {
  .creator__grid { grid-template-columns: 1fr; gap: 32px; }
  .creator__photo { max-width: 280px; margin: 0 auto; }
}

/* ============================================================
   TEMOIGNAGES
   ============================================================ */
.testimonials { background: var(--bsa-cream); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 56px;
}
.testimonials__grid--2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.testimonials__grid--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px) {
  .testimonials__grid--2,
  .testimonials__grid--3 { grid-template-columns: 1fr; max-width: 640px; margin-left: auto; margin-right: auto; }
}
.testimonial {
  background: var(--bsa-paper);
  border: 1px solid var(--bsa-line);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform 320ms var(--ease-out), box-shadow 320ms var(--ease-out), border-color 320ms var(--ease-out);
  position: relative;
}
.testimonial::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--bsa-mint-500), var(--bsa-green-500));
  border-radius: 0 0 18px 18px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 380ms var(--ease-out);
}
.testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--bsa-mint-300);
  box-shadow: 0 18px 36px -18px rgba(14, 31, 26, 0.22);
}
.testimonial:hover::after { transform: scaleX(1); }
.testimonial__quote {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--fg-1);
  margin-bottom: 10px;
}
.testimonial__quote:last-of-type {
  margin-bottom: 22px;
  flex: 1;
}
.testimonial__quote strong { color: var(--bsa-green-700); font-weight: 700; }
.testimonial__quote:first-of-type::before {
  content: "\201C";
  font-size: 56px;
  line-height: 0.55;
  color: var(--bsa-mint-500);
  display: block;
  margin-bottom: 0;
  font-family: Georgia, serif;
}
.testimonial__author {
  font-size: 13px;
  color: var(--fg-3);
  font-weight: 600;
  padding-top: 18px;
  border-top: 1px solid var(--bsa-line);
  line-height: 1.45;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--bsa-cream); }
.faq__list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--bsa-line);
}
.faq-item:first-child { border-top: 1px solid var(--bsa-line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-size: 18px;
  font-weight: 600;
  color: var(--bsa-ink-900);
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 26px;
  font-weight: 300;
  color: var(--bsa-green-700);
  transition: transform var(--dur-base) var(--ease-out);
  flex-shrink: 0;
  width: 28px;
  text-align: center;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item__body {
  padding: 0 0 26px;
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.65;
}
.faq-item__body p { margin-bottom: 12px; }
.faq-item__body p:last-child { margin-bottom: 0; }
.faq-item__body ul { padding-left: 22px; margin: 10px 0; list-style: disc; }
.faq-item__body li { margin-bottom: 6px; }
.faq-item__body strong { color: var(--bsa-ink-900); font-weight: 600; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  background: linear-gradient(180deg, var(--bsa-green-900) 0%, #001f17 100%);
  color: #fff;
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--bsa-mint-500);
  filter: blur(180px);
  opacity: 0.18;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}
.cta-final__inner { position: relative; max-width: 820px; margin: 0 auto; }
.cta-final h2 {
  color: #fff;
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.cta-final p {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin-bottom: 14px;
}
.cta-final .price-line {
  margin-top: 32px;
  font-size: 17px;
  font-weight: 600;
  color: var(--bsa-mint-300);
  letter-spacing: 0.01em;
}
.cta-final .bonus-line {
  margin-top: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.78);
}
.cta-final .btn--xl { margin-top: 32px; }
.cta-final__reassure {
  margin-top: 22px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bsa-ink-900);
  color: rgba(255,255,255,0.6);
  padding: 40px 0;
  font-size: 13.5px;
  text-align: center;
}
.footer a,
.footer__link {
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base), color var(--dur-base);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}
.footer a:hover,
.footer__link:hover { border-bottom-color: rgba(255,255,255,0.8); color: #fff; }
.footer__links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}
.footer__meta { font-size: 12.5px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ============================================================
   Reveal animations
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  }
  [data-reveal].is-in {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   Sticky CTA (apparait apres le hero)
   ============================================================ */
.pc-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: rgba(245, 241, 234, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--bsa-line);
  box-shadow: 0 -10px 24px -10px rgba(14, 31, 26, 0.18);
  transform: translateY(110%);
  transition: transform 360ms var(--ease-out);
}
.pc-sticky-cta[hidden] { display: none; }
.pc-sticky-cta.is-visible { transform: translateY(0); }
.pc-sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  padding: 14px 0;
}
.pc-sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 700;
  font-size: 15.5px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--bsa-mint-500);
  color: var(--bsa-green-900);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 200ms var(--ease-out), transform 200ms var(--ease-out), border-color 200ms var(--ease-out);
  box-shadow: 0 8px 22px -8px rgba(15, 136, 98, 0.55);
}
.pc-sticky-cta__btn:hover { background: var(--bsa-mint-300); transform: translateY(-1px); color: var(--bsa-green-900); }
.pc-sticky-cta__btn--ghost {
  background: #fff;
  color: var(--bsa-green-900);
  border-color: var(--bsa-line-strong);
  box-shadow: 0 4px 14px -8px rgba(14, 31, 26, 0.18);
}
.pc-sticky-cta__btn--ghost:hover {
  background: var(--bsa-paper);
  border-color: var(--bsa-green-900);
  color: var(--bsa-green-900);
}

@media (max-width: 640px) {
  .pc-sticky-cta__inner { padding: 12px 0; gap: 8px; justify-content: stretch; }
  .pc-sticky-cta__btn { padding: 12px 14px; font-size: 13.5px; flex: 1; }
  .pc-sticky-cta__btn--ghost { flex: 0 1 auto; min-width: 0; padding: 12px 16px; }
}

/* ============================================================
   Modal legal (Mentions / CGV / Confidentialite)
   ============================================================ */
.pc-legal-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  opacity: 0;
  transition: opacity 260ms var(--ease-out);
  pointer-events: none;
}
.pc-legal-modal[hidden] { display: none; }
.pc-legal-modal.is-open { opacity: 1; pointer-events: auto; }
.pc-legal-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 15, 12, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.pc-legal-modal__panel {
  position: relative;
  background: var(--bsa-paper);
  width: 100%;
  max-width: 820px;
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.55);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(12px) scale(0.98);
  transition: transform 320ms var(--ease-out);
}
.pc-legal-modal.is-open .pc-legal-modal__panel {
  transform: translateY(0) scale(1);
}
.pc-legal-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--bsa-line);
  background: var(--bsa-cream);
  flex-shrink: 0;
}
.pc-legal-modal__title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--bsa-ink-900);
  margin: 0;
}
.pc-legal-modal__close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bsa-paper);
  border: 1px solid var(--bsa-line);
  font-size: 22px;
  line-height: 1;
  color: var(--bsa-ink-700);
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms var(--ease-out), border-color 200ms var(--ease-out);
}
.pc-legal-modal__close:hover {
  background: var(--bsa-ink-900);
  color: #fff;
  border-color: var(--bsa-ink-900);
}
.pc-legal-modal__body {
  padding: 28px 36px 40px;
  overflow-y: auto;
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-1);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.pc-legal-modal__loader {
  text-align: center;
  padding: 40px 0;
  color: var(--fg-3);
  font-size: 14px;
}
/* Styles du contenu legal injecte */
.pc-legal-modal__body h2 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--bsa-green-900);
  margin: 28px 0 12px;
}
.pc-legal-modal__body h2:first-child { margin-top: 4px; }
.pc-legal-modal__body h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--bsa-ink-900);
  margin: 18px 0 8px;
}
.pc-legal-modal__body p,
.pc-legal-modal__body address,
.pc-legal-modal__body ul,
.pc-legal-modal__body ol,
.pc-legal-modal__body table {
  font-size: 14.5px;
  color: var(--fg-2);
  line-height: 1.65;
  margin: 0 0 12px;
}
.pc-legal-modal__body strong { color: var(--bsa-ink-900); font-weight: 600; }
.pc-legal-modal__body a {
  color: var(--bsa-green-700);
  border-bottom: 1px solid transparent;
}
.pc-legal-modal__body a:hover { border-bottom-color: var(--bsa-green-700); }
.pc-legal-modal__body ul,
.pc-legal-modal__body ol { padding-left: 22px; }
.pc-legal-modal__body li { margin-bottom: 4px; }
.pc-legal-modal__body address { font-style: normal; }
.pc-legal-modal__body address strong { display: block; margin-bottom: 4px; }
.pc-legal-modal__body hr.legal-divider {
  height: 1px;
  background: var(--bsa-line);
  border: 0;
  margin: 28px 0;
}
.pc-legal-modal__body .legal-form {
  background: var(--bsa-cream);
  padding: 18px;
  border-radius: 10px;
  font-family: var(--font-mono, monospace);
  font-size: 13.5px;
  white-space: pre-wrap;
  color: var(--fg-1);
  border: 1px solid var(--bsa-line);
}
.pc-legal-modal__body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.pc-legal-modal__body th,
.pc-legal-modal__body td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid var(--bsa-line);
  vertical-align: top;
}
.pc-legal-modal__body th {
  font-weight: 700;
  color: var(--bsa-ink-900);
  background: var(--bsa-cream);
}
body.pc-modal-open { overflow: hidden; }

@media (max-width: 640px) {
  .pc-legal-modal { padding: 16px; }
  .pc-legal-modal__panel { max-height: 92vh; }
  .pc-legal-modal__header { padding: 18px 20px; }
  .pc-legal-modal__body { padding: 22px 22px 32px; }
}

/* ============================================================
   MOBILE FIXES (refonte globale <= 768px)
   ============================================================ */
@media (max-width: 768px) {
  .container { padding: 0 18px; }

  /* Hero */
  .hero { padding: 36px 0 56px; }
  .hero h1 {
    font-size: clamp(34px, 10vw, 56px);
    line-height: 1.04;
    letter-spacing: -0.03em;
  }
  .hero__sub {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.55;
  }
  .hero__reassure-extra { display: none; }
  .hero__price-card {
    margin-top: 22px;
    padding: 16px 18px;
    gap: 12px;
    border-radius: 14px;
  }
  .hero__price-card .amount { font-size: 26px; }
  .hero__price-card .meta { font-size: 13px; gap: 2px; }
  .hero__cta-row {
    margin-top: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero__cta-row .btn { width: 100%; }
  .hero__reassure {
    margin-top: 14px;
    font-size: 12.5px;
    flex-wrap: wrap;
    gap: 4px 8px;
    line-height: 1.5;
  }
  .hero__eyebrow { font-size: 11px; margin-bottom: 14px; letter-spacing: 0.14em; }

  /* Buttons globaux */
  .btn { font-size: 15px; padding: 16px 22px; }
  .btn--lg { font-size: 16px; padding: 18px 26px; }
  .btn--xl { font-size: 17px; padding: 20px 28px; }

  /* Sections */
  .section { padding: 64px 0; }
  .section__head { margin-bottom: 36px; }
  .section__head h2 { font-size: clamp(26px, 6vw, 36px); margin-top: 12px; }
  .section__head p { font-size: 16px; margin-top: 14px; }

  /* Bonus band */
  .bonus-band { padding: 28px 0; }
  .bonus-band__inner { gap: 14px; }
  .bonus-band__title { font-size: 17px; line-height: 1.3; }
  .bonus-band__meta { font-size: 13.5px; margin-top: 6px; }
  .bonus-band__badge {
    font-size: 14px;
    padding: 10px 18px;
    white-space: normal;
    text-transform: none;
    letter-spacing: 0.01em;
    line-height: 1.35;
    text-align: center;
    align-self: flex-start;
  }
  .bonus-band__badge-short { display: none; }
  .bonus-band__badge-long { display: inline; font-weight: 700; }
  .bonus-band__meta-date { display: none; }

  /* Proof */
  .proof { padding: 44px 0 48px; }
  .proof__lede { font-size: 15.5px; line-height: 1.6; padding: 0 4px; }
  .proof__media { margin-top: 32px; gap: 16px; }

  /* Promesse */
  .promise { padding: 64px 0; }
  .promise__head { margin-bottom: 32px; }
  .promise__head h2 { font-size: clamp(26px, 6vw, 38px); }
  .promise__body p { font-size: 16px; margin-bottom: 16px; }
  .promise__body .lead { font-size: 17px; padding-left: 16px; }

  /* Pack */
  .pack__head { margin-bottom: 44px; }
  .pack__head h2 { font-size: clamp(26px, 6vw, 38px); }
  .pack-block { margin-bottom: 48px; }
  .pack-block__head { gap: 10px; margin-bottom: 18px; }
  .pack-block__icon { font-size: 22px; }
  .pack-block__title { font-size: 20px; }
  .pack-block__lede { font-size: 15px; margin-bottom: 20px; }

  /* Chapters */
  .chapters { gap: 10px; }
  .chapter-card { padding: 16px 18px; }
  .chapter-card__title { font-size: 17px; }
  .chapter-card__items { font-size: 14px; }

  /* Tools */
  .tools { gap: 10px; }
  .tool-card { padding: 16px; gap: 12px; }
  .tool-card__title { font-size: 15px; }
  .tool-card__desc { font-size: 13.5px; }
  .tool-card__quota { font-size: 11px; padding: 3px 8px; }

  /* Mosaic */
  .tools-preview { margin-top: 32px; padding-top: 26px; }
  .tools-preview__head { margin-bottom: 18px; gap: 10px; }
  .tools-preview__title { font-size: 16px; }
  .mosaic { gap: 12px; }

  /* Masterclass */
  .masterclasses { gap: 16px; }
  .mc-card__body { padding: 18px 18px 20px; }
  .mc-card__banner { padding: 14px 18px 14px; }
  .mc-card__title { font-size: 17px; }
  .mc-card__expert { font-size: 13px; margin-bottom: 10px; }
  .mc-card__expert-bio { font-size: 13px; padding-left: 12px; margin-bottom: 12px; }
  .mc-card__desc { font-size: 14px; }

  /* Side cards */
  .side-card { padding: 22px; }
  .side-card__title { font-size: 18px; }
  .side-card__desc { font-size: 14px; }

  /* Timeline */
  .timeline__note { margin-top: 36px; font-size: 14.5px; padding: 0 8px; }
  .tl-step__range { font-size: 14.5px; letter-spacing: 0.06em; }
  .tl-step__label { font-size: 14px; }

  /* Audience */
  .audience__item { padding: 16px 18px; font-size: 15px; gap: 12px; grid-template-columns: 32px 1fr; }
  .audience__check { width: 26px; height: 26px; font-size: 14px; }

  /* Creator */
  .creator__body h2 { font-size: clamp(26px, 6vw, 36px); }
  .creator__role { font-size: 14px; }
  .creator__stat-num { font-size: 24px; }
  .creator__stat-label { font-size: 12px; }
  .creator__bio { font-size: 15.5px; }

  /* Testimonials */
  .testimonials__grid--3 { gap: 16px; margin-top: 36px; }
  .testimonial { padding: 28px 22px 24px; border-radius: 16px; }
  .testimonial__quote { font-size: 15px; }
  .testimonial__quote:first-of-type::before { font-size: 60px; line-height: 0.55; margin-bottom: 0; }
  .testimonial__author { font-size: 12.5px; padding-top: 14px; }

  /* FAQ */
  .faq__list { padding: 0; }
  .faq-item summary { font-size: 16px; padding: 20px 0; gap: 14px; }
  .faq-item__body { font-size: 15px; padding-bottom: 22px; }

  /* CTA final */
  .cta-final { padding: 72px 0; }
  .cta-final h2 { font-size: clamp(28px, 7vw, 44px); margin-bottom: 18px; }
  .cta-final p { font-size: 16px; margin-bottom: 12px; }
  .cta-final .price-line { font-size: 15px; margin-top: 24px; }
  .cta-final .bonus-line { font-size: 13.5px; padding: 0 4px; line-height: 1.5; }
  .cta-final .btn--xl { margin-top: 24px; width: 100%; }
  .cta-final__reassure { font-size: 12px; margin-top: 16px; padding: 0 8px; line-height: 1.5; }

  /* Footer */
  .footer { padding-bottom: 100px; }  /* laisse de la place pour la sticky CTA */
  .footer__links { gap: 14px 18px; flex-direction: column; align-items: center; }
  .footer__meta { font-size: 12px; }
}

/* Eviter overflow horizontal global SANS casser position sticky du header.
   overflow-x: clip cree pas de containing block pour sticky (vs hidden). */
body { overflow-x: clip; }
@supports not (overflow-x: clip) {
  /* Fallback safari ancien: hidden sur body uniquement (pas html) */
  body { overflow-x: hidden; }
}
.hero__sub,
.bonus-band__title,
.bonus-band__meta,
.section__head p,
.promise__body p,
.audience__item,
.tool-card__desc,
.mc-card__expert-bio,
.testimonial__quote {
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

/* ============================================================
   Modal contact (Une question?)
   ============================================================ */
.pc-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  opacity: 0;
  transition: opacity 260ms var(--ease-out);
  pointer-events: none;
}
.pc-contact-modal[hidden] { display: none; }
.pc-contact-modal.is-open { opacity: 1; pointer-events: auto; }
.pc-contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 15, 12, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.pc-contact-modal__panel {
  position: relative;
  background: var(--bsa-paper);
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  border-radius: 18px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.55);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(12px) scale(0.98);
  transition: transform 320ms var(--ease-out);
}
.pc-contact-modal.is-open .pc-contact-modal__panel { transform: translateY(0) scale(1); }
.pc-contact-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 28px 22px;
  border-bottom: 1px solid var(--bsa-line);
  background: var(--bsa-cream);
  flex-shrink: 0;
}
.pc-contact-modal__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--bsa-ink-900);
  margin: 0;
}
.pc-contact-modal__sub {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--fg-2);
}
.pc-contact-modal__close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bsa-paper);
  border: 1px solid var(--bsa-line);
  font-size: 22px;
  line-height: 1;
  color: var(--bsa-ink-700);
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms var(--ease-out), border-color 200ms var(--ease-out);
}
.pc-contact-modal__close:hover { background: var(--bsa-ink-900); color: #fff; border-color: var(--bsa-ink-900); }
.pc-contact-modal__body {
  padding: 24px 28px 30px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

/* Form */
.pc-contact-form { display: flex; flex-direction: column; gap: 16px; }
.pc-contact-form__row { display: contents; }
.pc-contact-form__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pc-contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pc-contact-form__label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--fg-2);
}
.pc-contact-form__optional {
  color: var(--fg-3);
  font-weight: 500;
  font-size: 11.5px;
  margin-left: 4px;
}
.pc-contact-form__field input,
.pc-contact-form__field select,
.pc-contact-form__field textarea {
  font-family: inherit;
  font-size: 16px; /* >= 16px pour eviter le zoom iOS */
  color: var(--bsa-ink-900);
  background: var(--bsa-paper);
  border: 1px solid var(--bsa-line);
  border-radius: 10px;
  padding: 11px 14px;
  width: 100%;
  transition: border-color 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.pc-contact-form__field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}
.pc-contact-form__field input:focus,
.pc-contact-form__field select:focus,
.pc-contact-form__field textarea:focus {
  outline: none;
  border-color: var(--bsa-mint-500);
  box-shadow: 0 0 0 3px rgba(53, 199, 160, 0.18);
}
.pc-contact-form__footer {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-contact-form__submit {
  font-family: inherit;
  font-weight: 700;
  font-size: 15.5px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--bsa-green-900);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 200ms var(--ease-out), transform 200ms var(--ease-out);
  width: 100%;
}
.pc-contact-form__submit:hover { background: var(--bsa-green-800); transform: translateY(-1px); }
.pc-contact-form__submit:disabled { opacity: 0.55; cursor: progress; transform: none; }
.pc-contact-form__note {
  margin: 0;
  font-size: 12px;
  color: var(--fg-3);
  text-align: center;
  line-height: 1.5;
}
.pc-contact-form__status {
  margin-top: 4px;
  padding: 0 4px;
  font-size: 14px;
  line-height: 1.5;
  min-height: 0;
}
.pc-contact-form__status.is-error { color: var(--bsa-danger, #c0392b); }
.pc-contact-form__status.is-success {
  color: var(--bsa-green-700);
  background: var(--bsa-mint-100);
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--bsa-mint-300);
}

body.pc-modal-open { overflow: hidden; }

@media (max-width: 768px) {
  /* Mobile form: juste email + question (pas de qualification) */
  .pc-contact-form__row--qual,
  .pc-contact-form__field--tel { display: none; }
  .pc-contact-form__row--email { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .pc-contact-modal { padding: 16px; }
  .pc-contact-modal__header { padding: 20px 20px 16px; }
  .pc-contact-modal__title { font-size: 19px; }
  .pc-contact-modal__sub { font-size: 13px; }
  .pc-contact-modal__body { padding: 20px 20px 26px; }
  .pc-contact-form__row--2 { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   Modal tarifs (Toutes les formules BSA)
   ============================================================ */
.pc-pricing-modal {
  position: fixed;
  inset: 0;
  z-index: 310;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 24px;
  opacity: 0;
  transition: opacity 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
  pointer-events: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.pc-pricing-modal[hidden] { display: none; }
.pc-pricing-modal.is-open { opacity: 1; pointer-events: auto; }
.pc-pricing-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 15, 12, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.pc-pricing-modal__panel {
  position: relative;
  background: #f5f1ea;
  width: 100%;
  max-width: 1180px;
  border-radius: 18px;
  box-shadow: 0 40px 100px -20px rgba(0,0,0,0.55);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 40px auto;
  transform: translateY(12px) scale(0.98);
  transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pc-pricing-modal.is-open .pc-pricing-modal__panel { transform: translateY(0) scale(1); }
.pc-pricing-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 32px 22px;
  border-bottom: 1px solid #d9d3c5;
  background: #ffffff;
  flex-shrink: 0;
}
.pc-pricing-modal__title { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: #0e1f1a; margin: 0; }
.pc-pricing-modal__sub { margin: 4px 0 0; font-size: 14px; color: #46524e; }
.pc-pricing-modal__close {
  width: 38px; height: 38px; border-radius: 50%;
  background: #f5f1ea; border: 1px solid #d9d3c5;
  font-size: 22px; line-height: 1; color: #28342f;
  cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms, border-color 200ms;
}
.pc-pricing-modal__close:hover { background: #0e1f1a; color: #fff; border-color: #0e1f1a; }
.pc-pricing-modal__body { padding: 28px 32px 36px; }

/* Pricing grid */
.pc-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: start;
}

/* Pricing card */
.pc-price-card {
  background: #ffffff;
  border: 1px solid #d9d3c5;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 280ms cubic-bezier(0.2, 0.7, 0.2, 1), border-color 280ms;
}
.pc-price-card:hover { transform: translateY(-3px); box-shadow: 0 18px 32px -16px rgba(14,31,26,0.22); border-color: #7adcc0; }

/* Accent card (Accélération) */
.pc-price-card--accent { border-color: #35c7a0; box-shadow: 0 8px 22px -8px rgba(15, 136, 98, 0.3); }
.pc-price-card--accent .pc-price-card__head { background: #003a2a; }
.pc-price-card--accent .pc-price-card__name,
.pc-price-card--accent .pc-price-card__tag { color: #fff; }
.pc-price-card--accent .pc-price-card__tag { color: #7adcc0; }

/* Placeholder card */
.pc-price-card--placeholder { opacity: 0.7; border-style: dashed; }

.pc-price-card__head {
  padding: 18px 18px 14px;
  background: #f5f1ea;
  border-bottom: 1px solid #e8ebe9;
}
.pc-price-card__name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0e1f1a;
}
.pc-price-card__tag {
  font-size: 12px;
  font-weight: 600;
  color: #46524e;
  margin-top: 2px;
}
.pc-price-card__price {
  padding: 18px 18px 14px;
  font-size: 28px;
  font-weight: 700;
  color: #003a2a;
  letter-spacing: -0.02em;
}
.pc-price-card__price small {
  font-size: 14px;
  font-weight: 600;
  color: #8a938f;
  letter-spacing: 0;
}
.pc-price-card__features {
  padding: 0 18px 14px;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pc-price-card__features li {
  font-size: 13.5px;
  color: #46524e;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.pc-price-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #35c7a0;
}
.pc-price-card__features li strong { color: #0e1f1a; font-weight: 600; }
.pc-price-card__cta {
  display: block;
  margin: 8px 18px 18px;
  padding: 13px 16px;
  border-radius: 999px;
  background: #003a2a;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background 200ms, transform 200ms;
}
.pc-price-card__cta:hover { background: #014e38; transform: translateY(-1px); color: #fff; }
.pc-price-card__cta--disabled {
  background: #e8ebe9;
  color: #8a938f;
  cursor: default;
  pointer-events: none;
}
.pc-price-card--accent .pc-price-card__cta { background: #35c7a0; color: #003a2a; }
.pc-price-card--accent .pc-price-card__cta:hover { background: #7adcc0; }

@media (max-width: 980px) {
  .pc-pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 640px) {
  .pc-pricing-modal { padding: 16px; }
  .pc-pricing-modal__panel { margin: 16px auto; }
  .pc-pricing-modal__header { padding: 20px 20px 16px; }
  .pc-pricing-modal__body { padding: 20px 20px 28px; }
  .pc-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pc-price-card__price { font-size: 24px; }
}
