/* ============================================================
   VIP DAY — direction artistique
   Épuré, accessible. Une échelle typographique stricte :
     11px  étiquettes uppercase
     13px  méta / notes
     14px  petit texte fonctionnel
     16px  corps
     18px  confort de lecture (récit, leads)
   + display Gilroy (h1, h2, h3, prix).
   Contrastes : encres ≥ 4.5:1 sur leurs fonds. L'orange vif ne
   porte du texte QUE sur fond sombre ; sur fond clair les accents
   passent en orange profond (#E8622E) ou en encre.
   Variables globales : voir assets/css/global.css
   ============================================================ */
:root {
  --header-color: var(--light);

  /* ---- Échelle typographique ---- */
  --fs-label: 11px;
  --fs-meta:  13px;
  --fs-sm:    14px;
  --fs-base:  16px;
  --fs-read:  18px;
  --fs-h3:    clamp(24px, 2.6vw, 28px);
  --fs-h2:    clamp(30px, 3.8vw, 48px);
  --fs-h1:    clamp(40px, 4.8vw, 68px);

  /* ---- Encres sur fond clair (crème / blanc / sable) ---- */
  --ink-body: rgba(29,29,29,.78);   /* corps — ~8:1  */
  --ink-soft: rgba(29,29,29,.58);   /* méta  — ~4.9:1 */

  /* ---- Encres sur fond sombre ---- */
  --cream-body: rgba(245,242,239,.75);  /* corps — ~8:1  */
  --cream-soft: rgba(245,242,239,.58);  /* méta  — ~5:1  */

  /* ---- Accent lisible sur fond clair ---- */
  --accent-deep: #E8622E;

  /* ---- Structure ---- */
  --vip-hairline: 1.5px solid rgba(29,29,29,.18);
  --vip-cream-hairline: 1px solid rgba(245,242,239,.16);
  --vip-ease: cubic-bezier(.16,1,.3,1);
  --vip-pad: 140px;
  --vip-pad-x: 64px;
}
@media (max-width: 900px) {
  :root { --vip-pad: 80px; --vip-pad-x: 24px; }
}

html { scroll-behavior: smooth; }

/* Le logo doit rester lisible sur fonds dark et clair */
.header-logo { color: #fff !important; mix-blend-mode: difference; }

body {
  background: var(--light);
  color: var(--dark);
  font-size: var(--fs-base);
  line-height: 1.7;
  overflow-x: hidden;
}

.vip :where(a) { color: inherit; text-decoration: none; }
.vip em { font-style: normal; }
.vip :where(h1, h2, h3) { margin: 0; }
/* :where() = spécificité zéro : le reset ne peut jamais gagner
   contre une classe de composant */
.vip :where(p, ul) { margin: 0; padding: 0; }
.vip li { list-style: none; }

.vip-inner { max-width: 1140px; margin: 0 auto; }

/* Rythme des sections — une seule valeur, partout */
.vip-section { padding: var(--vip-pad) var(--vip-pad-x); }

/* Les ancres atterrissent avec de l'air */
#offre, #appel { scroll-margin-top: 24px; }

/* ============================================================
   RÉVÉLATION AU SCROLL — sobre : 14px, une seule direction
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .7s var(--vip-ease),
    transform .7s var(--vip-ease);
  transition-delay: var(--rd, 0s);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   BOUTONS — la signature COKTL : le radius se morphe au survol
   ============================================================ */
.vip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-size: var(--fs-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  padding: 18px 30px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: none;
  white-space: nowrap;
  text-decoration: none;
  transition:
    border-radius .35s ease,
    background .25s ease,
    border-color .25s ease,
    color .25s ease,
    transform .25s var(--vip-ease);
}
.vip-btn:hover { border-radius: var(--radius-full); transform: translateY(-1px); }
.vip-btn:active { transform: translateY(0); }
.vip-btn:focus-visible,
.vip-faq-item summary:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 3px;
}

.vip-btn-arrow {
  display: inline-block;
  transition: transform .3s var(--vip-ease);
}
.vip-btn:hover .vip-btn-arrow { transform: translateX(5px); }

.vip-btn-primary { background: var(--orange); color: var(--dark); }
.vip-btn-primary:hover { background: var(--accent-deep); }

.vip-btn-ghost {
  background: transparent;
  color: var(--light);
  border: 1.5px solid rgba(245,242,239,.35);
  padding: 16.5px 28.5px;
}
.vip-btn-ghost:hover { border-color: var(--light); background: rgba(245,242,239,.06); }

.vip-btn-block { width: 100%; padding: 21px 30px; }
.vip-btn-sm { padding: 13px 22px; font-size: var(--fs-meta); }

/* ============================================================
   TYPOGRAPHIE COMMUNE
   ============================================================ */
/* Étiquette de section */
.vip-eyebrow {
  font-size: var(--fs-label);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--dark);
  margin-bottom: 20px;
}
.vip-dark .vip-eyebrow { color: var(--light); }

.vip-h2 {
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: var(--fs-h2);
  line-height: 1.06;
  letter-spacing: -0.025em;
  -webkit-text-stroke: 0.3px currentColor;
  max-width: 20ch;
}
.vip-h2 em { color: var(--accent-deep); }
.vip-dark .vip-h2 { color: var(--light); }
.vip-dark .vip-h2 em { color: var(--orange); }

.vip-lead {
  font-size: var(--fs-read);
  line-height: 1.75;
  max-width: 56ch;
  margin-top: 24px;
  color: var(--ink-body);
}
.vip-dark .vip-lead { color: var(--cream-body); }

.vip-dark { background: var(--dark); }

/* ============================================================
   HERO
   ============================================================ */
.vip-hero {
  background: var(--dark);
  padding: 150px var(--vip-pad-x) 0;
  position: relative;
}
@media (max-width: 900px) { .vip-hero { padding-top: 112px; } }

.vip-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 900px) { .vip-hero-inner { padding-bottom: 72px; } }

/* Entrée orchestrée : un seul mouvement, cascade douce */
.vip-hero-inner > * {
  animation: vip-rise .9s var(--vip-ease) both;
}
.vip-hero-inner > *:nth-child(1) { animation-delay: .05s; }
.vip-hero-inner > *:nth-child(2) { animation-delay: .15s; }
.vip-hero-inner > *:nth-child(3) { animation-delay: .28s; }
.vip-hero-inner > *:nth-child(4) { animation-delay: .4s; }
@keyframes vip-rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .vip-hero-inner > * { animation: none; }
}

.vip-hero-eyebrow {
  font-size: var(--fs-sm);
  font-weight: 600;
  font-style: italic;
  color: var(--cream-body);
}

/* Le titre en monument, centré — l'ouverture que la page
   mérite, en écho au FAQ monumental qui la ferme */
.vip-hero-title {
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: clamp(44px, 6.4vw, 84px);
  line-height: .98;
  letter-spacing: -0.035em;
  -webkit-text-stroke: 0.4px currentColor;
  color: var(--light);
  max-width: 15ch;
  margin-top: 48px;
}
.vip-hero-title em { color: var(--orange); }

.vip-hero-desc {
  font-size: var(--fs-read);
  line-height: 1.75;
  color: var(--cream-body);
  max-width: 52ch;
  margin-top: 36px;
}
.vip-hero-desc strong {
  color: var(--light);
  font-weight: 700;
}

.vip-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 44px;
}

/* ============================================================
   LOGOS CLIENTS — même langage que l'accueil : défilement,
   N&B au repos, couleur au survol, pause quand on s'attarde
   ============================================================ */
.vip-logos {
  background: var(--light);
  border-bottom: var(--vip-hairline);
  padding: 26px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.vip-logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: vip-logos-scroll 38s linear infinite;
}
.vip-logos:hover .vip-logos-track { animation-play-state: paused; }
.vip-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  flex-shrink: 0;
}
.vip-logo img {
  width: auto;
  filter: grayscale(100%) opacity(.65);
  transition: filter .3s ease;
}
.vip-logo:hover img { filter: grayscale(0%) opacity(1); }
@keyframes vip-logos-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .vip-logos-track { animation: none; } }

/* ============================================================
   LE CONSTAT — pur passage éditorial, mesure étroite
   ============================================================ */
.vip-story { padding: var(--vip-pad) var(--vip-pad-x) 0; }

.vip-story-inner {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.vip-story-inner p {
  font-size: var(--fs-read);
  line-height: 1.8;
  color: var(--ink-body);
}
.vip-story-inner p:first-child { color: var(--dark); }

.vip-story-punch {
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: clamp(26px, 3vw, 36px) !important;
  line-height: 1.15 !important;
  letter-spacing: -.02em;
  -webkit-text-stroke: .3px currentColor;
  color: var(--dark) !important;
  padding-top: 12px;
}

/* ============================================================
   COMMENT ÇA MARCHE — triptyque de cartes horizontales,
   le jour J (Pendant) en carte sombre au centre
   ============================================================ */
.vip-steps-head { max-width: 780px; margin-bottom: 72px; }
@media (max-width: 900px) { .vip-steps-head { margin-bottom: 48px; } }

.vip-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) { .vip-steps { grid-template-columns: 1fr; gap: 20px; } }

.vip-step {
  position: relative;
  background: #fff;
  border: 1.5px solid rgba(29,29,29,.08);
  border-radius: 24px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: transform .35s var(--vip-ease), box-shadow .35s ease;
}
/* La signature : la ligne orange se dessine en tête de carte */
.vip-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--vip-ease);
}
.vip-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(29,29,29,.1);
}
.vip-step:hover::before { transform: scaleX(1); }

.vip-step-label {
  font-size: var(--fs-label);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent-deep);
  margin-bottom: 4px;
}
.vip-step h3 {
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: var(--fs-h3);
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.vip-step p {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--ink-body);
}
.vip-step-note {
  font-size: var(--fs-meta) !important;
  line-height: 1.65 !important;
  color: var(--ink-soft) !important;
  font-style: italic;
  margin-top: auto;
  padding-top: 12px;
}

/* Le jour J — la carte sombre au centre du triptyque */
.vip-step--hero {
  background: var(--dark);
  border-color: var(--dark);
}
.vip-step--hero .vip-step-label { color: var(--orange); }
.vip-step--hero h3 { color: var(--light); }
.vip-step--hero p { color: var(--cream-body); }
.vip-step--hero:hover { box-shadow: 0 24px 60px rgba(29,29,29,.28); }

@media (max-width: 560px) { .vip-step { padding: 34px 28px; } }

/* Hairline interactive des garanties : la ligne orange se
   dessine de gauche à droite au survol */
.vip-garantie {
  position: relative;
  border-top: var(--vip-hairline);
}
.vip-garantie::before {
  content: '';
  position: absolute;
  top: -1.5px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--vip-ease);
}
.vip-garantie:hover::before { transform: scaleX(1); }

/* ============================================================
   TÉMOIGNAGES — le carrousel de la home, à l'identique
   (accents petits textes en orange profond pour la lisibilité)
   ============================================================ */
.section-header {
  display: flex; align-items: center; justify-content: flex-end;
  margin-bottom: 32px; gap: 24px;
}
.section-link {
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0;
  color: var(--dark); text-decoration: none;
  border-bottom: 2px solid var(--dark); padding-bottom: 2px;
  transition: color .2s, border-color .2s;
  white-space: nowrap; cursor: none;
}
.section-link:hover { color: var(--accent-deep); border-color: var(--accent-deep); }

/* Maçonnerie : tous les avis visibles, chacun à sa hauteur */
.testi-masonry {
  columns: 3;
  column-gap: 24px;
}
@media (max-width: 1000px) { .testi-masonry { columns: 2; } }
@media (max-width: 680px)  { .testi-masonry { columns: 1; } }

.testi-card {
  break-inside: avoid;
  margin-bottom: 24px;
  background: #fff;
  border: 1.5px solid rgba(29,29,29,.08);
  border-radius: 20px;
  padding: 34px 32px;
  display: flex; flex-direction: column; gap: 22px;
  box-sizing: border-box;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.testi-card:hover {
  border-color: transparent;
  box-shadow: 0 16px 44px rgba(29,29,29,.09);
}

.testi-stars {
  color: var(--accent-deep);
  font-size: 12px; letter-spacing: 2px;
}
.testi-quote {
  font-size: 15px; font-weight: 400;
  line-height: 1.75; color: var(--ink-body);
  flex: 1;
}
.testi-quote strong { color: var(--accent-deep); font-weight: 700; }
.testi-author {
  padding-top: 20px;
  border-top: 1.5px solid rgba(29,29,29,.1);
  display: flex; align-items: center; gap: 14px;
}
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; object-position: center top;
  flex-shrink: 0;
}
.testi-avatar-initials {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800;
  color: var(--dark); flex-shrink: 0; letter-spacing: 0.5px;
}
.testi-name {
  font-size: var(--fs-sm); font-weight: 800;
  color: var(--dark); margin-bottom: 3px;
}
.testi-role {
  font-size: 12px; font-weight: 400;
  color: var(--ink-soft); line-height: 1.4;
}

@media (max-width: 900px) {
  .section-header { margin-bottom: 24px; }
}

/* ============================================================
   CONCRÈTEMENT — titre sticky à gauche, les 18 sujets en index
   sur deux colonnes de rangs hairline à droite
   ============================================================ */
.vip-topics-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
@media (max-width: 900px) {
  .vip-topics-layout { grid-template-columns: 1fr; gap: 48px; }
}

.vip-topics-head {
  position: sticky;
  top: 110px;
}
@media (max-width: 900px) { .vip-topics-head { position: static; } }

/* Les sujets en pills — teal sur sombre, subtiles au repos,
   pleines au survol */
.vip-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
}
.vip-topics li {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--teal);
  background: rgba(140,223,200,.07);
  border: 1px solid rgba(140,223,200,.3);
  border-radius: var(--radius-full);
  padding: 10px 20px;
  transition:
    background .25s ease,
    border-color .25s ease,
    color .25s ease,
    transform .25s var(--vip-ease);
}
.vip-topics li:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--dark);
  transform: translateY(-2px);
}

/* La question du timing + la promesse, dans la colonne sticky */
.vip-topics-q {
  font-size: var(--fs-read);
  font-weight: 700;
  line-height: 1.5;
  color: var(--light);
  margin-top: 36px;
}
.vip-topics-a {
  font-size: var(--fs-read);
  line-height: 1.75;
  color: var(--cream-body);
  margin-top: 10px;
  max-width: 46ch;
}

/* ============================================================
   LE DUO — section claire, deux portraits 50/50 séparés par
   une hairline centrée dans la gouttière
   ============================================================ */
.vip-duo-intro {
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.2;
  letter-spacing: -.02em;
  -webkit-text-stroke: .3px currentColor;
  color: var(--dark);
  max-width: 32ch;
  margin-bottom: 80px;
}
.vip-duo-intro em { color: var(--accent-deep); }

.vip-duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 760px) { .vip-duo-grid { grid-template-columns: 1fr; gap: 20px; } }

/* Les cartes du duo — la photo EST la carte. Au survol :
   couleur + zoom DANS le cadre, la carte ne bouge pas */
.vip-duo-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.vip-duo-photo {
  margin: 0;
  max-width: 460px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(29,29,29,.05);
}
.vip-duo-photo img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(100%);
  transition: filter .6s ease, transform .7s var(--vip-ease);
}
.vip-duo-card:hover .vip-duo-photo img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
/* Pierre : cadrage sur le visage */
.vip-duo-card:nth-child(2) .vip-duo-photo img { object-position: center 22%; }

.vip-duo-card h3 {
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -.02em;
  color: var(--dark);
}
.vip-duo-card p {
  font-size: var(--fs-base);
  line-height: 1.75;
  color: var(--ink-body);
  max-width: 46ch;
}

.vip-duo-note {
  margin-top: 64px;
  font-size: var(--fs-sm);
  font-style: italic;
  color: var(--ink-soft);
}

/* ============================================================
   GARANTIE — bandeau en bas de l'offre, trois colonnes,
   symboles typographiques
   ============================================================ */
.vip-offer-garanties { margin-top: 110px; }
@media (max-width: 900px) { .vip-offer-garanties { margin-top: 64px; } }

.vip-garanties-intro {
  font-size: var(--fs-read);
  line-height: 1.75;
  color: var(--ink-body);
  max-width: 52ch;
}

/* Badge sticker + les trois colonnes */
.vip-garanties-row {
  display: flex;
  align-items: center;
  gap: 64px;
  margin-top: 40px;
}
.vip-garantie-badge {
  width: 160px;
  height: auto;
  flex-shrink: 0;
  transform: rotate(-4deg);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.vip-garanties-row:hover .vip-garantie-badge { transform: rotate(0deg) scale(1.03); }

.vip-garanties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  flex: 1;
}
@media (max-width: 860px) {
  .vip-garanties-row { flex-direction: column; align-items: flex-start; gap: 40px; }
  .vip-garantie-badge { width: 130px; }
  .vip-garanties { grid-template-columns: 1fr; gap: 44px; }
}

.vip-garantie { padding-top: 26px; }
.vip-garantie h3 {
  font-size: var(--fs-base);
  font-weight: 800;
  margin-bottom: 8px;
}
.vip-garantie p {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--ink-body);
}

/* ============================================================
   OFFRE — le prix en monument sticky à gauche (comme le titre
   de la FAQ), la valeur en rangs sur hairlines à droite,
   le bonus en encart sombre. Fond sable : le moment chaud.
   ============================================================ */
.vip-offer {
  background: var(--sand);
  padding: var(--vip-pad) var(--vip-pad-x);
}

.vip-offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
@media (max-width: 900px) {
  .vip-offer-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* --- Col gauche : promesse + prix + CTA, sticky --- */
.vip-offer-side {
  position: sticky;
  top: 110px;
}
@media (max-width: 900px) { .vip-offer-side { position: static; } }

.vip-offer-price {
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--dark);
  -webkit-text-stroke: .3px currentColor;
  margin-top: 8px;
}
.vip-offer-price small {
  font-size: .45em;
  font-weight: 900;
  letter-spacing: -.01em;
}
.vip-offer-klarna {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-body);
  margin-top: 8px;
}
.vip-offer-side .vip-btn { margin-top: 32px; }
.vip-offer-secure {
  font-size: var(--fs-meta);
  color: var(--ink-body);
  text-align: center;
  margin-top: 14px;
}

/* --- Col droite : la valeur, rang par rang --- */
.vip-offer-list li {
  position: relative;
  border-top: var(--vip-hairline);
  padding: 20px 0 20px 38px;
  font-size: var(--fs-read);
  line-height: 1.6;
  color: var(--ink-body);
}
.vip-offer-list li:last-child { border-bottom: var(--vip-hairline); }
.vip-offer-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 20px;
  color: var(--dark);
  font-weight: 800;
}
/* La signature de la page : la ligne orange se dessine au survol */
.vip-offer-list li::after {
  content: '';
  position: absolute;
  top: -1.5px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--vip-ease);
}
.vip-offer-list li:hover::after { transform: scaleX(1); }

/* Le bonus — encart sombre, écho inversé de la promesse orange */
.vip-offer-bonus {
  margin-top: 48px;
  background: var(--dark);
  border-radius: 16px;
  padding: 30px 34px;
}
.vip-offer-bonus-label {
  font-size: var(--fs-label);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--teal);
  margin-bottom: 8px;
}
.vip-offer-bonus p:last-child {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--cream-body);
}
@media (max-width: 560px) { .vip-offer-bonus { padding: 24px 26px; } }

/* ============================================================
   APPEL DÉCOUVERTE — trame consultation, en 2 colonnes :
   pitch | panneau Calendly crème
   ============================================================ */
.vip-call { padding: var(--vip-pad) var(--vip-pad-x); }

.vip-call-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .vip-call-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* --- Col gauche : pitch --- */
.vip-call-title {
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: clamp(32px, 3.4vw, 52px);
  letter-spacing: -.03em;
  line-height: .98;
  -webkit-text-stroke: 0.4px currentColor;
  color: var(--light);
}
.vip-call-title em { color: var(--orange); }
.vip-call-desc {
  font-size: var(--fs-read);
  line-height: 1.7;
  color: var(--cream-body);
  margin-top: 20px;
  max-width: 44ch;
}

/* --- Col droite : panneau Calendly crème --- */
.vip-call-panel {
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
  padding: 10px;
}
.vip-call-panel .calendly-inline-widget {
  width: 100% !important;
  min-width: 0 !important;
}

/* ============================================================
   FAQ — la page ferme en sombre. Titre monumental sticky à
   gauche, questions à droite en colonnes millimétrées :
   [ numéro 44px | question 1fr | cercle 40px ], la réponse
   s'aligne exactement sous la question. Une seule question
   ouverte à la fois (accordéon natif via name="vip-faq").
   Sur fond dark, l'orange vif est pleinement lisible (4.6:1).
   ============================================================ */
.vip-faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: start;
}
@media (max-width: 900px) {
  .vip-faq-layout { grid-template-columns: 1fr; gap: 48px; }
}

.vip-faq-head {
  position: sticky;
  top: 110px;
}
@media (max-width: 900px) { .vip-faq-head { position: static; } }

.vip-faq-title {
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: var(--fs-h2);
  line-height: 1.06;
  letter-spacing: -.025em;
  -webkit-text-stroke: 0.3px currentColor;
  color: var(--dark);
}

.vip-faq { display: flex; flex-direction: column; }

/* Même signature que le reste de la page : la ligne orange
   se dessine de gauche à droite ; l'item ouvert la garde */
.vip-faq-item {
  position: relative;
  border-top: var(--vip-hairline);
}
.vip-faq-item:last-child { border-bottom: var(--vip-hairline); }
.vip-faq-item::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--vip-ease);
  pointer-events: none;
}
.vip-faq-item:hover::before,
.vip-faq-item[open]::before { transform: scaleX(1); }

/* Grille de rang : question / cercle — colonnes fixes */
.vip-faq-item summary {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 32px;
  column-gap: 20px;
  align-items: start;
  padding: 18px 0;
  cursor: none;
}
.vip-faq-item summary::-webkit-details-marker { display: none; }

.vip-faq-q {
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: 16.5px;
  letter-spacing: -.01em;
  color: var(--dark);
  line-height: 1.32;
  transition: color .25s ease;
}
.vip-faq-item:hover .vip-faq-q { color: var(--accent-deep); }
.vip-faq-item[open] .vip-faq-q { color: var(--dark); }

/* Le bouton-cercle — même mécanique que le bouton fermer du
   menu : rotation à ressort + remplissage orange au survol */
.vip-faq-mark {
  width: 28px;
  height: 28px;
  margin-top: -2px; /* centre optique sur la 1re ligne de question */
  border: 1.5px solid rgba(29,29,29,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  color: var(--dark);
  justify-self: end;
  transition:
    transform .4s cubic-bezier(.34,1.56,.64,1),
    background .2s ease,
    border-color .2s ease,
    color .2s ease;
}
.vip-faq-item:hover .vip-faq-mark {
  transform: rotate(90deg);
  background: var(--orange);
  border-color: var(--orange);
  color: var(--dark);
}
.vip-faq-item[open] .vip-faq-mark {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--dark);
  transform: rotate(45deg);
}
/* Ouvert + survol : le × repart d'un quart de tour à ressort */
.vip-faq-item[open]:hover .vip-faq-mark { transform: rotate(135deg); }

/* La réponse s'aligne sous la question, avec un peu d'air avant
   la question suivante */
.vip-faq-a {
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: var(--ink-body);
  max-width: 56ch;
  padding: 0 64px 24px 0;
  animation: vip-faq-in .4s var(--vip-ease) both;
}
@keyframes vip-faq-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}
@media (max-width: 560px) {
  .vip-faq-item summary { grid-template-columns: 1fr 28px; column-gap: 14px; }
  .vip-faq-a { padding: 0 0 20px; }
  .vip-faq-q { font-size: 15.5px; }
}

/* ============================================================
   STICKY CTA — capsule flottante, même langage que la bannière
   confidentialité : l'objet posé, ombre douce, entrée à ressort
   ============================================================ */
.vip-sticky {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 300;
  width: min(720px, calc(100vw - 32px));
  background: rgba(29,29,29,.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(245,242,239,.14);
  border-radius: 18px;
  padding: 14px 14px 14px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  transform: translate(-50%, calc(100% + 36px));
  transition:
    transform .55s cubic-bezier(.34,1.4,.64,1),
    box-shadow .3s ease;
}
.vip-sticky.is-visible { transform: translate(-50%, 0); }
.vip-sticky.is-visible:hover {
  transform: translate(-50%, -3px);
  box-shadow: 0 26px 70px rgba(0,0,0,.45);
}

.vip-sticky-info p { margin: 0; }
.vip-sticky-price {
  font-family: var(--font-logo);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: -.02em;
  color: var(--light);
}
.vip-sticky-sub {
  font-size: 12px;
  color: var(--cream-soft);
  margin-top: 3px;
  line-height: 1.5;
}
.vip-sticky-price em {
  font-style: italic;
  color: var(--teal);
}

.vip-sticky .vip-btn {
  padding: 15px 26px;
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .vip-sticky {
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 10px 10px 10px 20px;
    gap: 14px;
  }
  .vip-sticky-price { font-size: 15px; }
  .vip-sticky-sub { display: none; }
  .vip-sticky .vip-btn { padding: 13px 20px; }
}
