/* ============================================================
   ascension-v2.css — Surcharges page de vente L'Ascension v2
   Base : style.css (variables, composants, typographie)
   ============================================================ */

/* Body : gradient légèrement différent de la base */
body {
  background: linear-gradient(to bottom, #101216 0%, #040405 100%);
  min-height: 100vh;
}

/* ===========================
   NAVBAR PILL
   =========================== */

.navbar-v2 {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  white-space: nowrap;
}

.navbar-v2-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.5rem 1.5rem 0.5rem 0.8rem;
  background: rgba(16, 18, 22, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.navbar-v2-logo {
  display: flex;
  align-items: center;
}

.navbar-v2-logo img {
  width: 38px;
  height: 38px;
  display: block;
}

.navbar-v2-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar-v2-links a {
  font-size: var(--font-xs);
  font-weight: 500;
  color: rgba(246, 246, 246, 0.85);
  text-decoration: none;
  transition: color 200ms ease;
}

.navbar-v2-links a:hover {
  color: var(--global-color-yellow);
}

.btn-nav-candidater {
  padding: 0.5rem 1.1rem;
  font-size: var(--font-xs);
  font-weight: 600;
  color: var(--global-color-black);
  background-color: var(--global-color-yellow);
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 200ms ease;
  display: inline-block;
}

.btn-nav-candidater:hover {
  opacity: 0.85;
}

/* CTA mobile — caché sur desktop */
.nav-cta-mobile { display: none; }

/* Photo hover zoom */
.text-picture-image {
  overflow: hidden;
}

.text-picture-image img {
  transition: transform 450ms ease;
}

.text-picture-image img:hover {
  transform: scale(1.05);
}

/* JS parallax — override CSS fixed */
.parallax-bg {
  background-attachment: scroll;
  height: 130%;
  top: -15%;
  bottom: auto;
}

/* ===========================
   HERO V2
   =========================== */

.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  overflow: hidden;
}

/* Dots — réutilise .floating-dots + animation float de style.css */
.hero-v2 .floating-dots {
  z-index: 0;
}

/* Tous les enfants directs au-dessus des dots */
.hero-v2 > *:not(.floating-dots) {
  position: relative;
  z-index: 1;
}

/* Tags row */
.hero-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.75rem;
  flex-wrap: wrap;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: var(--font-sm);
  color: rgba(246, 246, 246, 0.85);
  background: rgba(255, 255, 255, 0.03);
}

.hero-tag i {
  color: var(--global-color-white);
  font-size: 0.85rem;
  opacity: 0.75;
}

/* Photos empilées dans le tag "+160 profils" — réutilise .client-photos de style.css */
.hero-tag .client-photos {
  margin-right: 0.25rem;
}

.hero-tag .client-photos img {
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  margin-left: -5px; /* moins d'overlap pour voir les têtes */
}

.hero-tag .client-photos img:first-child {
  margin-left: 0;
}

/* Tag "+160 profils" — padding gauche pour aérer */
.hero-tag--profiles {
  padding-left: 0.75rem;
}

/* Titre principal */
.hero-v2-title {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--font-hero);
  font-weight: 800;
  color: var(--global-color-white);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

/* Sous-titre */
.hero-v2-subtitle {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--font-xl);
  font-weight: 300;
  color: var(--global-color-white);
  opacity: 0.9;
  line-height: 1.35;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

/* CTA hero — réutilise .button + surcharge pill */
.btn-hero {
  border-radius: 999px;
  padding: 0.9rem 2.2rem;
  font-size: var(--font-sm);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* Flèche bas */
.hero-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--global-color-white);
  opacity: 0.5;
  font-size: 1.1rem;
  transition: opacity 200ms ease;
  animation: hero-bounce 2.5s ease-in-out infinite;
}

.hero-arrow:hover {
  opacity: 0.9;
}

@keyframes hero-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}


/* ===========================
   SECTION POST-HERO
   =========================== */

.section-post-hero {
  background-color: var(--global-color-dark-gray);
  width: 100%;
  padding: 5rem 0;
}

.section-post-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
  text-align: left;
}

/* Texte gauche */
.post-hero-brand {
  font-family: 'Urbanist', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--global-color-yellow);
  margin-bottom: 1rem;
}

.post-hero-desc {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--font-md);
  font-weight: 700;
  color: var(--global-color-white);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.post-hero-pitch {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--font-lg);
  font-weight: 300;
  line-height: 1.5;
  color: var(--global-color-white);
  opacity: 0.85;
}

.post-hero-pitch .highlight {
  font-weight: 400;
}

/* Collage 3 photos — chevauchement stylisé */
.post-hero-collage {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-shrink: 0;
}

.post-hero-collage-img {
  overflow: hidden;
  border-radius: var(--global-border-radius);
  position: relative;
  flex-shrink: 0;
}

.post-hero-collage-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Gauche : légèrement en dessous du milieu, passe devant */
.post-hero-collage-img--1 {
  width: 155px;
  height: 218px;
  z-index: 3;
  transform: translate(-12px, 22px);
  margin-right: -22px;
}

/* Milieu : plus grand, référence visuelle */
.post-hero-collage-img--2 {
  width: 182px;
  height: 255px;
  z-index: 2;
}

/* Droite : plus petit, passe derrière le milieu */
.post-hero-collage-img--3 {
  width: 138px;
  height: 193px;
  z-index: 1;
  transform: translateY(12px);
  margin-left: -18px;
}

/* ===========================
   SECTION IDENTIFICATION
   =========================== */

/* Réutilise .section-base + .section-grid — surcharges minimes */
.section-identification .text-picture-image {
  transform: none; /* pas de rotation sur ce portrait */
}

.section-identification .text-picture-image {
  overflow: hidden;
}

.section-identification .text-picture-image img {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  object-position: top;
  transition: transform 450ms ease;
}

.section-identification .text-picture-title {
  font-size: var(--font-xxl);
  margin-bottom: 2rem;
}

/* Paragraphes de la section */
.section-identification .text-base {
  margin-bottom: 1rem;
}

.section-identification .text-base strong {
  color: var(--global-color-white);
  font-weight: 700;
  opacity: 1;
}

/* Highlight jaune pour le titre — réutilise .text-picture-title span */

/* ===========================
   PARALLAX — variante 100px
   =========================== */

.parallax-band--sm {
  height: 240px;
}

/* Surcharge chemin absolu de style.css → chemin relatif pour local */
.ascension-parallax-bg-1 {
  background-image: url("../img/ascension-image-parallax-1.png");
}

.ascension-parallax-bg-2 {
  background-image: url("../img/ascension-image-parallax-2.png");
}

/* Overlay sombre sur les parallax */
.parallax-band {
  position: relative;
}

.parallax-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 1;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* ===========================
   SECTION ART DE JOUER
   =========================== */

.section-art {
  background-color: #232323;
  width: 100%;
  padding: 5rem 0;
}

.section-art-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5rem;
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: center;
  gap: 5rem;
}

.art-title {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--font-xxl);
  font-weight: 700;
  line-height: 1.15;
  color: var(--global-color-white);
  margin-bottom: 1.5rem;
  text-align: left;
}

.art-desc {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--font-lg);
  line-height: 1.65;
  color: var(--global-color-white);
  opacity: 0.78;
  margin-bottom: 2.25rem;
  text-align: left;
}

/* Grille 2×2 de cartes */
.art-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.art-card {
  background-color: var(--global-color-dark-gray);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--global-border-radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.art-card-icon {
  font-size: 2.25rem;
  color: var(--global-color-blue);
}

.art-card-title {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--font-lg);
  font-weight: 600;
  line-height: 1.25;
  color: var(--global-color-white);
}

.art-card-text {
  font-size: var(--font-sm);
  line-height: 1.65;
  color: var(--global-color-white);
  opacity: 0.65;
}

/* ===========================
   HIGHLIGHT JAUNE (inline)
   =========================== */

.highlight-y {
  color: var(--global-color-yellow);
}

/* ===========================
   SECTION BIG TEXT
   =========================== */

.section-big-text {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 2rem;
}

.section-big-text .floating-dots {
  z-index: 0;
}

.big-text-content {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--font-xxl);
  font-weight: 800;
  font-style: italic;
  color: var(--global-color-white);
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 960px;
  line-height: 1.15;
}

/* ===========================
   SECTION TU REFUSES
   =========================== */

.section-refuse {
  padding-top: 6rem;
  padding-bottom: 6rem;
  padding-left: 4rem;
  padding-right: 4rem;
  text-align: center;
}

.refuse-title {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--font-xxl);
  font-weight: 700;
  color: var(--global-color-white);
  line-height: 1.2;
  margin-bottom: 3.5rem;
}

.refuse-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.refuse-bold {
  font-size: var(--font-md);
  font-weight: 700;
  color: var(--global-color-white);
  line-height: 1.55;
  margin-bottom: 0.4rem;
}

.refuse-text {
  font-size: var(--font-md);
  color: var(--global-color-white);
  opacity: 0.72;
  line-height: 1.6;
}

.refuse-closing {
  text-align: left;
  font-size: var(--font-md);
  font-weight: 700;
  color: var(--global-color-white);
  line-height: 1.65;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   SECTION CE CAP EST ACCESSIBLE
   =========================== */

/* Réutilise .section-base + .section-grid + .section-identification */

.cap-intro {
  font-size: var(--font-md);
  line-height: 1.65;
  color: var(--global-color-white);
  opacity: 0.85;
  margin-bottom: 1.25rem;
}

.cap-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  counter-reset: cap-counter;
}

.cap-list li {
  counter-increment: cap-counter;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  font-size: var(--font-md);
  line-height: 1.6;
  color: var(--global-color-white);
  opacity: 0.85;
}

.cap-list li::before {
  content: counter(cap-counter) ".";
  font-weight: 700;
  color: var(--global-color-white);
  opacity: 1;
  padding-top: 0.05rem;
}

.cap-closing {
  font-size: var(--font-md);
  line-height: 1.65;
  color: var(--global-color-white);
  opacity: 0.72;
}

/* ===========================
   SECTION YES LIFE
   =========================== */

.section-yeslife {
  position: relative;
  overflow: hidden;
  padding: 6rem 2rem;
  text-align: center;
}

.section-yeslife .floating-dots {
  z-index: 0;
}

.yeslife-top,
.yeslife-bottom {
  position: relative;
  z-index: 1;
}

.yeslife-top {
  max-width: 900px;
  margin: 0 auto;
}

.yeslife-title {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--font-xxl);
  font-weight: 800;
  color: var(--global-color-white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.yeslife-subtitle {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--font-lg);
  font-weight: 300;
  color: var(--global-color-white);
  opacity: 0.85;
  line-height: 1.5;
  margin-bottom: 3rem;
}

/* 3 photos en éventail */
.yeslife-photos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 4rem;
  padding: 3rem 0;
}

.yeslife-photo--left,
.yeslife-photo--center,
.yeslife-photo--right {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--global-border-radius);
  position: relative;
  width: 250px;
  height: 370px;
}

.yeslife-photo--left img,
.yeslife-photo--center img,
.yeslife-photo--right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.yeslife-photo--left {
  transform: rotate(-6deg);
  margin-right: -25px;
  z-index: 1;
}

.yeslife-photo--center {
  z-index: 2;
}

.yeslife-photo--right {
  transform: rotate(6deg);
  margin-left: -25px;
  z-index: 1;
}

/* Bloc texte */
.yeslife-bottom {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  padding: 3rem 0 0;
}

.yeslife-text {
  font-size: var(--font-md);
  line-height: 1.7;
  color: var(--global-color-white);
  opacity: 0.85;
  margin-bottom: 1rem;
}

.yeslife-text strong {
  color: var(--global-color-white);
  font-weight: 700;
  opacity: 1;
}

/* ===========================
   SECTION 4 MODULES
   =========================== */

.section-modules {
  padding: 6rem 0;
}

.section-modules-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5rem;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 5rem;
  align-items: center;
}

.modules-photo {
  position: sticky;
  top: 100px;
}

.modules-photo img {
  width: 100%;
  border-radius: var(--global-border-radius);
  object-fit: cover;
  object-position: top center;
  display: block;
}

.modules-title {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--font-xxl);
  font-weight: 700;
  line-height: 1.15;
  color: var(--global-color-white);
  margin-bottom: 0.75rem;
}

.modules-subtitle {
  font-size: var(--font-sm);
  font-style: italic;
  line-height: 1.6;
  color: var(--global-color-white);
  opacity: 0.7;
  margin-bottom: 2rem;
}

/* Accordéons */
.modules-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.module-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.module-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  font-size: var(--font-sm);
  color: var(--global-color-white);
  gap: 1rem;
  user-select: none;
  line-height: 1.45;
  text-align: left;
}

.module-header::-webkit-details-marker,
.module-header::marker {
  display: none;
}

.module-chevron {
  flex-shrink: 0;
  transition: transform 300ms ease;
  font-size: 0.8rem;
  color: var(--global-color-blue);
  opacity: 0.85;
}

details:not([open]) .module-chevron {
  transform: rotate(180deg);
}

.module-body {
  padding: 0.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.module-point {
  font-size: var(--font-sm);
  line-height: 1.65;
  color: var(--global-color-white);
  opacity: 0.85;
}

.module-point strong {
  color: var(--global-color-white);
  font-weight: 700;
  font-style: normal;
  opacity: 1;
}

/* ===========================
   SECTION OFFRE
   =========================== */

.section-offer {
  background-color: transparent;
  width: 100%;
  padding: 6rem 0;
}

.section-offer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5rem;
}

.offer-header {
  text-align: center;
  margin-bottom: 4rem;
}

.offer-eyebrow {
  font-size: var(--font-xs);
  font-weight: 500;
  color: var(--global-color-yellow);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.offer-title {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--font-xxl);
  font-weight: 700;
  color: var(--global-color-white);
  line-height: 1.15;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.offer-content {
  text-align: left;
}

.offer-name {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--font-sm);
  font-weight: 700;
  color: var(--global-color-yellow);
  margin-bottom: 0.5rem;
}

.offer-tagline {
  font-style: italic;
  font-size: var(--font-md);
  line-height: 1.65;
  color: var(--global-color-white);
  opacity: 0.65;
  margin-bottom: 2.5rem;
}

.offer-features {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}

.offer-feature-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--font-md);
  color: var(--global-color-white);
  margin-bottom: 0.35rem;
}

.offer-feature-header i {
  color: var(--global-color-blue);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.offer-feature-desc {
  font-size: var(--font-md);
  line-height: 1.65;
  color: var(--global-color-white);
  opacity: 0.6;
  padding-left: 1.85rem;
}

.offer-price-box {
  background-color: var(--global-color-dark-gray);
  border-radius: var(--global-border-radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.offer-price-label {
  font-size: var(--font-xs);
  color: var(--global-color-white);
  opacity: 0.45;
  margin-bottom: 0.4rem;
}

.offer-price {
  font-family: 'Urbanist', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--global-color-white);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.offer-price sup {
  font-size: 1.4rem;
  font-weight: 600;
  vertical-align: super;
}

.offer-price-ttc {
  font-size: var(--font-sm);
  font-weight: 400;
  opacity: 0.6;
}

.offer-price-alt {
  font-size: var(--font-xs);
  font-style: italic;
  color: var(--global-color-white);
  opacity: 0.5;
}

.offer-photo {
  position: sticky;
  top: 100px;
}

.offer-photo img {
  width: 100%;
  border-radius: var(--global-border-radius);
  object-fit: cover;
  display: block;
}

/* ===========================
   SECTION TÉMOIGNAGES
   =========================== */

.section-testimonials {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  text-align: center;
}

.section-testimonials .floating-dots {
  z-index: 0;
}

.section-testimonials-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.testimonials-title {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--font-xxl);
  font-weight: 800;
  font-style: italic;
  color: var(--global-color-white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.testimonials-subtitle {
  font-size: var(--font-md);
  color: var(--global-color-white);
  opacity: 0.6;
  margin-bottom: 3.5rem;
}

/* Cards témoignages */
.testi-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 5rem;
  text-align: left;
}

.testi-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2.5rem;
  background: #1a1a1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  align-items: start;
}

.testi-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
}

.testi-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  margin-bottom: 0.5rem;
}

.testi-name {
  font-weight: 700;
  font-size: var(--font-sm);
  color: var(--global-color-white);
}

.testi-role {
  font-size: var(--font-xs);
  color: var(--global-color-white);
  opacity: 0.5;
  line-height: 1.45;
}

.testi-right {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.testi-text {
  font-size: var(--font-sm);
  line-height: 1.65;
  color: var(--global-color-white);
  opacity: 0.85;
}

.testi-text strong {
  font-weight: 700;
  color: var(--global-color-white);
  opacity: 1;
}

.testi-quote {
  font-style: italic;
  font-size: var(--font-sm);
  line-height: 1.65;
  color: var(--global-color-white);
  opacity: 0.5;
  margin-top: 0.5rem;
}

/* Vidéos shorts — reprend les styles de style.css */
.section-testimonials .avis-videos {
  margin-top: 0;
  margin-bottom: 3rem;
}

/* Carrousel défilant — reprend les styles de style.css */
.section-testimonials .avis-carousel-container {
  margin-bottom: 0;
}

/* ===========================
   SECTION FAQ
   =========================== */

.section-faq {
  padding: 6rem 0;
  text-align: center;
}

.section-faq-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-eyebrow {
  font-size: var(--font-xs);
  font-weight: 600;
  color: var(--global-color-yellow);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.faq-title {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--font-xxl);
  font-weight: 700;
  color: var(--global-color-white);
  line-height: 1.15;
  margin-bottom: 3.5rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  font-size: var(--font-sm);
  font-weight: 500;
  color: var(--global-color-white);
  gap: 1rem;
  user-select: none;
  line-height: 1.45;
  text-align: left;
}

.faq-header::-webkit-details-marker,
.faq-header::marker {
  display: none;
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 300ms ease;
  font-size: 0.8rem;
  color: var(--global-color-blue);
  opacity: 0.85;
}

details:not([open]) .faq-chevron {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0.25rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-text {
  font-size: var(--font-sm);
  line-height: 1.65;
  color: var(--global-color-white);
  opacity: 0.8;
}

.faq-text strong {
  font-weight: 700;
  color: var(--global-color-white);
  opacity: 1;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-list li {
  font-size: var(--font-sm);
  line-height: 1.65;
  color: var(--global-color-white);
  opacity: 0.8;
  padding-left: 1.25rem;
  position: relative;
}

.faq-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-weight: 700;
  opacity: 1;
}

/* ===========================
   SECTION ÉVOLUER
   =========================== */

.section-evoluer {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.section-evoluer .floating-dots {
  z-index: 0;
}

.evoluer-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5rem;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 5rem;
  align-items: center;
}

.evoluer-content {
  text-align: left;
}

.evoluer-title {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--font-xxl);
  font-weight: 700;
  color: var(--global-color-white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.evoluer-intro {
  font-size: var(--font-md);
  font-style: italic;
  color: var(--global-color-white);
  opacity: 0.55;
  margin-bottom: 1.5rem;
}

.evoluer-text {
  font-size: var(--font-md);
  line-height: 1.7;
  color: var(--global-color-white);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.evoluer-text strong {
  font-weight: 700;
  color: var(--global-color-white);
  opacity: 1;
}

.evoluer-closing {
  font-size: var(--font-md);
  font-weight: 700;
  color: var(--global-color-white);
  line-height: 1.65;
  margin-top: 0.5rem;
}

.evoluer-photo img {
  width: 100%;
  border-radius: var(--global-border-radius);
  object-fit: cover;
  display: block;
}

/* ===========================
   SECTION SI TU VEUX
   =========================== */

.section-si-tu-veux {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.section-si-tu-veux .floating-dots {
  z-index: 0;
}

.section-si-tu-veux-inner {
  position: relative;
  z-index: 1;
}

.section-si-tu-veux-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5rem;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 5rem;
  align-items: center;
}

.si-tu-veux-photo img {
  width: 100%;
  border-radius: var(--global-border-radius);
  object-fit: cover;
  display: block;
  max-height: 600px;
  object-position: center;
}

.si-tu-veux-content {
  text-align: left;
}

.si-tu-veux-title {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--font-xxl);
  font-weight: 700;
  color: var(--global-color-white);
  line-height: 1.15;
  margin-bottom: 2rem;
}

.si-tu-veux-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.si-tu-veux-item {
  font-size: var(--font-md);
  line-height: 1.65;
  color: var(--global-color-white);
  opacity: 0.85;
}

.si-tu-veux-item strong {
  font-weight: 700;
  color: var(--global-color-white);
  opacity: 1;
}

/* ===========================
   SECTION CTA FINAL
   =========================== */

.section-cta-final {
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem;
}

.section-cta-final .floating-dots {
  z-index: 0;
}

.cta-final-card {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  background: #1a1a1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 4rem 3.5rem;
  text-align: center;
}

.cta-final-title {
  font-family: 'Urbanist', sans-serif;
  font-size: var(--font-xxl);
  font-weight: 800;
  color: var(--global-color-white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.cta-final-text {
  font-size: var(--font-md);
  line-height: 1.65;
  color: var(--global-color-white);
  opacity: 0.65;
  margin-bottom: 0.4rem;
}

.cta-final-text strong {
  font-weight: 700;
  color: var(--global-color-white);
  opacity: 1;
}

/* ===========================
   FOOTER V2
   =========================== */

.footer-v2 {
  background: #07090c;
  padding: 4rem 2rem 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-v2-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.footer-v2-brand img {
  width: 36px;
  height: 36px;
}

.footer-v2-brand-name {
  font-size: var(--font-sm);
  color: var(--global-color-white);
  opacity: 0.8;
}

.footer-v2-nav-label {
  font-size: var(--font-xs);
  color: var(--global-color-white);
  opacity: 0.4;
  margin-bottom: 0.75rem;
}

.footer-v2-nav {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.footer-v2-nav a {
  padding: 0.65rem 1.25rem;
  font-size: var(--font-xs);
  color: var(--global-color-white);
  opacity: 0.65;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: opacity 200ms ease;
  white-space: nowrap;
}

.footer-v2-nav a:last-child {
  border-right: none;
}

.footer-v2-nav a:hover {
  opacity: 1;
}

.footer-v2-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.footer-v2-social a {
  color: var(--global-color-blue);
  font-size: 1.4rem;
  transition: opacity 200ms ease;
  text-decoration: none;
}

.footer-v2-social a:hover {
  opacity: 0.7;
}

.footer-v2-legal {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-v2-legal a {
  font-size: var(--font-xs);
  color: var(--global-color-white);
  opacity: 0.45;
  text-decoration: none;
}

.footer-v2-legal a:hover {
  opacity: 0.8;
}

.footer-v2-legal p {
  font-size: var(--font-xs);
  color: var(--global-color-white);
  opacity: 0.3;
}

/* Hamburger — caché par défaut */
.navbar-v2-burger {
  display: none;
  background: none;
  border: none;
  color: var(--global-color-white);
  font-size: 1.05rem;
  cursor: pointer;
  padding: 0.25rem 0.1rem;
  line-height: 1;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 960px) {
  .section-art-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  /* --- Navbar --- */
  .navbar-v2 {
    top: 12px;
    width: calc(100% - 2rem);
  }

  .navbar-v2-inner {
    position: relative;
    padding: 0.5rem 0.85rem;
    gap: 0.75rem;
    justify-content: space-between;
  }

  /* Liens cachés → dropdown accordéon */
  .navbar-v2-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(16, 18, 22, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem 0;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .navbar-v2-links.open {
    display: flex;
  }

  .navbar-v2-links li {
    width: 100%;
  }

  .navbar-v2-links a {
    display: block;
    padding: 0.75rem 1.25rem;
    font-size: var(--font-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .navbar-v2-links li:last-child a {
    border-bottom: none;
  }

  .navbar-v2-burger {
    display: flex;
    align-items: center;
  }

  .btn-nav-candidater { display: none; }
  .nav-cta-mobile { display: block; }
  .nav-cta-mobile a { color: var(--global-color-yellow) !important; font-weight: 600 !important; border-bottom: none !important; }

  /* --- Hero --- */
  .hero-tags {
    flex-direction: column;
    gap: 0.4rem;
  }

  .hero-v2-subtitle {
    font-size: var(--font-lg);
  }

  /* --- Post-hero --- */
  .section-post-hero-inner {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
    gap: 2.5rem;
  }

  .post-hero-collage {
    justify-content: center;
    margin: 0 auto;
  }

  .post-hero-collage-img--1 { width: 104px; height: 146px; transform: translate(-8px, 15px); margin-right: -15px; }
  .post-hero-collage-img--2 { width: 122px; height: 171px; }
  .post-hero-collage-img--3 { width: 93px; height: 130px; transform: translateY(8px); margin-left: -12px; }

  .post-hero-pitch {
    font-size: var(--font-lg);
  }

  /* Art de jouer — déjà 1 colonne sur tablet */
  .section-art-inner {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
    gap: 2.5rem;
  }

  .art-cards {
    grid-template-columns: 1fr;
  }

  /* Yes Life — photos sur mobile 768px */
  .yeslife-photos {
    gap: 0;
    padding: 2rem 0;
  }

  .yeslife-photo--left,
  .yeslife-photo--center,
  .yeslife-photo--right {
    width: 155px;
    height: 230px;
  }

  .yeslife-bottom {
    padding: 2rem 1.5rem 0;
  }

  /* --- Témoignages --- */
  .testi-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-testimonials .avis-videos {
    flex-wrap: wrap;
  }

  /* --- Offre --- */
  .section-offer-inner {
    padding: 0 1.5rem;
  }

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

  .offer-photo {
    position: static;
  }

  /* --- Modules --- */
  .section-modules-inner {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
    gap: 2rem;
  }

  .modules-photo {
    position: static;
  }

  .modules-photo img {
    max-height: 320px;
    object-position: top;
  }

  /* --- Évoluer --- */
  .evoluer-inner {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
    gap: 2.5rem;
  }

  /* --- Si tu veux --- */
  .section-si-tu-veux-inner {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
    gap: 2.5rem;
  }

  .si-tu-veux-photo {
    order: -1;
  }

  /* --- CTA Final --- */
  .cta-final-card {
    padding: 2.5rem 1.5rem;
  }

  /* --- Footer v2 --- */
  .footer-v2-nav {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

  .footer-v2-nav a {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-v2-nav a:last-child {
    border-bottom: none;
  }

  /* Identification — empilement mobile */
  .section-identification {
    grid-template-columns: 1fr;
  }

  .section-identification .text-picture-content {
    order: 1; /* texte toujours au-dessus */
  }

  .section-identification .text-picture-image {
    order: 2; /* image toujours en dessous */
    max-width: 100%;
    transform: none;
  }

  .section-identification .text-picture-image img {
    max-height: 340px;
    width: 100%;
  }

  /* Post-hero collage mobile 768px */
  .post-hero-collage-img--1 { width: 90px; height: 126px; transform: translate(-7px, 13px); margin-right: -13px; }
  .post-hero-collage-img--2 { width: 106px; height: 148px; }
  .post-hero-collage-img--3 { width: 81px; height: 113px; transform: translateY(7px); margin-left: -10px; }
}

@media (max-width: 480px) {
  /* Yes Life — photos 480px */
  .yeslife-photo--left,
  .yeslife-photo--center,
  .yeslife-photo--right {
    width: 120px;
    height: 180px;
  }

  /* Post-hero collage 480px */
  .post-hero-collage-img--1 { width: 77px; height: 108px; transform: translate(-6px, 11px); margin-right: -11px; }
  .post-hero-collage-img--2 { width: 90px; height: 126px; }
  .post-hero-collage-img--3 { width: 69px; height: 96px; transform: translateY(6px); margin-left: -9px; }
}

@media (max-width: 360px) {
  /* Yes Life — photos 360px */
  .yeslife-photo--left,
  .yeslife-photo--center,
  .yeslife-photo--right {
    width: 95px;
    height: 142px;
  }

  /* Post-hero collage 360px */
  .post-hero-collage-img--1 { width: 65px; height: 91px; transform: translate(-5px, 9px); margin-right: -9px; }
  .post-hero-collage-img--2 { width: 76px; height: 107px; }
  .post-hero-collage-img--3 { width: 58px; height: 82px; transform: translateY(5px); margin-left: -8px; }
}
