/**
 * COMPRENDRE LE SYSTEME - STYLES
 * Mini VSL - Page explicative du systeme L'Ordre des Voyageurs
 * Aesthetic raffinée — Dark Explorer
 */

/* ===== ATTENTE FULLSCREEN SECTION ===== */
.cs-attente-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
  position: relative;
}

.cs-attente-inner {
  max-width: 680px;
  text-align: center;
}

.cs-attente-line {
  margin: 0 0 1.25rem;
  line-height: 1.85;
}

.cs-attente-main {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(229, 231, 235, 0.82);
  font-style: italic;
}

.cs-attente-sub {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: rgba(229, 231, 235, 0.5);
  line-height: 1.7;
  margin-top: 0.5rem;
}

.cs-attente-echo {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(239, 202, 167, 0.9);
  letter-spacing: 0.04em;
  font-style: italic;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(239, 202, 167, 0.12);
}

/* Desktop: lines hidden initially — JS reveals them */
@media (min-width: 769px) {
  .cs-attente-line {
    opacity: 0;
    transform: translateY(18px);
  }
}

/* ===== PORTE PROGRESS BAR ===== */
.porte-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 5px 1.5rem 4px;
  background: rgba(28, 21, 41, 0.95);
  border-bottom: 1px solid rgba(239, 202, 167, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.porte-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.porte-dot {
  flex: 1;
  height: 7px;
  border-radius: 50px;
  background: rgba(239, 202, 167, 0.08);
  border: 1px solid rgba(239, 202, 167, 0.18);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.porte-dot.completed {
  background: linear-gradient(90deg, #efcaa7, #e19bd9);
  border-color: transparent;
}

.porte-dot.active {
  background: linear-gradient(90deg, #efcaa7, #e19bd9);
  border-color: transparent;
  box-shadow: 0 0 10px rgba(239, 202, 167, 0.5);
}

.porte-progress-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.porte-progress-label strong {
  color: #fff;
  font-weight: 600;
}

/* ===== FONT IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: 'Neutralis';
  src: url('assets/font-family/neutralis-grotesk-2026-02-18-00-40-39-utc/Web-TT/Neutralis-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neutralis';
  src: url('assets/font-family/neutralis-grotesk-2026-02-18-00-40-39-utc/Web-TT/Neutralis-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ===== VARIABLES CSS — Cosmic Pastel ===== */
:root {
  --bg-dark: #1c1529;
  --bg-darker: #1c1529;
  --bg-alt: #221835;
  --text-light: #e7e0e4;
  --gray-light: #b8afc0;
  --gray: #7a6e85;
  --border-subtle: rgba(231, 224, 228, 0.08);
  --accent-gold: #efcaa7;
  --accent-gold-light: #f5dfc0;
  --accent-orange: #e19bd9;
  --accent-purple: #8b5cf6;
  --accent-cyan: #38bdf8;
  --accent-green: #a1d5b4;
  --accent-blue: #38bdf8;
  --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #38bdf8 100%);
  --gradient-gold: linear-gradient(135deg, #efcaa7 0%, #f5dfc0 50%, #efcaa7 100%);
  --font-display: 'Neutralis', sans-serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
}

h2, h3, h4, h5, h6 {
  font-weight: 400 !important;
}

/* Body background pour eviter la bande noire en overscroll */
body {
  background: var(--bg-darker);
  font-family: var(--font-body);
  color: var(--text-light);
  overscroll-behavior-y: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-orange), var(--accent-purple));
  z-index: 1001;
  transition: width 0.1s linear;
}

/* ===== IMMERSIVE PIN SECTION ===== */
.immersive-pin-section {
  overflow: visible;
}

/* ===== RESET STYLES GLOBAUX (section) ===== */
.cs-hero,
.cs-section,
.cs-section-split,
.cs-seuil,
.cs-cta-section,
.cs-tension-intro,
.cs-accessible,
.cs-different,
.cs-attente-section {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.cs-section h2,
.cs-section h3,
.cs-section h4,
.cs-cta-section h2 {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.cs-section p,
.cs-cta-section p {
  opacity: 1;
}

/* ===== ARRIERE-PLANS IMAGES SUBTILS ===== */
.cs-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
  max-width: none;
}

/* Sections avec bg image : position relative */
#cs-ecosysteme,
#cs-ambassadeur,
#cs-createurs,
#cs-deblocage {
  position: relative;
  overflow: hidden;
}

/* Contenu au-dessus du bg */
#cs-ecosysteme > *:not(.cs-bg-image),
#cs-ambassadeur > *:not(.cs-bg-image),
#cs-createurs > *:not(.cs-bg-image),
#cs-deblocage > *:not(.cs-bg-image) {
  position: relative;
  z-index: 1;
}

/* Images par section */

/* Ecosysteme : boussole en fond atmosphérique (conservé comme background) */
.cs-bg-ecosysteme {
  background-image: url('https://pub-359a081e2cdd4cfcbd6364dcc80f10d9.r2.dev/images/comprendre-systeme/compass-2026-01-06-09-11-23-utc.jpg');
  background-position: center;
  background-size: cover;
  opacity: 0.3;
}

/* Ambassadeur : bg masqué — l'image est affichée via .cs-ambassadeur-image dans le layout */
.cs-bg-ambassadeur {
  opacity: 0;
  pointer-events: none;
}

/* Créateurs : image immersive en fond atmosphérique */
.cs-bg-createurs {
  background-image: url('https://pub-359a081e2cdd4cfcbd6364dcc80f10d9.r2.dev/images/section-avantages/community.jpg');
  background-position: center 30%;
  background-size: cover;
  opacity: 0.18;
  filter: grayscale(20%);
  pointer-events: none;
}

#cs-createurs::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(7, 8, 18, 0.5) 100%),
    linear-gradient(180deg, rgba(7, 8, 18, 0.3) 0%, transparent 20%, transparent 80%, rgba(7, 8, 18, 0.3) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Deblocage : bg redondant avec le split image — masqué */
.cs-bg-deblocage {
  opacity: 0;
  pointer-events: none;
}

/* ===== MASK REVEAL ANIMATION ===== */
.cs-mask-reveal {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.cs-mask-reveal.revealed {
  clip-path: inset(0 0 0% 0);
}

/* ===== MICRO-TENSION D'ENTREE ===== */
.cs-tension-intro {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem !important;
  text-align: center;
}
.cs-tension-intro p {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--gray);
  line-height: 2.2;
  margin: 0;
  font-weight: 300;
}
.cs-tension-reveal {
  color: var(--text-light) !important;
  font-weight: 600 !important;
  font-style: italic;
  margin-top: 0.5rem !important;
}

/* ===== SEUIL BLOCK REVEAL ===== */
.cs-seuil-block {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.cs-seuil-block.revealed {
  clip-path: inset(0 0 0% 0);
}

/* ===== SECTION IMAGES ===== */
.cs-section-image {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
}

.cs-section-image img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.cs-section-image img:hover {
  opacity: 1;
}

/* ===== HERO SECTION - VIDEO CINEMATIQUE ===== */
.cs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-darker);
  padding: 2rem 2rem 4rem !important;
  text-align: center;
  overflow: hidden;
}

/* Video background */
.cs-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
}

.cs-hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(1, 4, 9, 0.3) 0%,
      rgba(13, 17, 23, 0.15) 50%,
      rgba(13, 17, 23, 0.5) 100%),
    linear-gradient(135deg,
      rgba(255, 215, 0, 0.06) 0%,
      transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Dark overlay */
.cs-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1,4,9,0.7) 0%, rgba(13,17,23,0.3) 40%, rgba(13,17,23,0.85) 100%),
    radial-gradient(circle at 50% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}

/* Hero accent */
.cs-hero-accent {
  color: var(--accent-gold);
  font-weight: 400;
}

/* Scroll indicator */
.cs-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.cs-scroll-arrow {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.4; }
  50% { transform: rotate(45deg) translate(5px, 5px); opacity: 1; }
}

/* ===== HERO OFFER BAR ===== */
.cs-hero-offer-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.65rem 1.5rem;
  background: linear-gradient(90deg, rgba(239,202,167,0.10), rgba(239,202,167,0.05), rgba(239,202,167,0.10));
  border-top: 1px solid rgba(239,202,167,0.2);
  backdrop-filter: blur(8px);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  text-align: center;
}

.cs-hero-offer-label {
  color: #efcaa7;
  font-weight: 400;
  flex-shrink: 0;
}

.cs-hero-offer-text {
  color: rgba(229,231,235,0.75);
}

@media (max-width: 600px) {
  .cs-hero-offer-bar {
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.88rem;
    padding: 0.6rem 1rem;
  }
}

.cs-hero-content {
  max-width: 800px;
  position: relative;
  z-index: 4;
}

.cs-hero .hero-emoji {
  font-size: clamp(3rem, 6vw, 4rem);
  margin-bottom: 1rem;
  display: block;
}

.cs-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--text-light);
  /* gradient-text supprimé : incompatible avec SplitType (char spans héritent
     text-fill-color:transparent sans background propre → texte invisible).
     L'accent .cs-hero-accent reçoit son gradient gold-orange via JS. */
}

.cs-hero .lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-light);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.cs-hero .lead strong {
  color: var(--accent-gold);
}

/* ===== SECTIONS DE CONTENU ===== */
.cs-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 5vw, 5rem) 2.5rem !important;
  max-width: none;
  width: 100%;
}

.cs-section > *:not(.cs-bg-image):not(.cs-ambassadeur-layout) {
  max-width: 900px;
  width: 100%;
}

/* ===== ALTERNANCE FONDS PAR SECTION ===== */
#cs-attente    { background: #0a0f1e; }
#cs-ecosysteme { background: #1c1529; }
#cs-plateforme  { background: #221835; }
#cs-ambassadeur { background: #221835; }
#cs-valeur      { background: #1c1529; }
#cs-revenus     { background: #1c1529; }
#cs-grades      { background: #221835; }
#cs-dual-team   { background: #1c1529; }
#cs-createurs   { background: #221835; }
#cs-acces       { background: #1c1529; }
#cs-deblocage   { background: #221835; }

.cs-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.cs-section-number {
  width: 34px;
  height: 34px;
  background: rgba(239, 202, 167, 0.12);
  border: 1px solid rgba(239, 202, 167, 0.4);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.cs-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: -0.01em;
  margin: 0;
}

.cs-section p {
  font-size: 1.05rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* ===== SECTION 0 - DIFFERENTIATION ===== */
.cs-differentiation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 2rem 0;
}

.cs-diff-col {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 1.5rem;
}

.cs-diff-col.platform {
  background: rgba(107, 114, 128, 0.04);
  border-color: rgba(107, 114, 128, 0.2);
}

.cs-diff-col.ordre {
  border-color: rgba(239, 202, 167, 0.42);
  background: rgba(239, 202, 167, 0.06);
  box-shadow: 0 0 24px rgba(239, 202, 167, 0.08);
}

.cs-diff-col h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.cs-diff-col.platform h3 {
  color: var(--gray-light);
}

.cs-diff-col.ordre h3 {
  color: var(--accent-gold);
}

.cs-diff-col .subtitle {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.cs-diff-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cs-diff-col ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: var(--gray-light);
  font-size: 0.95rem;
}

.cs-diff-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.cs-diff-col.platform ul li::before {
  background: var(--accent-blue);
}

.cs-diff-col.ordre ul li::before {
  background: var(--accent-gold);
}

/* Phrase cle encadree */
.cs-key-phrase {
  background: linear-gradient(135deg, rgba(239, 202, 167, 0.06) 0%, rgba(139, 92, 246, 0.04) 100%);
  border: 1px solid rgba(239, 202, 167, 0.25);
  border-radius: 8px;
  padding: 1.75rem 2rem;
  margin: 2rem 0;
  text-align: center;
  position: relative;
}

.cs-key-phrase p {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.cs-key-phrase p strong {
  color: var(--accent-gold-light);
}

.cs-killer-phrase {
  background: rgba(239, 202, 167, 0.04);
  border-left: 2px solid var(--accent-gold);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
}

.cs-killer-phrase p {
  font-size: 1rem;
  color: var(--gray-light);
  margin: 0;
  font-style: italic;
  line-height: 1.75;
}

.cs-killer-phrase p strong {
  color: var(--accent-gold-light);
  font-style: normal;
}

/* Bloc avant/apres */
.cs-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 2rem 0;
}

.cs-ba-col {
  padding: 1.2rem;
  border-radius: 12px;
}

.cs-ba-col.before {
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.cs-ba-col.after {
  background: rgba(0, 255, 127, 0.08);
  border: 1px solid rgba(0, 255, 127, 0.2);
}

.cs-ba-col h4 {
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cs-ba-col.before h4 {
  color: var(--accent-orange);
}

.cs-ba-col.after h4 {
  color: var(--accent-green);
}

.cs-ba-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cs-ba-col ul li {
  font-size: 0.9rem;
  color: var(--gray-light);
  margin-bottom: 0.4rem;
  padding-left: 1.2rem;
  position: relative;
}

.cs-ba-col.before ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--accent-orange);
  font-size: 0.8rem;
}

.cs-ba-col.after ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-size: 0.8rem;
}

/* ===== FEATURE CARDS ===== */
.cs-feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.cs-feature-card {
  background: rgba(239, 202, 167, 0.03);
  border: 1px solid rgba(239, 202, 167, 0.12);
  border-left: 3px solid rgba(239, 202, 167, 0.3);
  border-radius: 0 8px 8px 0;
  padding: 1.6rem;
  text-align: left;
  transition: all 0.3s ease;
}

.cs-feature-card:hover {
  background: rgba(239, 202, 167, 0.06);
  border-left-color: rgba(239, 202, 167, 0.7);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(239, 202, 167, 0.1);
}

.cs-feature-card .icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  display: block;
}

.cs-feature-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.cs-feature-card p {
  font-size: 1rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}

/* ===== OFFRES GRID (Section 2) ===== */
.cs-offres-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.25rem 0;
}

.cs-offre-card {
  border-radius: 10px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cs-offre-card--trial {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cs-offre-card--full {
  background: linear-gradient(135deg, rgba(239, 202, 167, 0.07) 0%, rgba(139, 92, 246, 0.05) 100%);
  border: 1px solid rgba(239, 202, 167, 0.28);
}

.cs-offre-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.07);
  color: var(--gray-light);
  width: fit-content;
}

.cs-offre-badge--gold {
  background: rgba(239, 202, 167, 0.12);
  color: var(--accent-gold);
  border: 1px solid rgba(239, 202, 167, 0.25);
}

.cs-offre-title {
  font-size: 1.15rem !important;
  font-weight: 400 !important;
  color: var(--text-light) !important;
  margin: 0 !important;
}

.cs-offre-price {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-light);
}

.cs-offre-price span {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 400;
  display: block;
  margin-top: 0.15rem;
}

.cs-offre-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.cs-offre-list li {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cs-offre-yes {
  color: var(--text-light);
}

.cs-offre-yes::before {
  content: "✓";
  color: var(--accent-purple);
  font-weight: 400;
  flex-shrink: 0;
}

.cs-offre-no {
  color: var(--gray);
  opacity: 0.6;
}

.cs-offre-no::before {
  content: "✗";
  color: var(--gray);
  flex-shrink: 0;
}

.cs-offre-note {
  font-size: 1rem;
  color: var(--gray-light);
  font-style: italic;
  margin: 0;
}

.cs-offre-upgrade {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1rem 1.25rem;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 8px;
}

.cs-offre-upgrade-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.cs-offre-upgrade p {
  font-size: 1rem;
  color: var(--gray-light);
  margin: 0;
  line-height: 1.6;
}

.cs-offre-upgrade strong {
  color: var(--text-light);
}

.cs-offre-turbo {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(56, 189, 248, 0.04);
  border: 1px solid rgba(56, 189, 248, 0.14);
  border-radius: 8px;
}

.cs-offre-turbo span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-orange);
  flex-shrink: 0;
}

.cs-offre-turbo p {
  font-size: 1rem;
  color: var(--gray-light);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 560px) {
  .cs-offres-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BOUTONS CTA OFFRES ===== */
.cs-btn-offre {
  display: block;
  text-align: center;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: opacity 0.2s;
}
.cs-btn-offre:hover { opacity: 0.85; }
.cs-btn-offre--trial {
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-light);
}
.cs-btn-offre--gold {
  background: linear-gradient(90deg, #efcaa7, #f5dfc0, #efcaa7);
  color: var(--bg-darker);
}

/* ===== GUEST PASS (DOWNSELL) ===== */
.cs-guest-pass {
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}
.cs-guest-pass-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cs-guest-pass-label {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: 0.4rem;
}
.cs-guest-pass-text p {
  font-size: 1rem;
  color: var(--gray-light);
  margin: 0;
  line-height: 1.6;
}
.cs-btn-guest {
  white-space: nowrap;
  padding: 0.65rem 1.2rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--gray-light);
  border: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.cs-btn-guest:hover { border-color: rgba(255,255,255,0.3); }

/* ===== VALUE STACK ===== */
.cs-value-stack {
  background: rgba(139,92,246,0.04);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: 12px;
  padding: 32px 36px;
  margin-top: 1.5rem;
}
.cs-value-stack-title {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin: 0 0 20px 0;
}
.cs-value-stack-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cs-value-stack-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 1rem;
}
.cs-vs-check { color: var(--accent-purple); font-weight: 400; flex-shrink: 0; }
.cs-vs-item { color: var(--text-light); flex: 1; }
.cs-vs-val { color: var(--accent-gold); font-weight: 400; white-space: nowrap; }
.cs-vs-val::before { content: "valeur ≈ "; font-size: 0.88em; font-weight: 400; opacity: 0.65; }
.lang-en .cs-vs-val::before { content: "value ≈ "; }
.lang-ja .cs-vs-val::before { content: "価値 ≈ "; }
.cs-value-stack-total {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cs-vs-total-row, .cs-vs-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cs-vs-total-row span:first-child { font-size: 1rem; color: var(--gray); }
.cs-vs-total-amount {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
  text-decoration: line-through;
  opacity: 0.45;
}
.cs-vs-price-row span:first-child { font-size: 1rem; color: var(--gray-light); }
.cs-vs-price-amount {
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(90deg, #efcaa7, #f5dfc0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== GRADES TABLE ===== */
.cs-grades-table {
  margin-top: 1.5rem;
  background: rgba(139,92,246,0.04);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: 8px;
  padding: 1.25rem 1.25rem 1rem;
}
.cs-grades-intro {
  font-size: 0.78rem;
  color: var(--gray);
  margin: 0 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.cs-grades-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  overflow: hidden;
}
.cs-grades-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  background: rgba(255,255,255,0.05);
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray);
}
.cs-grades-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr;
  padding: 10px 14px;
  font-size: 1rem;
  color: var(--text-light);
  border-top: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.cs-grades-row:hover { background: rgba(255,255,255,0.03); }
.cs-grades-highlight {
  background: rgba(139,92,246,0.08);
  border-top: 1px solid rgba(139,92,246,0.2);
}
.cs-grade-amount { font-weight: 600; color: #a78bfa; }
.cs-grade-key {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.cs-grade-key em {
  font-style: normal;
  font-size: 0.82rem;
  background: rgba(139,92,246,0.2);
  color: #c4b5fd;
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
}
.cs-grades-more {
  padding: 9px 12px;
  font-size: 0.78rem;
  color: var(--gray);
  font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}
.cs-grades-note {
  font-size: 0.78rem;
  color: var(--gray-light);
  margin: 10px 0 0 0;
  line-height: 1.6;
}

/* ===== AMBASSADOR BOX ===== */
.cs-ambassador-box {
  background: linear-gradient(135deg, rgba(239, 202, 167, 0.06) 0%, rgba(139, 92, 246, 0.04) 100%);
  border: 1px solid rgba(239, 202, 167, 0.25);
  border-radius: 10px;
  padding: 1.75rem 2rem;
  margin: 1.5rem 0;
}

.cs-ambassador-box .price-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239, 202, 167, 0.12);
  border: 1px solid rgba(239, 202, 167, 0.3);
  padding: 5px 14px;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cs-ambassador-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cs-ambassador-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 0;
  color: var(--gray-light);
  font-size: 0.95rem;
}

.cs-ambassador-list li .check {
  color: var(--accent-purple);
  font-size: 1.1rem;
}

/* ===== ETAPES REVENUS ===== */
.cs-revenus-steps {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.cs-revenus-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cs-revenus-step:hover {
  background: rgba(0, 0, 0, 0.3);
  transform: translateX(5px);
}

.cs-revenus-step .step-num {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  color: var(--bg-dark);
  flex-shrink: 0;
  font-size: 0.95rem;
}

.cs-revenus-step span {
  color: var(--gray-light);
  font-size: 0.95rem;
}

/* Disclaimer */
.cs-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem 1.2rem;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 10px;
  margin-top: 1.5rem;
}

.cs-disclaimer .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cs-disclaimer p {
  font-size: 0.95rem;
  color: var(--gray);
  margin: 0;
  font-style: italic;
}

/* ===== BLOC INFLUENCEUR ===== */
.cs-section-influencer {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.04) 0%, rgba(239, 202, 167, 0.03) 100%);
  border: none;
  border-top: 1px solid rgba(139, 92, 246, 0.12);
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 0;
}

.cs-section-icon {
  font-size: 1.8rem;
}

.cs-influencer-steps {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
  margin: 1.5rem 0;
  position: relative;
}

/* Ligne de connexion entre les étapes */
.cs-influencer-steps::before {
  content: '';
  position: absolute;
  top: 22px; /* centre des icônes */
  left: 22px;
  right: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-cyan));
  opacity: 0.3;
  z-index: 0;
}

.cs-influencer-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  gap: 0.6rem;
  padding: 0 0.75rem;
  background: transparent;
  border-radius: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.cs-influencer-step:hover {
  background: transparent;
  transform: translateY(-3px);
}

.cs-influencer-step .step-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 50%;
  transition: box-shadow 0.3s ease;
}

.cs-influencer-step:hover .step-icon {
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.3);
}

.cs-influencer-step span:last-child {
  color: var(--gray-light);
  font-size: 1rem;
  line-height: 1.4;
}

.cs-influencer-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem 1.2rem;
  background: rgba(239, 202, 167, 0.06);
  border: 1px solid rgba(239, 202, 167, 0.2);
  border-radius: 10px;
  margin-top: 1.5rem;
}

.cs-influencer-note .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cs-influencer-note p {
  font-size: 0.95rem;
  color: var(--gray-light);
  margin: 0;
}

.cs-influencer-note p strong {
  color: var(--accent-gold);
}

/* Hook emotionnel decouverte */
.cs-discovery-hook {
  margin-top: 1rem !important;
  padding-top: 1rem;
  border-top: 1px solid rgba(187, 134, 252, 0.2);
  font-style: italic;
  color: var(--accent-purple) !important;
  font-size: 0.9rem !important;
}

/* ===== ACCES EXPLANATION ===== */
.cs-access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 1.5rem 0;
}

.cs-access-box {
  padding: 1.5rem;
  border-radius: 14px;
}

.cs-access-box.discovery {
  background: rgba(107, 114, 128, 0.05);
  border: 1px solid rgba(107, 114, 128, 0.2);
  opacity: 0.8;
}

.cs-access-box.full {
  background: rgba(239, 202, 167, 0.07);
  border: 1px solid rgba(239, 202, 167, 0.38);
  box-shadow: 0 0 28px rgba(239, 202, 167, 0.12), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.cs-access-box h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.cs-access-box.discovery h4 {
  color: var(--gray-light);
}

.cs-access-box.full h4 {
  color: var(--accent-gold);
}

.cs-access-box p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0.8rem;
}

.cs-access-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cs-access-box ul li {
  font-size: 0.9rem;
  color: var(--gray-light);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.cs-access-box ul li::before {
  content: '•';
  position: absolute;
  left: 0;
}

/* ===== UNLOCK BENEFITS ===== */
.cs-unlock-section {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.05) 0%, rgba(139, 92, 246, 0.03) 100%);
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 10px;
  padding: 2rem;
  margin: 1.5rem 0;
}

.cs-unlock-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.cs-unlock-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--gray-light);
}

.cs-unlock-item .check {
  color: var(--accent-green);
  font-size: 1.1rem;
}

/* ===== CTA SECTION FINALE ===== */
.cs-cta-section {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5rem) 2rem !important;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.cs-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 100%, rgba(239, 202, 167, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cs-cta-content {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cs-cta-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.cs-cta-content .subtitle {
  font-size: 1.05rem;
  color: var(--gray-light);
  margin-bottom: 2.5rem;
}

.cs-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1.1rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #1c1529;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light), var(--accent-gold));
  background-size: 200% auto;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 4px 20px rgba(239, 202, 167, 0.3);
}

.cs-btn-primary:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(239, 202, 167, 0.45);
}

.cs-cta-time {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.cs-cta-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.cs-cta-divider span {
  color: var(--gray);
  font-size: 0.9rem;
}

.cs-cta-divider::before,
.cs-cta-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

.cs-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-light);
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cs-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gray);
}

/* ===== IMPORTANT BOX ===== */
.cs-important-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 1rem 1.5rem;
  background: rgba(239, 202, 167, 0.04);
  border: 1px solid rgba(239, 202, 167, 0.15);
  border-radius: 8px;
  margin-top: 2rem;
  text-align: center;
}

.cs-important-box .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cs-important-box p {
  font-size: 0.9rem;
  color: var(--gray-light);
  margin: 0;
}

/* ===== CTA MWR DU PARRAIN ===== */
.cs-cta-mwr {
  background: linear-gradient(135deg, rgba(239, 202, 167, 0.07), rgba(139, 92, 246, 0.04));
  border: 1px solid rgba(239, 202, 167, 0.22);
  border-radius: 8px;
  padding: 20px;
  margin-top: 25px;
}

.cs-cta-mwr-content {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cs-cta-mwr-content .icon {
  font-size: 2rem;
}

.cs-cta-mwr-text p {
  margin: 0;
  color: var(--text-light);
}

.cs-cta-mwr-text .subtitle {
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 5px;
}

.cs-btn-mwr {
  background: linear-gradient(135deg, #efcaa7, #f5dfc0);
  color: #1c1529;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(239, 202, 167, 0.3);
  margin-left: auto;
}

.cs-btn-mwr:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 202, 167, 0.45);
}

/* CTA MWR Final */
.cs-cta-mwr-final {
  text-align: center;
  margin-top: 20px;
}

.cs-btn-mwr-large {
  display: inline-block;
  background: linear-gradient(135deg, #efcaa7, #f5dfc0, #efcaa7);
  background-size: 200% auto;
  color: #1c1529;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(239, 202, 167, 0.35);
}

.cs-btn-mwr-large:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(239, 202, 167, 0.5);
}

.cs-cta-mwr-note {
  margin-top: 10px;
  color: var(--gray);
  font-size: 1rem;
}

/* Lien discret Dashboard */
.cs-dashboard-link {
  margin-top: 2rem;
  text-align: center;
}

.cs-dashboard-link a {
  color: var(--gray);
  font-size: 1rem;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.cs-dashboard-link a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ===== SPLIT SCREEN LAYOUT ===== */
.cs-section-split {
  max-width: none;
}

.cs-section-split > * {
  max-width: 1200px;
}

.cs-split-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.cs-split-layout.cs-split-reverse {
  grid-template-columns: 1fr 1.3fr;
}

/* Deblocage : panel image plus impactant */
#cs-deblocage .cs-split-media {
  border-left: 1px solid rgba(239,202,167,0.2);
  box-shadow: inset -30px 0 60px rgba(139,92,246,0.06), 0 0 40px rgba(139,92,246,0.05);
}

.cs-split-media {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
}

.cs-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.6s ease;
}

.cs-split-media:hover img {
  transform: scale(1.03);
}

.cs-split-media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(239,202,167,0.2);
  pointer-events: none;
}

.cs-split-media-glow {
  position: relative;
}

.cs-split-media-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(239,202,167,0.08));
  z-index: -1;
  filter: blur(8px);
}

/* ===== LAYOUT 2 COLONNES SECTION AMBASSADEUR ===== */
.cs-ambassadeur-layout {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 3rem;
  width: 100%;
  max-width: 1060px !important;
  align-items: center;
}

.cs-ambassadeur-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* L'image ambassadeur : panneau visible avec bordure */
.cs-ambassadeur-image {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(239,202,167,0.18);
  box-shadow: 0 0 40px rgba(139,92,246,0.1), 0 8px 30px rgba(0,0,0,0.4);
  aspect-ratio: 3/4;
  position: relative;
}

.cs-ambassadeur-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.cs-ambassadeur-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to bottom, transparent, rgba(7,8,18,0.4));
  pointer-events: none;
}

@media (max-width: 768px) {
  .cs-ambassadeur-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cs-ambassadeur-image {
    aspect-ratio: 16/9;
    max-height: 240px;
  }
}

/* ===== CARTE IMAGE SECTION CRÉATEURS ===== */
.cs-createurs-image {
  width: 100%;
  height: clamp(180px, 28vh, 280px);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(239,202,167,0.15);
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
  margin-top: 2rem;
}

.cs-createurs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transition: transform 0.6s ease;
}

.cs-createurs-image:hover img {
  transform: scale(1.04);
}

/* ===== VIDEO DE FOND SECTION REVENUS ===== */
#cs-revenus {
  position: relative;
  overflow: hidden;
}

#cs-revenus > *:not(.cs-revenus-video) {
  position: relative;
  z-index: 1;
}

.cs-revenus-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.cs-revenus-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.07;
  filter: grayscale(0.85);
}

/* ===== VERTICAL TIMELINE ===== */
.cs-timeline {
  position: relative;
  padding: 1rem 0 1rem 40px;
  margin: 2rem 0;
}

.cs-timeline-line {
  position: absolute;
  left: 17px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg,
    var(--accent-gold) 0%,
    var(--accent-orange) 50%,
    var(--accent-purple) 100%);
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(239, 202, 167, 0.2);
  transform-origin: top center;
}

.cs-timeline-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1rem 0;
  z-index: 1;
}

.cs-timeline-dot {
  position: absolute;
  left: -40px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  color: #1c1529;
  font-size: 0.95rem;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 0 16px rgba(239, 202, 167, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.cs-timeline-step:hover .cs-timeline-dot {
  box-shadow: 0 0 24px rgba(239, 202, 167, 0.5);
  transform: scale(1.08);
}

.cs-timeline-content {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 12px 12px 0;
  padding: 1rem 1.4rem;
  color: var(--gray-light);
  font-size: 1.05rem;
  flex: 1;
  border-left: 3px solid rgba(239, 202, 167, 0.35);
  transition: all 0.3s ease;
}

.cs-timeline-step:hover .cs-timeline-content {
  background: rgba(0, 0, 0, 0.3);
  border-left-color: rgba(239, 202, 167, 0.65);
}

/* ===== CE QUI DEVIENT ACCESSIBLE ===== */
.cs-accessible {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 5vw, 5rem) 2.5rem;
  background: linear-gradient(180deg, var(--bg-darker) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.cs-accessible-inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}

.cs-accessible-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cs-accessible-title-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: 0.75rem auto;
}

.cs-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--accent-gold);
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.cs-section-subtitle {
  font-size: 0.95rem;
  color: rgba(229, 231, 235, 0.5);
  font-style: italic;
}

.cs-accessible-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.cs-avantage-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  height: 185px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(239, 202, 167, 0.12);
  border-top: 2px solid rgba(239, 202, 167, 0.22);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.cs-avantage-item:hover {
  border-color: rgba(239, 202, 167, 0.32);
  border-top-color: rgba(239, 202, 167, 0.52);
  box-shadow: 0 8px 30px rgba(239, 202, 167, 0.12), 0 4px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.cs-avantage-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(239, 202, 167, 0.08), rgba(139, 92, 246, 0.1));
}

.cs-avantage-image::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(to right, transparent, rgba(7, 8, 18, 0.5));
  pointer-events: none;
}

.cs-avantage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.cs-avantage-item:hover .cs-avantage-image img {
  transform: scale(1.06);
}

.cs-avantage-image.no-image {
  background: linear-gradient(135deg, rgba(239, 202, 167, 0.08), rgba(139, 92, 246, 0.1));
}

.cs-avantage-content {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  border-left: 1px solid rgba(239, 202, 167, 0.08);
}

.cs-avantage-icon {
  color: var(--accent-gold);
}

.cs-avantage-icon svg {
  display: block;
}

.cs-avantage-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
}

.cs-avantage-content p {
  color: var(--gray-light);
  line-height: 1.65;
  font-size: 1rem;
  max-width: 480px;
  margin: 0;
}

@media (max-width: 1024px) {
  .cs-avantage-item {
    grid-template-columns: 200px 1fr;
  }
}

@media (max-width: 768px) {
  .cs-avantage-item {
    grid-template-columns: 1fr;
    height: auto;
  }
  .cs-avantage-image {
    height: 160px;
  }
  .cs-avantage-image::after {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    width: auto;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(7, 8, 18, 0.5));
  }
  .cs-avantage-content {
    border-left: none;
    border-top: 1px solid rgba(239, 202, 167, 0.08);
    padding: 1.25rem 1.5rem;
  }
}

/* ===== POURQUOI DIFFÉRENT ===== */
.cs-different {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 5vw, 5rem) 2.5rem;
  background: var(--bg-dark);
  overflow: hidden;
  position: relative;
}

.cs-different-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-359a081e2cdd4cfcbd6364dcc80f10d9.r2.dev/images/section-different/travel-panoramic.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.cs-different-inner {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cs-different-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cs-different-subtitle {
  font-size: 0.95rem;
  color: rgba(229, 231, 235, 0.5);
  font-style: italic;
}

.cs-different-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cs-different-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--accent-gold);
  border-radius: 12px;
  transition: all 0.4s ease;
}

.cs-different-item:hover {
  background: rgba(139, 92, 246, 0.1);
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
}

.cs-different-check {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(239, 202, 167, 0.12);
  border: 1px solid rgba(239, 202, 167, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-check-svg {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  transition: stroke-dashoffset 0.6s ease;
}

.cs-different-item.animated .cs-check-svg {
  stroke-dashoffset: 0;
}

.cs-different-text h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.cs-different-text p {
  color: var(--gray-light);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 768px) {
  .cs-different-item {
    border-left: none;
    border-top: 3px solid var(--accent-gold);
    gap: 1rem;
  }
  .cs-different-check {
    width: 40px;
    height: 40px;
  }
}

/* ===== TÉMOIGNAGES ===== */
.cs-temoignages {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.cs-temoignages-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cs-temo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cs-temo-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(239, 202, 167, 0.1);
  border-radius: 10px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cs-temo-text {
  font-size: 0.92rem;
  color: rgba(229, 231, 235, 0.7);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.cs-temo-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(239, 202, 167, 0.1);
}

.cs-temo-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.cs-temo-role {
  font-size: 0.8rem;
  color: rgba(229, 231, 235, 0.4);
}

@media (max-width: 768px) {
  .cs-accessible-grid {
    grid-template-columns: 1fr;
  }
  .cs-temo-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SECTION SEUIL ===== */
.cs-seuil {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 2rem;
}

.cs-seuil-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cs-seuil-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-seuil-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(7, 8, 18, 0.80) 0%,
      rgba(7, 8, 18, 0.28) 25%,
      rgba(7, 8, 18, 0.28) 65%,
      rgba(7, 8, 18, 0.88) 100%),
    radial-gradient(circle at 50% 50%,
      rgba(239, 202, 167, 0.04) 0%,
      transparent 65%);
}

.cs-seuil-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
}

.cs-seuil-compass {
  width: 60px;
  height: 60px;
  margin: 0 auto 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(239, 202, 167, 0.4);
  box-shadow: 0 0 20px rgba(239, 202, 167, 0.2);
}

.cs-seuil-compass-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-seuil-text {
  margin-bottom: 3rem;
}

.cs-seuil-line {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 300;
  color: var(--gray-light);
  line-height: 2;
  margin: 0;
}

.cs-seuil-line-1 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 600;
  color: var(--text-light);
}

.cs-seuil-line-3 {
  color: var(--accent-gold);
  font-weight: 600;
}

.cs-seuil-line-5 {
  color: var(--accent-orange);
  font-weight: 600;
  font-style: italic;
}

.cs-seuil-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: 1.5rem auto;
}

.cs-btn-seuil {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--bg-dark);
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light), var(--accent-gold));
  background-size: 200% auto;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow:
    0 4px 20px rgba(239, 202, 167, 0.35),
    0 0 40px rgba(239, 202, 167, 0.12);
  position: relative;
  overflow: hidden;
}

.cs-btn-seuil:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 8px 30px rgba(239, 202, 167, 0.45),
    0 0 60px rgba(239, 202, 167, 0.18);
}

.cs-btn-seuil::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
  z-index: -1;
  animation: seuilPulse 2s ease-in-out infinite;
}

@keyframes seuilPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.05); }
}

/* ===== CTA BACKGROUND IMAGE ===== */
.cs-cta-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.cs-cta-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.cs-cta-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(7, 8, 18, 0.15) 0%,
    rgba(7, 8, 18, 0.40) 45%,
    rgba(7, 8, 18, 0.88) 72%,
    rgba(7, 8, 18, 0.97) 100%);
  pointer-events: none;
}

/* ===== TRAJECTORY PROGRESS INDICATOR ===== */
.cs-trajectory {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  align-items: stretch;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.cs-trajectory.visible {
  opacity: 1;
  pointer-events: auto;
}

.cs-trajectory-line {
  width: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  position: relative;
  min-height: 200px;
}

.cs-trajectory-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  transition: height 0.3s ease;
}

.cs-trajectory-steps {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cs-trajectory-step {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cs-trajectory-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.cs-trajectory-step.active .cs-trajectory-dot {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
  width: 8px;
  height: 8px;
}

.cs-trajectory-step.passed .cs-trajectory-dot {
  background: rgba(255, 255, 255, 0.4);
}

.cs-trajectory-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0);
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.cs-trajectory-step:hover .cs-trajectory-label {
  color: rgba(255, 255, 255, 0.5);
}

.cs-trajectory-step.active .cs-trajectory-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.cs-trajectory-step.passed .cs-trajectory-label {
  color: rgba(255, 255, 255, 0);
}

.cs-trajectory-step.passed:hover .cs-trajectory-label {
  color: rgba(255, 255, 255, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cs-trajectory {
    display: none;
  }
}

@media (max-width: 768px) {
  .cs-hero {
    min-height: 100vh;
    padding: 3rem 1.5rem 3rem !important;
  }

  .cs-hero-video video {
    display: none;
  }

  .cs-hero-video {
    background-image: url('https://pub-359a081e2cdd4cfcbd6364dcc80f10d9.r2.dev/images/comprendre-systeme/banner-of-mountain-peaks-in-beautiful-stormy-sunse-2026-01-09-08-03-55-utc.jpg');
    background-size: cover;
    background-position: center;
  }

  .cs-section {
    min-height: 100svh;
    padding: 2.5rem 1.5rem !important;
  }

  #cs-reassurance {
    min-height: auto;
    padding: 2rem 1.5rem !important;
  }

  .cs-split-layout,
  .cs-split-layout.cs-split-reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cs-split-media {
    aspect-ratio: 16/9;
    max-height: 250px;
  }

  .cs-split-layout.cs-split-reverse .cs-split-media {
    order: -1;
  }

  .cs-differentiation,
  .cs-before-after,
  .cs-access-grid {
    grid-template-columns: 1fr;
  }

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

  .cs-unlock-grid {
    grid-template-columns: 1fr;
  }

  .cs-key-phrase {
    padding: 1.2rem 1.5rem;
  }

  .cs-key-phrase p {
    font-size: 1rem;
  }

  .cs-btn-primary {
    width: 100%;
    justify-content: center;
  }

  .cs-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .cs-timeline {
    padding-left: 35px;
  }

  .cs-timeline-dot {
    left: -35px;
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }

  .cs-seuil {
    min-height: 80vh;
  }

  .cs-seuil-line {
    line-height: 1.8;
  }

  .cs-btn-seuil {
    width: 100%;
    justify-content: center;
  }

  /* CTA MWR responsive */
  .cs-cta-mwr-content {
    flex-direction: column;
    text-align: center;
  }

  .cs-btn-mwr {
    margin: 15px auto 0;
  }

  .cs-btn-mwr-large {
    width: 100%;
  }

  /* Influencer steps : retour vertical sur mobile */
  .cs-influencer-steps {
    flex-direction: column;
    gap: 0.6rem;
  }

  .cs-influencer-steps::before {
    display: none;
  }

  .cs-influencer-step {
    flex-direction: row;
    text-align: left;
    padding: 0.7rem;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
  }
}

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

/* Tablette paysage (≤ 1024px) */
@media (max-width: 1024px) {
  .cs-feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs-influencer-steps::before {
    display: none;
  }

  .cs-influencer-steps {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .cs-influencer-step {
    flex: 0 0 calc(50% - 0.375rem);
  }
}

/* Tablette portrait (≤ 900px) */
@media (max-width: 900px) {
  .cs-feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs-timeline {
    padding-left: 32px;
  }

  .cs-influencer-step {
    flex: 0 0 calc(50% - 0.375rem);
  }

  .cs-access-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* ===== MODAL SAS - PRESENTATION ===== */

/* Variables SAS */
:root {
  --sas-bg: #1c1529;
  --sas-card-bg: rgba(13, 17, 23, 0.98);
  --sas-border: rgba(139, 92, 246, 0.25);
  --sas-purple: #8b5cf6;
  --sas-gold: #efcaa7;
  --sas-orange: #38bdf8;
  --sas-text: #f5dfc0;
  --sas-text-muted: #7a6e85;
}

/* Overlay du modal */
.modal-sas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Container du modal */
.modal-sas-container {
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Bouton fermer */
.modal-sas-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.modal-sas-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* Card SAS */
.sas-card {
  background: var(--sas-card-bg);
  border: 1px solid var(--sas-border);
  border-radius: 20px;
  max-width: 550px;
  width: 100%;
  padding: 40px;
  position: relative;
  box-shadow:
    0 0 40px rgba(187, 134, 252, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Icone serrure */
.sas-lock-icon {
  text-align: center;
  margin-bottom: 25px;
}

.sas-lock-icon .lock {
  font-size: 3rem;
  display: inline-block;
  animation: lockPulse 2s ease-in-out infinite;
}

@keyframes lockPulse {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(187, 134, 252, 0.5)); }
  50% { filter: drop-shadow(0 0 25px rgba(187, 134, 252, 0.8)); }
}

/* Badge deverrouille */
.sas-unlocked-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(187, 134, 252, 0.2), rgba(255, 215, 0, 0.1));
  border: 1px solid var(--sas-border);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.9rem;
  color: var(--sas-purple);
  margin-top: 10px;
}

/* Titre */
.sas-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--sas-text);
  margin-bottom: 25px;
  line-height: 1.3;
}

/* Statut et progression */
.sas-status {
  text-align: center;
  margin-bottom: 25px;
}

.sas-status-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.sas-status-badge {
  background: linear-gradient(135deg, var(--sas-purple), #9B59B6);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
}

.sas-step {
  color: var(--sas-text-muted);
}

/* Progress bar */
.sas-progress {
  margin-top: 15px;
}

.sas-progress-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.sas-progress-fill {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--sas-gold), var(--sas-orange));
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.sas-progress-label {
  text-align: right;
  font-size: 0.8rem;
  color: var(--sas-gold);
  margin-top: 5px;
}

/* Section decouvrir */
.sas-discover {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.sas-discover-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--sas-text);
  margin-bottom: 15px;
}

.sas-discover-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sas-discover-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--sas-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.sas-discover-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--sas-gold);
  font-weight: bold;
}

.sas-discover-list li:last-child {
  margin-bottom: 0;
}

/* Temps estime */
.sas-time {
  text-align: center;
  padding: 15px;
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 10px;
  margin-bottom: 20px;
  color: var(--sas-text-muted);
}

.sas-time span {
  color: var(--sas-gold);
  font-weight: 600;
}

/* Reassurance */
.sas-reassurance {
  margin-bottom: 25px;
}

.sas-reassurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--sas-text-muted);
  font-size: 0.9rem;
}

.sas-reassurance-item .check {
  color: #8b5cf6;
}

/* Section objectif */
.sas-objective {
  background: rgba(187, 134, 252, 0.05);
  border: 1px solid var(--sas-border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
}

.sas-objective-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sas-text);
  margin-bottom: 5px;
}

.sas-objective-subtitle {
  color: var(--sas-text-muted);
  font-size: 1rem;
  margin-bottom: 15px;
}

.sas-objective-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sas-objective-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sas-objective-option:hover {
  background: rgba(187, 134, 252, 0.1);
  border-color: var(--sas-border);
}

.sas-objective-option.selected {
  background: rgba(187, 134, 252, 0.15);
  border-color: var(--sas-purple);
}

.sas-objective-option input[type="radio"] {
  display: none;
}

.sas-radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--sas-text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.sas-objective-option.selected .sas-radio-custom {
  border-color: var(--sas-purple);
  background: var(--sas-purple);
}

.sas-radio-custom::after {
  content: "";
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.sas-objective-option.selected .sas-radio-custom::after {
  opacity: 1;
}

.sas-objective-label {
  color: var(--sas-text);
  font-size: 0.95rem;
}

/* Boutons CTA */
.sas-cta {
  text-align: center;
}

.sas-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, var(--sas-gold), var(--sas-orange));
  color: #000;
  font-size: 1.1rem;
  font-weight: 400;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.sas-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 215, 0, 0.5);
}

.sas-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
  padding: 10px 20px;
  background: transparent;
  color: var(--sas-text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sas-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--sas-text);
}

/* Note en bas */
.sas-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--sas-text-muted);
  font-style: italic;
}

/* Responsive Modal */
@media (max-width: 600px) {
  .modal-sas-overlay {
    padding: 15px;
  }

  .sas-card {
    padding: 25px 20px;
  }

  .sas-title {
    font-size: 1.3rem;
  }

  .sas-lock-icon .lock {
    font-size: 2.5rem;
  }

  .sas-status-line {
    flex-direction: column;
    gap: 8px;
  }

  .sas-btn-primary {
    padding: 14px 25px;
    font-size: 1rem;
  }

  .modal-sas-close {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
  }
}

/* ===== CHOIX DE PROFIL - CARTES ===== */
.sas-profile-choice {
  margin-bottom: 20px;
}

.sas-profile-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sas-text);
  margin-bottom: 20px;
  text-align: center;
  justify-content: center;
}

.sas-profile-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.sas-profile-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.sas-profile-card.salarie:hover {
  border-color: var(--sas-purple);
  background: rgba(187, 134, 252, 0.08);
}

.sas-profile-card.createur:hover {
  border-color: var(--sas-gold);
  background: rgba(255, 215, 0, 0.08);
}

.sas-profile-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

.sas-profile-card h3 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--sas-text);
  margin-bottom: 15px;
}

.sas-profile-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: left;
}

.sas-profile-card ul li {
  font-size: 1rem;
  color: var(--sas-text-muted);
  padding: 5px 0;
  padding-left: 12px;
  position: relative;
}

.sas-profile-card.salarie ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sas-purple);
}

.sas-profile-card.createur ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sas-gold);
}

.sas-profile-btn {
  display: block;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.sas-profile-btn.salarie {
  background: linear-gradient(135deg, var(--sas-purple), #9B59B6);
  color: #fff;
}

.sas-profile-btn.createur {
  background: linear-gradient(135deg, var(--sas-gold), var(--sas-orange));
  color: #000;
}

.sas-profile-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sas-profile-note {
  text-align: center;
  margin-top: 20px;
  font-size: 1rem;
  color: var(--sas-text-muted);
}

/* Responsive - Cartes en colonne sur mobile */
@media (max-width: 600px) {
  .sas-profile-cards {
    grid-template-columns: 1fr;
  }

  .sas-profile-card {
    padding: 18px;
  }

  .sas-profile-title {
    font-size: 1rem;
  }
}

/* ===== REASSURANCE BLOCK ===== */
.cs-reassurance-box {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(239, 202, 167, 0.15);
  border-left: 3px solid var(--accent-gold);
  border-radius: 0 10px 10px 0;
  padding: 2rem 2.5rem;
}

.cs-reassurance-box h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400 !important;
  color: var(--text-light);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.cs-reassurance-box > p {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.cs-reassurance-list {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cs-reassurance-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.6;
}

.cs-reassurance-check {
  color: var(--accent-gold);
  font-weight: 400;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 768px) {
  .cs-reassurance-box {
    padding: 1.5rem;
    margin: 0 1rem;
  }
}

/* ==========================================================================
   AMÉLIORATIONS UX/UI — PRIORITÉ 1 & 2 & 3
   ========================================================================== */

/* ===== SECTION 0A — SPLIT INTRO ECO (texte + boussole) ===== */
.cs-eco-split {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.cs-eco-text {
  display: flex;
  flex-direction: column;
}

.cs-eco-compass {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(239, 202, 167, 0.22);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(239, 202, 167, 0.08);
  aspect-ratio: 1/1;
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
  flex-shrink: 0;
}

.cs-eco-compass:hover {
  transform: rotate(0deg);
}

.cs-eco-compass img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.88;
}

/* ===== SECTION 0B — DIFFÉRENCE ===== */
#cs-difference {
  background: #0a0f1e;
}

/* ===== SECTION 1 — VISUEL TRAVEL ADVANTAGE ===== */
.cs-plateforme-visual {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin: 1.5rem 0;
  border: 1px solid rgba(239, 202, 167, 0.12);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.cs-plateforme-visual img {
  width: 100%;
  height: clamp(180px, 28vh, 320px);
  object-fit: cover;
  object-position: center 30%;
  display: block;
  opacity: 0.78;
  transition: opacity 0.4s ease, transform 0.6s ease;
}

.cs-plateforme-visual:hover img {
  opacity: 0.88;
  transform: scale(1.02);
}

.cs-plateforme-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(7, 8, 18, 0.8) 100%
  );
  pointer-events: none;
}

/* Variante screenshot plateforme — plus haute, full visible */
.cs-plateforme-visual--screenshot img {
  height: auto;
  max-height: none;
  min-height: 420px;
  object-fit: contain;
  object-position: center top;
  opacity: 1;
  background: #0a0e1f;
}
.cs-plateforme-visual--screenshot:hover img {
  transform: none;
}
.cs-plateforme-visual--screenshot::after {
  background: linear-gradient(
    180deg,
    transparent 80%,
    rgba(7, 8, 18, 0.5) 100%
  );
}

.cs-plateforme-caption {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 1;
  font-size: 1rem;
  font-style: italic;
  color: rgba(229, 231, 235, 0.65);
  line-height: 1.4;
}

/* ===== SECTION 2 — CAPTION IMAGE AMBASSADEUR ===== */
.cs-ambassadeur-caption {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  right: 1.2rem;
  font-size: 1rem;
  font-style: italic;
  color: rgba(229, 231, 235, 0.6);
  line-height: 1.4;
  z-index: 2;
}

/* ===== SECTION 3.5 — LAYOUT ÉDITORIAL CRÉATEURS ===== */
.cs-createurs-pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.45;
  letter-spacing: -0.02em;
  padding: 1.75rem 0 1.75rem 2rem;
  border-left: 2px solid var(--accent-gold);
  margin: 2rem 0;
  quotes: none;
}

.cs-createurs-pullquote::before,
.cs-createurs-pullquote::after {
  content: none;
}

.cs-benefit-lines {
  display: flex;
  flex-direction: column;
  margin: 0.5rem 0 1.5rem;
}

.cs-benefit-line {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cs-benefit-line:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cs-benefit-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--accent-gold);
  white-space: nowrap;
  min-width: 120px;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.cs-benefit-desc {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.65;
}

/* ===== SECTIONS CE QUI DEVIENT ACCESSIBLE + POURQUOI DIFFÉRENT — PLUS LARGES ===== */
.cs-accessible-inner,
.cs-different-inner {
  max-width: 1100px;
}

/* Numéros monumentaux */
.cs-accessible-num {
  font-size: clamp(3rem, 7vw, 5rem) !important;
  font-weight: 400 !important;
  color: var(--accent-gold) !important;
  letter-spacing: -0.04em !important;
  opacity: 0.1 !important;
  line-height: 1 !important;
  margin-bottom: 0.1rem !important;
}

/* Titres de section plus imposants */
.cs-section-title {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  letter-spacing: -0.03em !important;
}

/* ===== CTA FINAL — SANS IMAGE DE FOND, TITRE AGRANDI ===== */
.cs-cta-bg-image {
  display: none !important;
}

.cs-cta-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem) !important;
  letter-spacing: -0.02em !important;
}

/* ===== RESPONSIVE — NOUVEAUX ÉLÉMENTS ===== */
@media (max-width: 768px) {
  .cs-eco-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cs-eco-compass {
    aspect-ratio: 16/9;
    max-height: 220px;
    transform: none;
    order: -1;
  }

  .cs-eco-compass:hover {
    transform: none;
  }

  .cs-accessible-num {
    font-size: clamp(2rem, 8vw, 2.8rem) !important;
  }

  .cs-benefit-label {
    min-width: 95px;
    font-size: 0.88rem;
  }

  .cs-createurs-pullquote {
    padding-left: 1.25rem;
    font-size: clamp(1.1rem, 4vw, 1.4rem);
  }
}

/* ===== DUAL TEAM VISUAL ===== */
.cs-dual-team-visual {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}
.cs-dt-branch {
  flex: 1;
  min-width: 180px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.cs-dt-branch-label {
  font-size: 0.75em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.cs-dt-nodes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.cs-dt-row {
  display: flex;
  gap: 0.4rem;
}
.cs-dt-node {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75em;
  font-weight: 600;
  color: var(--text-light);
}
.cs-dt-node.cs-dt-you {
  background: rgba(239, 202, 167, 0.2);
  border-color: rgba(239, 202, 167, 0.6);
  color: var(--accent-gold);
}
.cs-dt-node.cs-dt-small {
  width: 32px;
  height: 32px;
  font-size: 0.65em;
  opacity: 0.55;
}
.cs-dt-connector {
  width: 1px;
  height: 24px;
  background: rgba(139, 92, 246, 0.3);
}
.cs-dt-count {
  margin-top: 0.5rem;
  font-size: 0.78em;
  color: var(--accent-gold);
  text-align: center;
  opacity: 0.85;
}
.cs-dt-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding-top: 1.5rem;
}
.cs-dt-you-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #efcaa7, #f5dfc0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 0.9em;
  color: #1c1529;
  box-shadow: 0 0 24px rgba(239, 202, 167, 0.3);
}
.cs-dt-balance-label {
  font-size: 0.72em;
  text-align: center;
  color: var(--gray-light);
  line-height: 1.4;
}
.cs-dt-note {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--gray-light);
  text-align: center;
  line-height: 1.7;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
}
#cs-dual-team .cs-section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-light);
  margin-top: 0.5rem;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .cs-dt-center { display: none; }
  .cs-dt-branch { min-width: 130px; }
  .cs-dt-node { width: 38px; height: 38px; }
}

/* ===== LIFE EXPERIENCES & LIFESTYLE MALL ===== */
#cs-life-experiences { background: #1c1529; }
#cs-lifestyle-mall   { background: #221835; }

/* Layout deux colonnes : contenu | image */
.cs-le-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cs-le-layout--reverse {
  direction: rtl;
}
.cs-le-layout--reverse > * {
  direction: ltr;
}

/* Colonne texte */
.cs-le-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cs-le-content .cs-section-header {
  margin-bottom: 0;
}

/* Sous-titre hors header */
#cs-life-experiences .cs-section-subtitle,
#cs-lifestyle-mall .cs-section-subtitle {
  font-size: 1rem;
  color: var(--gray-light);
  font-style: normal;
  line-height: 1.65;
  margin: 0;
}

/* Grille de cartes */
.cs-le-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.cs-le-card {
  background: rgba(139, 92, 246, 0.07);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.cs-le-icon {
  font-size: 1.4rem;
  line-height: 1;
}
.cs-le-card h3 {
  color: var(--text-light);
  font-size: 0.97rem;
  margin: 0;
  font-weight: 400;
}
.cs-le-card p {
  color: var(--gray-light);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}
.cs-le-card strong {
  color: var(--text-light);
}
.cs-le-note {
  background: rgba(139, 92, 246, 0.07);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}
.cs-le-note p {
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0;
}
.cs-le-note strong { color: var(--accent-gold); }

/* Emplacement image */
/* Slot image réel */
.cs-le-img-slot {
  border-radius: 14px;
  overflow: hidden;
  align-self: stretch;
  min-height: 320px;
}
.cs-le-img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  display: block;
}

/* Variante Lifestyle Mall — teinte dorée */
#cs-lifestyle-mall .cs-le-card {
  background: rgba(239, 202, 167, 0.06);
  border-color: rgba(239, 202, 167, 0.15);
}
#cs-lifestyle-mall .cs-le-note {
  background: rgba(239, 202, 167, 0.06);
  border-color: rgba(239, 202, 167, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .cs-le-layout,
  .cs-le-layout--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }
  .cs-le-img-slot {
    order: -1;
  }
}



/* === CTA SECTION — REFONTE === */

.cs-cta-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  border: 1px solid rgba(239, 202, 167, 0.3);
  border-radius: 20px;
  padding: 0.3rem 1.1rem;
  margin-bottom: 1.5rem;
}

.cs-cta-sep {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: 0 auto 2rem;
}

.cs-cta-dashboard-note {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 2rem;
}
.cs-cta-dashboard-note a {
  color: var(--accent-cyan);
  text-decoration: none;
}
.cs-cta-dashboard-note a:hover { text-decoration: underline; }

.cs-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.cs-cta-footer {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--gray);
  opacity: 0.55;
  font-style: italic;
}
.cs-cta-footer-link {
  color: var(--gray);
  text-decoration: none;
}
.cs-cta-footer-link:hover { opacity: 1; text-decoration: underline; }
.cs-cta-footer-sep { opacity: 0.4; font-style: normal; }

/* ===== GRADE CARDS (#cs-grades) ===== */
.cs-grade-cards-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.cs-grade-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.1);
  transition: background 0.2s;
}
.cs-grade-card:hover { background: rgba(139, 92, 246, 0.08); }
.cs-grade-card--highlight {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.28);
}
.cs-grade-card-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.cs-grade-emoji { font-size: 1.4rem; line-height: 1; }
.cs-grade-name {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0;
  font-weight: 400;
}
.cs-grade-req {
  font-size: 1rem;
  color: var(--gray);
  margin: 0.1rem 0 0 0;
}
.cs-grade-card-right {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  flex-shrink: 0;
}
.cs-grade-revenue {
  font-size: 1.25rem;
  font-weight: 400;
  color: #a78bfa;
}
.cs-grade-period {
  font-size: 0.92rem;
  color: var(--gray);
}
.cs-grade-card--highlight .cs-grade-revenue { color: var(--accent-purple); }
.cs-grade-badge {
  font-size: 0.8rem;
  background: rgba(139, 92, 246, 0.18);
  color: #c4b5fd;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 0.5rem;
  white-space: nowrap;
  vertical-align: middle;
}
.cs-grades-more-line {
  font-size: 1rem;
  color: var(--gray);
  font-style: italic;
  text-align: center;
  padding: 0.75rem 0 0;
  margin: 0;
}

/* Commissions bar */
.cs-commissions-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 0.9rem 1.25rem;
  background: rgba(239, 202, 167, 0.04);
  border: 1px solid rgba(239, 202, 167, 0.12);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: var(--gray-light, #9CA3AF);
}
.cs-commissions-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  font-weight: 400;
  flex-shrink: 0;
}
.cs-commissions-item strong { color: var(--text-light); font-weight: 400; }
.cs-commissions-sep { color: var(--gray); opacity: 0.4; }

@media (max-width: 600px) {
  .cs-grade-card { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .cs-commissions-bar { flex-direction: column; align-items: flex-start; }
}
