/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; padding: 0; }

/* ============================================================
   FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

/* ============================================================
   VARIABLES GLOBALES
   ============================================================ */
:root {
  --navy: #100532;
  --navy-mid: #1e0a5e;
  --gold: #a78cf4;
  --gold-dark: #8b6de8;
  --white: #FFFFFF;
  --gray-50: #f1f1f1;
  --gray-100: #e4e4ec;
  --gray-400: #9490a8;
  --gray-600: #55506a;
  --lav: #f2edff;
  --radius: 12px;
  --radius-lg: 20px;
}

/* ============================================================
   URGENCY BAR
   ============================================================ */
@keyframes ds3-urgency-pulse {
  0%,100% { opacity: 1; }
  50%     { opacity: .7; }
}

.ds3-urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 42px;
  padding: 0 16px;
  background: linear-gradient(90deg, #ff4d00 0%, #ff8c00 50%, #ff4d00 100%);
  background-size: 200% 100%;
  animation: ds3-urgency-slide 4s linear infinite;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  text-align: center;
  overflow: hidden;
}

@keyframes ds3-urgency-slide {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.ds3-urgency-bar__icon {
  font-size: 1rem;
  animation: ds3-urgency-pulse 1.4s ease-in-out infinite;
}

.ds3-urgency-bar__code {
  display: inline-block;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 4px;
  padding: 1px 7px;
  letter-spacing: .06em;
  font-size: .9rem;
}

.ds3-urgency-bar__cta {
  display: inline-block;
  background: #fff;
  color: #cc3300;
  font-weight: 700;
  font-size: .8rem;
  padding: 4px 14px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, color .2s;
}

.ds3-urgency-bar__cta:hover {
  background: #ffe8e0;
  color: #aa2200;
}
.ds3-urgency-bar s,
.ds3-urgency-bar__text strong { white-space: nowrap; }

/* ============================================================
   SECTION 01 — NAVBAR + HERO V3
   ============================================================ */

/* Keyframes */
@keyframes ds3-glow {
  0%,100% { box-shadow: 0 4px 20px rgba(167,140,244,.5); }
  50%     { box-shadow: 0 4px 44px rgba(167,140,244,.9), 0 0 70px rgba(167,140,244,.2); }
}
@keyframes ds3-float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-9px); }
}
@keyframes ds3-blink {
  0%,100% { opacity: 1; }
  50%     { opacity: 0; }
}

.ds3-nh, .ds3-nh * { box-sizing: border-box; }
.ds3-nh a { text-decoration: none; color: inherit; }

/* Wrapper fond sombre */
.ds3-nh {
  background: linear-gradient(135deg, #100532 0%, #1e0a5e 50%, #28126e 100%);
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* Grille de points violets */
.ds3-nh::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(167,140,244,.2) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Fondu bas */
.ds3-nh::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(241,241,241,.45));
  pointer-events: none;
}

/* Scanlines CRT */
.ds3-scanlines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0,0,0,.04) 3px, rgba(0,0,0,.04) 4px
  );
}

/* ── Navbar ── */
.ds3-nav {
  position: fixed; top: 42px; left: 0; right: 0; z-index: 200;
  background: #f1f1f1;
  border-bottom: 1px solid rgba(16,5,50,.09);
  box-shadow: 0 2px 20px rgba(16,5,50,.06);
}
.ds3-nav__inner {
  max-width: 1120px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 16px;
}
.ds3-nav__logo-group {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.ds3-nav__logo-img {
  width: 52px; height: 52px; border-radius: 0; object-fit: contain;
}
.ds3-nav__logo {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.2rem; font-weight: 900;
  color: var(--navy); letter-spacing: -.02em; white-space: nowrap;
}
.ds3-nav__logo span { color: var(--gold); }
.ds3-nav__divider {
  width: 1px; height: 20px;
  background: rgba(16,5,50,.13); flex-shrink: 0;
}
.ds3-nav__title {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.25rem; font-weight: 800; letter-spacing: -.01em;
  background: linear-gradient(120deg, #8b6de8 0%, #a78cf4 55%, #c4aaff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}
.ds3-nav__links {
  display: flex; align-items: center; gap: 32px;
  flex: 1; justify-content: flex-end;
}
.ds3-nav__link {
  font-family: 'Inter', sans-serif;
  font-size: .9rem; font-weight: 500;
  color: #55506a; white-space: nowrap;
  text-decoration: none; position: relative;
  transition: color .15s;
}
.ds3-nav__link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform .2s;
}
.ds3-nav__link:hover { color: var(--gold-dark); }
.ds3-nav__link:hover::after { transform: scaleX(1); }

/* Burger mobile */
.ds3-nav__burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  background: none;
  border: 2px solid rgba(16,5,50,.18);
  border-radius: 8px;
  padding: 9px 10px;
  cursor: pointer; flex-shrink: 0;
}
.ds3-nav__burger span {
  display: block; width: 20px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all .2s;
}

/* Menu mobile déroulant */
.ds3-nav__mobile {
  display: none;
  flex-direction: column;
  background: #f1f1f1;
  border-top: 1px solid rgba(16,5,50,.08);
  box-shadow: 0 8px 24px rgba(16,5,50,.1);
  padding: 8px 20px 20px;
}
.ds3-nav__mobile.ds3-open { display: flex; }
.ds3-nav__mobile-link {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 500;
  color: var(--navy);
  padding: 16px 0;
  border-bottom: 1px solid rgba(16,5,50,.07);
  text-decoration: none;
  transition: color .15s;
}
.ds3-nav__mobile-link:hover { color: var(--gold-dark); }
.ds3-nav__mobile-cta {
  display: block; margin-top: 16px;
  padding: 15px 20px; border-radius: 100px;
  background: linear-gradient(135deg, #8b6de8 0%, #a78cf4 100%);
  color: #f1f1f1;
  font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 700;
  text-align: center; text-decoration: none;
  box-shadow: 0 4px 18px rgba(139,109,232,.35);
}

/* CTA desktop */
.ds3-nav__cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: 100px;
  background: linear-gradient(135deg, #8b6de8 0%, #a78cf4 100%);
  color: #f1f1f1;
  font-family: 'Inter', sans-serif;
  font-size: .88rem; font-weight: 700;
  white-space: nowrap; flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(139,109,232,.35);
  transition: box-shadow .2s, transform .15s;
}
.ds3-nav__cta:hover {
  box-shadow: 0 6px 30px rgba(139,109,232,.6);
  transform: translateY(-1px);
}

/* ── Hero ── */
.ds3-hero {
  position: relative; z-index: 1;
  padding: 170px 0 110px; /* 42px urgency + 68px navbar + 60px espace */
}
.ds3-hero__inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

/* Badge */
.ds3-badge { margin-bottom: 20px; }
.ds3-badge__pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(167,140,244,.12); color: var(--gold);
  border: 1px solid rgba(167,140,244,.35);
  padding: 7px 16px; border-radius: 100px;
  font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  box-shadow: 0 0 18px rgba(167,140,244,.2);
  white-space: nowrap;
}
.ds3-badge__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
  box-shadow: 0 0 8px rgba(167,140,244,.9);
  animation: ds3-glow 2s ease-in-out infinite;
}
.ds3-badge__sep {
  width: 1px; height: 12px;
  background: rgba(167,140,244,.3);
}
.ds3-badge__name {
  color: rgba(255,255,255,.9); font-weight: 800;
}

/* Titre */
.ds3-title {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900; line-height: 1.00;
  color: var(--white); margin-bottom: 20px;
}
.ds3-title br { display: none; }
.ds3-grad {
  display: inline-block;
  padding-right: 0.08em;
  background: linear-gradient(120deg, #d4bcff 0%, #a78cf4 45%, #c4aaff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 14px rgba(167,140,244,.45));
}

/* Sous-titre */
.ds3-sub {
  font-size: 1rem; color: rgba(255,255,255,.7);
  margin-bottom: 32px; line-height: 1.7;
}
.ds3-sub strong { color: rgba(255,255,255,.95); font-weight: 700; }

/* Checklist */
.ds3-checklist {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: flex; flex-direction: column; gap: 14px;
}
.ds3-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .96rem; color: rgba(255,255,255,.8); line-height: 1.6;
}
.ds3-check {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px;
  background: linear-gradient(135deg, #8b6de8 0%, #a78cf4 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .62rem; font-weight: 900;
  box-shadow: 0 0 12px rgba(167,140,244,.55);
}
.ds3-checklist li strong { color: var(--white); font-weight: 700; }

/* Boutons */
.ds3-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; }
.ds3-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 28px; border-radius: 100px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all .2s ease; border: 2px solid transparent;
  white-space: nowrap; text-decoration: none;
}
.ds3-btn--primary {
  background: var(--gold); color: #f1f1f1;
  animation: ds3-glow 2.8s ease-in-out infinite;
}
.ds3-btn--primary:hover {
  animation: none; background: var(--gold-dark);
  box-shadow: 0 6px 52px rgba(167,140,244,.95); transform: translateY(-2px);
}
.ds3-btn--outline {
  background: transparent !important; color: #f1f1f1 !important;
  border-color: rgba(255,255,255,.4);
}
.ds3-btn--outline:hover {
  background: rgba(255,255,255,.08) !important; border-color: var(--white);
}
.ds3-scroll { font-size: .85rem; color: rgba(255,255,255,.38); margin-top: 20px; }

/* ── Terminal ── */
.ds3-terminal {
  background: #05010d;
  border: 1px solid rgba(167,140,244,.22);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(167,140,244,.08),
              0 0 48px rgba(167,140,244,.18),
              0 28px 80px rgba(16,5,50,.75);
  animation: ds3-float 5s ease-in-out infinite;
  position: relative;
}
.ds3-terminal::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(167,140,244,.06) 0%, transparent 55%);
  pointer-events: none; z-index: 0;
}
.ds3-term-bar {
  background: rgba(167,140,244,.05);
  border-bottom: 1px solid rgba(167,140,244,.12);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  position: relative; z-index: 1;
}
.ds3-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.ds3-dot--r { background: #ff5f57; }
.ds3-dot--y { background: #febc2e; }
.ds3-dot--g { background: #28c840; }
.ds3-term-name {
  flex: 1; text-align: center;
  font-family: 'Courier New', monospace; font-size: .7rem;
  color: rgba(167,140,244,.4); letter-spacing: .06em;
}
.ds3-term-body {
  padding: 18px 20px;
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: .78rem; line-height: 1.85;
  min-height: 340px;
  position: relative; z-index: 1;
  overflow: hidden;
}
.ds3-tl       { display: flex; align-items: baseline; overflow: hidden; }
.ds3-tl__p    { color: #a78cf4; margin-right: 7px; font-weight: 700; flex-shrink: 0;
                text-shadow: 0 0 12px rgba(167,140,244,.8); }
.ds3-tl__c    { color: #f1f1f1; overflow: hidden; white-space: nowrap; }
.ds3-tl__ok   { color: #4ade80; text-shadow: 0 0 10px rgba(74,222,128,.4); }
.ds3-tl__info { color: rgba(167,140,244,.78); }
.ds3-tl__dim  { color: rgba(241,241,241,.28); font-style: italic; }
.ds3-tl--blank { height: .55em; }
.ds3-cursor {
  display: inline-block; width: 8px; height: 14px;
  background: #a78cf4; vertical-align: middle; margin-left: 2px;
  animation: ds3-blink 1.1s step-end infinite;
  box-shadow: 0 0 12px rgba(167,140,244,.9);
}

/* ── Responsive section 01 ── */
@media (max-width: 1024px) {
  .ds3-hero__inner { gap: 40px; }
}
@media (max-width: 900px) {
  .ds3-nh { margin-top: 0; }
  .ds3-nav { top: 42px; }
  .ds3-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px; text-align: center;
  }
  .ds3-badge   { display: flex; justify-content: center; }
  .ds3-actions { justify-content: center; }
  .ds3-scroll  { text-align: center; }
  .ds3-title br { display: inline; }
  .ds3-checklist li { text-align: left; }
  .ds3-badge__dot  { display: none; }
  .ds3-badge__sep  { display: none; }
  .ds3-badge__name::after { content: ' ·'; }
  .ds3-badge__pill {
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    border-radius: 14px;
    max-width: 100%;
    font-size: .68rem;
    padding: 7px 14px;
    line-height: 1.5;
  }
  .ds3-nav__links   { display: none; }
  .ds3-nav__divider { display: none; }
  .ds3-nav__cta     { display: none; }
  .ds3-nav__burger  { display: flex; }
  .ds3-nav__title   { font-size: 1rem; }
}
@media (max-width: 640px) {
  html, body       { overflow-x: hidden; }
  .ds3-nh          { overflow-x: hidden; }
  .ds3-hero         { padding: 124px 0 72px; } /* 42px urgency + 68px navbar + 14px espace */
  .ds3-hero__inner  { padding: 0 16px; gap: 32px; max-width: 100%; }
  .ds3-nav__inner   { padding: 0 16px; }
  .ds3-urgency-bar__deadline { display: none; }
  .ds3-urgency-bar  { font-size: .78rem; gap: 8px; }
  .ds3-title        { font-size: clamp(1.75rem, 7.5vw, 2.4rem); text-align: center; }
  .ds3-title br     { display: none; }
  .ds3-sub          { font-size: .92rem; margin-bottom: 24px; text-align: center; }
  .ds3-badge        { max-width: 100%; }
  .ds3-nav__logo    { font-size: 1.1rem; }
  .ds3-nav__logo-img { width: 36px; height: 36px; }
  .ds3-nav__cta     { padding: 9px 14px; font-size: .78rem; }
  .ds3-nav__cta::after { content: ''; }
  .ds3-actions      { flex-direction: column; align-items: stretch; gap: 12px; }
  .ds3-btn          { width: 100%; padding: 14px 20px; font-size: .95rem; text-align: center; }
  .ds3-checklist li { font-size: .88rem; gap: 10px; }
  .ds3-terminal     { max-width: 100%; overflow: hidden; margin: 0 auto; }
  .ds3-term-body    { min-height: 210px; font-size: .72rem; padding: 14px; }
  .ds3-term-name    { font-size: .62rem; }
  .ds3-tl__c        { max-width: calc(100vw - 80px); overflow: hidden; text-overflow: ellipsis; }
}
@media (max-width: 380px) {
  .ds3-title        { font-size: 1.65rem; }
  .ds3-sub          { font-size: .85rem; }
  .ds3-checklist li { font-size: .82rem; }
  .ds3-btn          { font-size: .88rem; padding: 13px 16px; }
  .ds3-term-body    { min-height: 180px; font-size: .67rem; line-height: 1.7; }
  .ds3-nav__cta     { font-size: .74rem; padding: 8px 12px; }
  .ds-countdown-block { min-width: 48px; padding: 8px 8px; }
  .ds-countdown-num   { font-size: 1.25rem; }
  .ds-countdown-sep   { font-size: 1rem; }
}

/* ============================================================
   SECTION 02 — TÉMOIGNAGES
   ============================================================ */

/* Keyframes témoignages */
@keyframes ds-tw-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes ds-tw-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.ds-section-tw * { box-sizing: border-box; }
.ds-section-tw {
  padding: 96px 0;
  background: var(--lav);
  font-family: 'Inter', sans-serif; color: var(--navy);
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

/* En-tête */
.ds-tw-header {
  text-align: center;
  max-width: 700px; margin: 0 auto 60px;
  padding: 0 24px;
}
.ds-tw-label {
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  background: linear-gradient(90deg, #a78cf4 0%, #100532 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.ds-tw-label::before {
  content: ''; display: block; width: 80px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, transparent 0%, #a78cf4 40%, #100532 75%, transparent 100%);
}
.ds-tw-title {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.1; color: var(--navy);
  white-space: nowrap;
}
.ds-tw-title em {
  display: inline-block; font-style: normal;
  background: linear-gradient(120deg, #8b6de8 0%, #a78cf4 55%, #c4aaff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: .04em;
}

/* Pistes défilantes */
.ds-tw-track-wrap {
  overflow: hidden;
  padding: 14px 0;
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
          mask: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.ds-tw-track-wrap + .ds-tw-track-wrap { margin-top: 0; }
.ds-tw-track {
  display: flex; gap: 20px;
  width: max-content;
}
.ds-tw-track--left  { animation: ds-tw-left  40s linear infinite; }
.ds-tw-track--right { animation: ds-tw-right 46s linear infinite; }
.ds-tw-track:hover  { animation-play-state: paused; }

/* Carte témoignage */
.ds-tw-card {
  background: var(--white);
  border: 1.5px solid rgba(167,140,244,.18);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  width: 360px; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: 0 2px 16px rgba(16,5,50,.06);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.ds-tw-card:hover {
  border-color: #a78cf4;
  box-shadow:
    0 0 0 2px #a78cf4,
    0 0 16px rgba(167,140,244,.55),
    0 0 40px rgba(167,140,244,.30),
    0 6px 24px rgba(16,5,50,.10);
  transform: translateY(-3px);
}
.ds-tw-card__qmark {
  font-family: Georgia, serif;
  font-size: 2.4rem; line-height: 1;
  color: rgba(167,140,244,.45);
  user-select: none;
  margin-bottom: -6px;
}
.ds-tw-card__text {
  font-size: .93rem; color: var(--gray-600); line-height: 1.75; flex: 1; margin: 0;
}
.ds-tw-mark {
  background: rgba(167,140,244,.18);
  color: var(--navy); font-weight: 600;
  border-radius: 3px; padding: 0 2px;
}
.ds-tw-card__author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 4px;
}
.ds-tw-card__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #1a0550 0%, #5b2abf 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'League Spartan', sans-serif;
  font-size: .88rem; font-weight: 900; color: var(--white);
  overflow: hidden;
}
.ds-tw-card__avatar img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block;
}
.ds-tw-card__avatar:has(img) { background: none; font-size: 0; }
.ds-tw-card__name  { font-weight: 700; font-size: .9rem; color: var(--navy); }
.ds-tw-card__role  { font-size: .78rem; color: var(--gold-dark); font-weight: 600; margin-top: 2px; }

/* Responsive section 02 */
@media (max-width: 768px) {
  .ds-tw-title { white-space: normal; }
  .ds-tw-header { margin-bottom: 40px; }
}
@media (max-width: 640px) {
  .ds-section-tw  { padding: 32px 0 !important; }
  .ds-tw-title    { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .ds-tw-header   { margin-bottom: 32px; padding: 0 16px; }
  .ds-tw-card     { width: 280px; padding: 20px 18px 16px; }
  .ds-tw-card__text { font-size: .86rem; }
}

/* ============================================================
   SECTION 03 — POUR QUI
   ============================================================ */
@keyframes ds-glow-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(167,140,244,.5); }
  50%     { box-shadow: 0 4px 44px rgba(167,140,244,.9), 0 0 70px rgba(167,140,244,.2); }
}

.ds-section-pour-qui * { box-sizing: border-box; }
.ds-section-pour-qui {
  padding: 96px 0;
  background: var(--white);
  font-family: 'Inter', sans-serif; color: var(--navy);
}
.ds-section-pour-qui .ds-container {
  max-width: 980px; margin: 0 auto; padding: 0 24px;
}

.ds-pq-header { text-align: center; margin-bottom: 64px; }
.ds-pq-header .ds-section-label {
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  background: linear-gradient(90deg, #a78cf4 0%, #100532 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.ds-pq-header .ds-section-label::before {
  content: ''; display: block; width: 80px; height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent 0%, #a78cf4 40%, #100532 75%, transparent 100%);
}

.ds-pq-question {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900; line-height: 1.15; color: var(--navy);
  margin-bottom: 20px; white-space: nowrap;
}
.ds-pq-question em {
  display: inline-block;
  background: linear-gradient(120deg, #c4aaff 0%, #a78cf4 50%, #8b6de8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}

.ds-pq-intro {
  font-size: 1.1rem; color: var(--gray-600); line-height: 1.7;
  white-space: nowrap; margin: 0 auto;
}

.ds-pq-list { display: flex; flex-direction: column; gap: 16px; }

.ds-pq-item {
  display: flex; align-items: center; gap: 24px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  cursor: default;
}
.ds-pq-item:hover {
  border-color: rgba(167,140,244,.4);
  background: rgba(167,140,244,.04);
  box-shadow: 0 0 24px rgba(167,140,244,.1);
}

.ds-pq-item__icon {
  font-size: 2rem; flex-shrink: 0;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #0a021f 0%, #2a0e7a 50%, #5b2abf 100%);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 20px rgba(167,140,244,.3), inset 0 1px 0 rgba(255,255,255,.1);
}

.ds-pq-item__body { flex: 1; min-width: 0; }
.ds-pq-item__q {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.15rem; font-weight: 800; color: var(--navy);
  line-height: 1.25; margin-bottom: 6px;
}
.ds-pq-item__desc { font-size: .92rem; color: var(--gray-600); line-height: 1.6; }

.ds-pq-item__check {
  width: 36px; height: 36px; flex-shrink: 0; border-radius: 50%;
  background: rgba(167,140,244,.12);
  border: 1.5px solid rgba(167,140,244,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark); font-size: 1rem; font-weight: 900;
}

.ds-pq-closing {
  margin-top: 48px; text-align: center;
  font-size: 1rem; color: var(--gray-600); line-height: 1.7;
}
.ds-pq-closing strong { color: var(--navy); font-weight: 700; }

@media (max-width: 768px) {
  .ds-pq-question { white-space: normal; font-size: clamp(1.4rem, 5vw, 2rem); }
  .ds-pq-intro    { white-space: normal; font-size: 1rem; }
  .ds-pq-header   { margin-bottom: 40px; }
}
@media (max-width: 640px) {
  .ds-section-pour-qui { padding: 56px 0; }
  .ds-section-pour-qui .ds-container { padding: 0 16px; }
  .ds-pq-header   { margin-bottom: 32px; }
  .ds-pq-question { font-size: clamp(1.3rem, 6vw, 1.7rem); }
  .ds-pq-intro    { font-size: .95rem; }
  .ds-pq-item     { padding: 16px 14px; gap: 14px; }
  .ds-pq-item__icon { width: 46px; height: 46px; font-size: 1.4rem; }
  .ds-pq-item__q  { font-size: .97rem; }
  .ds-pq-item__desc { font-size: .86rem; }
  .ds-pq-item__check { display: none; }
  .ds-pq-closing  { margin-top: 32px; font-size: .92rem; }
}

/* ============================================================
   SECTION 04 — PROGRAMME
   ============================================================ */
@keyframes ds-fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.ds-section-prog * { box-sizing: border-box; }
.ds-section-prog {
  padding: 96px 0; background: var(--gray-50);
  font-family: 'Inter', sans-serif; color: var(--navy);
}
.ds-section-prog .ds-container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.ds-section-prog .ds-section-label {
  display: inline-flex; flex-direction: column; gap: 10px;
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  background: linear-gradient(90deg, #a78cf4 0%, #100532 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}
.ds-section-prog .ds-section-label::before {
  content: ''; display: block; width: 80px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, transparent 0%, #a78cf4 40%, #100532 75%, transparent 100%);
}
.ds-section-prog .ds-section-title {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.15; color: var(--navy); margin-bottom: 16px;
}
.ds-section-prog .ds-section-sub {
  font-size: 1.05rem; color: var(--gray-600); max-width: 100%; line-height: 1.7;
}

.ds-prog-layout {
  display: grid; grid-template-columns: 430px 1fr;
  gap: 32px; margin-top: 56px; align-items: start;
}

.ds-prog-list { display: flex; flex-direction: column; gap: 12px; }

.ds-prog-item {
  background: var(--white); border: 1.5px solid var(--gray-100);
  border-radius: 14px; padding: 22px 24px;
  cursor: pointer; display: flex; align-items: center; gap: 20px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  user-select: none;
}
.ds-prog-item:hover {
  border-color: rgba(167,140,244,.35);
  box-shadow: 0 0 20px rgba(167,140,244,.1);
}
.ds-prog-item.active {
  border-color: rgba(167,140,244,.55);
  background: rgba(167,140,244,.05);
  box-shadow: 0 0 28px rgba(167,140,244,.15), 0 0 0 1px rgba(167,140,244,.18);
}

.ds-prog-item__num {
  width: 64px; height: 64px; flex-shrink: 0;
  background: linear-gradient(135deg, #0a021f 0%, #2a0e7a 50%, #5b2abf 100%);
  color: #f1f1f1; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: 'League Spartan', sans-serif; font-weight: 900; font-size: 1.5rem;
  transition: box-shadow .2s;
  box-shadow: inset 0 1px 0 rgba(167,140,244,.2);
}
.ds-prog-item.active .ds-prog-item__num {
  background: linear-gradient(135deg, #1a0550 0%, #3d14a0 50%, #7c3de8 100%);
  box-shadow: 0 0 24px rgba(167,140,244,.6), inset 0 1px 0 rgba(255,255,255,.15);
}

.ds-prog-item__text { flex: 1; min-width: 0; }
.ds-prog-item__duration {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .72rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--gray-400);
  margin-bottom: 6px; white-space: nowrap; transition: color .2s;
}
.ds-prog-item__duration .ds-prog-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gray-400); flex-shrink: 0; transition: background .2s;
}
.ds-prog-item.active .ds-prog-item__duration { color: var(--gold-dark); }
.ds-prog-item.active .ds-prog-dot { background: var(--gold); }

.ds-prog-item__title {
  font-family: 'League Spartan', sans-serif; font-weight: 800;
  font-size: 1.05rem; color: var(--navy); line-height: 1.3;
  text-transform: uppercase; letter-spacing: .02em;
}

.ds-prog-item__arrow {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%;
  border: 1.5px solid var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gray-400); transition: all .2s;
}
.ds-prog-item.active .ds-prog-item__arrow {
  background: var(--navy); border-color: var(--navy); color: var(--gold);
  box-shadow: 0 0 14px rgba(167,140,244,.35);
}

.ds-prog-detail {
  background: var(--white);
  border: 1px solid rgba(167,140,244,.22);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  box-shadow: 0 0 60px rgba(167,140,244,.12), 0 20px 60px rgba(16,5,50,.18);
  position: sticky; top: 88px;
  min-height: 480px;
}

.ds-prog-detail__panel { display: none; }
.ds-prog-detail__panel.active {
  display: flex; flex-direction: column; gap: 32px;
  animation: ds-fadeIn .3s ease;
}

.ds-prog-detail__header {
  display: flex; align-items: flex-start; gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-100);
}
.ds-prog-detail__num {
  width: 80px; height: 80px; flex-shrink: 0;
  background: linear-gradient(135deg, #0a021f 0%, #2a0e7a 50%, #5b2abf 100%);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: 'League Spartan', sans-serif; font-weight: 900; font-size: 2rem;
  color: #f1f1f1;
  box-shadow: 0 0 28px rgba(167,140,244,.45), inset 0 1px 0 rgba(255,255,255,.15);
}
.ds-prog-detail__meta { flex: 1; }
.ds-prog-detail__time {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .8rem; color: var(--gold-dark); font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; margin-bottom: 10px;
  background: rgba(167,140,244,.1); padding: 5px 14px;
  border-radius: 100px; border: 1px solid rgba(167,140,244,.25);
}
.ds-prog-detail__title {
  font-family: 'League Spartan', sans-serif; font-weight: 800;
  font-size: 1.85rem; color: var(--navy); line-height: 1.15;
}

.ds-prog-detail__desc {
  font-size: 1.05rem; color: var(--navy); font-weight: 500; line-height: 1.8;
  padding: 20px 26px;
  background: rgba(167,140,244,.06);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}

.ds-prog-detail__block { display: flex; flex-direction: column; gap: 16px; }
.ds-prog-detail__block-title {
  display: inline-flex; flex-direction: column; gap: 8px;
  font-size: .82rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  background: linear-gradient(90deg, #a78cf4 0%, #100532 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ds-prog-detail__block-title::before {
  content: ''; display: block; width: 48px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent 0%, #a78cf4 35%, #100532 75%, transparent 100%);
}

.ds-prog-detail__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.ds-prog-detail__list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 1rem; color: var(--gray-600); line-height: 1.65;
}
.ds-prog-detail__list li::before {
  content: '✓'; flex-shrink: 0;
  width: 22px; height: 22px; margin-top: 2px;
  background: rgba(167,140,244,.12); color: var(--gold-dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 900; line-height: 22px; text-align: center;
}

/* Panneau inline mobile */
.ds-prog-inline-detail { display: none; }

@media (max-width: 1100px) {
  .ds-prog-layout { grid-template-columns: 1fr 1.3fr; }
}
@media (max-width: 900px) {
  .ds-prog-layout { grid-template-columns: 1fr; }
  .ds-prog-detail { display: none; }
  .ds-prog-detail__title { font-size: 1.5rem; }
  .ds-prog-item__arrow { transition: transform .25s ease, background .2s, border-color .2s, color .2s; }
  .ds-prog-item.active .ds-prog-item__arrow { transform: rotate(90deg); }
  .ds-prog-inline-detail {
    display: none; flex-direction: column; gap: 24px;
    background: var(--white);
    border: 1px solid rgba(167,140,244,.22);
    border-radius: var(--radius-lg);
    padding: 28px 24px; margin-top: 4px;
    box-shadow: 0 0 28px rgba(167,140,244,.10);
  }
  .ds-prog-inline-detail.active {
    display: flex; animation: ds-fadeIn .3s ease;
  }
}
@media (max-width: 640px) {
  .ds-section-prog { padding: 64px 0; }
  .ds-prog-item { padding: 18px 16px; gap: 14px; }
  .ds-prog-item__num { width: 54px; height: 54px; font-size: 1.25rem; }
  .ds-prog-item__title { font-size: .92rem; }
  .ds-prog-item__arrow { width: 36px; height: 36px; font-size: .85rem; }
  .ds-prog-inline-detail { padding: 20px 16px; gap: 20px; }
  .ds-prog-detail__num { width: 64px; height: 64px; font-size: 1.6rem; }
  .ds-prog-detail__title { font-size: 1.3rem; }
  .ds-prog-detail__desc { font-size: .95rem; padding: 16px 18px; }
  .ds-prog-detail__list li { font-size: .9rem; }
}

/* Bonus section */
@keyframes ds-bonus-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes ds-bonus-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .6; transform: scale(1.3); }
}

.ds-bonus-section {
  margin-top: 72px; padding-top: 56px;
  border-top: 1px solid var(--gray-100);
}
.ds-bonus-header { text-align: center; margin-bottom: 40px; }
.ds-bonus-title {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 900; color: var(--navy); line-height: 1.2; margin-bottom: 10px;
}
.ds-bonus-sub {
  font-size: .95rem; color: var(--gray-600); line-height: 1.65; white-space: nowrap;
}

.ds-bonus-track-wrap {
  overflow: hidden; padding: 14px 0; margin: 0 -24px; margin-bottom: 24px;
  -webkit-mask: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
          mask: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.ds-bonus-track {
  display: flex; gap: 20px; width: max-content;
  animation: ds-bonus-scroll 22s linear infinite;
}
.ds-bonus-track:hover { animation-play-state: paused; }

.ds-bonus-card {
  background: var(--white);
  border: 1.5px solid rgba(167,140,244,.18);
  border-radius: 16px; padding: 24px 22px;
  width: 340px; flex-shrink: 0;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 2px 16px rgba(16,5,50,.06);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.ds-bonus-card:hover {
  border-color: #a78cf4;
  box-shadow:
    0 0 0 2px #a78cf4,
    0 0 16px rgba(167,140,244,.55),
    0 0 40px rgba(167,140,244,.30),
    0 6px 24px rgba(16,5,50,.10);
  transform: translateY(-3px);
}
.ds-bonus-card__top {
  display: flex; align-items: center; gap: 10px; margin-bottom: 4px;
}
.ds-bonus-card__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, #0a021f 0%, #2a0e7a 50%, #5b2abf 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 14px rgba(167,140,244,.25);
}
.ds-bonus-card__num {
  font-family: 'League Spartan', sans-serif;
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold-dark); flex: 1;
}
.ds-bonus-card__val {
  font-family: 'League Spartan', sans-serif;
  font-size: .8rem; font-weight: 800; color: #16a34a;
  background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.25);
  padding: 3px 10px; border-radius: 100px; white-space: nowrap;
}
.ds-bonus-card__title {
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem; font-weight: 800; color: var(--navy); line-height: 1.3;
}
.ds-bonus-card__desc { font-size: .86rem; color: var(--gray-600); line-height: 1.65; flex: 1; }

.ds-bonus-total {
  text-align: center; font-size: .88rem; color: var(--gray-600);
  padding: 14px 20px;
  background: rgba(167,140,244,.05);
  border: 1px solid rgba(167,140,244,.15);
  border-radius: 10px;
}
.ds-bonus-total strong { color: var(--navy); font-weight: 700; }

@media (max-width: 640px) {
  .ds-bonus-section { margin-top: 48px; padding-top: 40px; }
  .ds-bonus-sub { white-space: normal; font-size: .9rem; }
}

/* ============================================================
   SECTION 05 — TARIF & BONUS
   ============================================================ */
@keyframes ds-tb-glow {
  0%,100% { box-shadow: 0 4px 20px rgba(167,140,244,.5); }
  50%     { box-shadow: 0 4px 44px rgba(167,140,244,.9), 0 0 70px rgba(167,140,244,.2); }
}

.ds-section-tb * { box-sizing: border-box; }
.ds-section-tb a { text-decoration: none; color: inherit; }

.ds-section-tb {
  background: linear-gradient(135deg, #100532 0%, #1e0a5e 55%, #28126e 100%);
  padding: 100px 0;
  position: relative; overflow: hidden;
  font-family: 'Inter', sans-serif; color: var(--white);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.ds-section-tb::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(167,140,244,.15) 1.5px, transparent 1.5px);
  background-size: 28px 28px; pointer-events: none;
}

.ds-tb-scanlines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0,0,0,.03) 3px, rgba(0,0,0,.03) 4px
  );
}

.ds-tb-container {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
}

.ds-tb-header { text-align: center; margin-bottom: 64px; }
.ds-tb-label {
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: 'League Spartan', sans-serif;
  font-size: .95rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  background: linear-gradient(90deg, #f1f1f1 0%, #a78cf4 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; margin-bottom: 20px;
}
.ds-tb-label::before {
  content: ''; display: block; width: 80px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, transparent 0%, #f1f1f1 30%, #a78cf4 75%, transparent 100%);
}
.ds-tb-title {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900; line-height: 1.1; color: var(--white); margin-bottom: 14px;
}
.ds-tb-title em {
  display: inline-block; font-style: normal;
  background: linear-gradient(120deg, #c4aaff 0%, #a78cf4 55%, #8b6de8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ds-tb-subtitle { font-size: 1rem; color: rgba(255,255,255,.6); line-height: 1.7; }

.ds-tb-grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 48px; align-items: start;
}

.ds-tb-left { display: flex; flex-direction: column; gap: 36px; }

.ds-tb-includes {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(167,140,244,.2);
  border-radius: var(--radius-lg); padding: 32px;
}
.ds-tb-includes__title {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.1rem; font-weight: 800; color: var(--white);
  margin-bottom: 20px; letter-spacing: .02em;
}
.ds-tb-checklist {
  display: flex; flex-direction: column; gap: 14px;
  list-style: none; margin: 0; padding: 0;
}
.ds-tb-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .95rem; color: rgba(255,255,255,.8); line-height: 1.5;
}
.ds-tb-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 900; color: var(--white); margin-top: 1px;
  box-shadow: 0 0 10px rgba(74,222,128,.35);
}
.ds-tb-checklist li strong { color: var(--white); font-weight: 700; }

.ds-tb-bonus-sep {
  display: flex; align-items: center; gap: 14px;
  font-family: 'League Spartan', sans-serif;
  font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(167,140,244,.7);
}
.ds-tb-bonus-sep::before,
.ds-tb-bonus-sep::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,140,244,.3), transparent);
}

.ds-tb-bonus-list { display: flex; flex-direction: column; gap: 10px; }
.ds-tb-bonus-card {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(167,140,244,.15);
  border-radius: var(--radius); padding: 14px 16px;
  transition: border-color .2s, background .2s;
}
.ds-tb-bonus-card:hover {
  border-color: rgba(167,140,244,.35);
  background: rgba(167,140,244,.07);
}

.ds-tb-bonus-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: linear-gradient(135deg, #0a021f 0%, #2a0e7a 50%, #5b2abf 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 14px rgba(167,140,244,.25), inset 0 1px 0 rgba(255,255,255,.1);
}
.ds-tb-bonus-body { flex: 1; min-width: 0; }
.ds-tb-bonus-num {
  font-family: 'League Spartan', sans-serif;
  font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(167,140,244,.55); margin-bottom: 2px;
}
.ds-tb-bonus-title { font-weight: 700; font-size: .9rem; color: var(--white); line-height: 1.3; margin-bottom: 2px; }
.ds-tb-bonus-sub { font-size: .76rem; color: rgba(255,255,255,.4); line-height: 1.4; }
.ds-tb-bonus-value {
  flex-shrink: 0;
  font-family: 'League Spartan', sans-serif;
  font-size: .78rem; font-weight: 800; color: #4ade80;
  background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.2);
  padding: 3px 10px; border-radius: 100px; white-space: nowrap;
}

.ds-tb-bonus-total {
  display: flex; align-items: center; justify-content: flex-end; gap: 10px;
  font-size: .85rem; color: rgba(255,255,255,.5); padding-top: 4px;
}
.ds-tb-bonus-total strong { color: #4ade80; font-size: .95rem; font-weight: 700; }

.ds-tb-right { position: sticky; top: 32px; }

.ds-tb-price-wrap {
  padding: 2px;
  background: linear-gradient(135deg, #a78cf4 0%, #c4aaff 50%, #8b6de8 100%);
  border-radius: calc(var(--radius-lg) + 2px);
  box-shadow:
    0 0 0 1px rgba(167,140,244,.2),
    0 0 60px rgba(167,140,244,.25),
    0 32px 80px rgba(16,5,50,.5);
}
.ds-tb-price-card {
  background: linear-gradient(160deg, #0f0328 0%, #180850 100%);
  border-radius: var(--radius-lg); padding: 40px 36px;
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; text-align: center;
}

.ds-tb-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(167,140,244,.15); border: 1px solid rgba(167,140,244,.35);
  color: #c4aaff; padding: 7px 18px; border-radius: 12px;
  font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  text-align: center; line-height: 1.5;
}

.ds-tb-price-old {
  font-size: 1.3rem; font-weight: 700; color: rgba(255,255,255,.35);
  text-decoration: line-through; text-decoration-color: #ef4444;
  text-decoration-thickness: 2px;
}
.ds-tb-price-main {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(3rem, 8vw, 4rem); font-weight: 900; line-height: 1;
  background: linear-gradient(120deg, #d4bcff 0%, #a78cf4 45%, #c4aaff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(167,140,244,.5));
}
.ds-tb-price-note { font-size: .84rem; color: rgba(255,255,255,.45); margin-top: -18px; }

.ds-tb-saving {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(74,222,128,.1); border: 1px solid rgba(74,222,128,.25);
  color: #4ade80; padding: 9px 20px; border-radius: 100px;
  font-size: .85rem; font-weight: 700;
}

.ds-tb-divider { width: 100%; height: 1px; background: rgba(167,140,244,.15); }

.ds-tb-card-includes {
  list-style: none; margin: 0; padding: 0; width: 100%;
  display: flex; flex-direction: column; gap: 10px; text-align: left;
}
.ds-tb-card-includes li {
  display: flex; align-items: center; justify-content: flex-start !important; gap: 10px;
  font-size: .88rem; color: rgba(255,255,255,.7);
}
.ds-tb-card-includes li span { flex: 2; text-align: left; }
.ds-tb-card-includes li::before {
  content: '✓'; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: rgba(74,222,128,.15); border: 1px solid rgba(74,222,128,.3);
  color: #4ade80; font-size: .6rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}

.ds-tb-promo-hint {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  background: rgba(255, 200, 80, .08);
  border: 1px solid rgba(255, 200, 80, .35);
  border-radius: 8px;
  padding: 8px 12px;
  color: rgba(255,255,255,.7);
  text-align: right;
}
.ds-tb-promo-hint svg { color: #ffd866; flex-shrink: 0; }
.ds-tb-promo-hint__body { display: flex; flex-direction: column; gap: 2px; }
.ds-tb-promo-hint__line { font-size: .78rem; }
.ds-tb-promo-hint__line strong { color: #ffd866; letter-spacing: .04em; }
.ds-tb-promo-hint__price { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.85); }
.ds-tb-promo-hint__price s { color: rgba(255,255,255,.3); font-weight: 400; }
.ds-tb-promo-hint__price strong { color: #4ade80; }

.ds-tb-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 700;
  padding: 18px 32px; background: var(--gold); color: var(--navy);
  border-radius: 100px; border: none; cursor: pointer;
  animation: ds-tb-glow 2.8s ease-in-out infinite;
  transition: background .2s, box-shadow .2s, transform .2s;
  text-decoration: none;
}
.ds-tb-btn:hover {
  animation: none; background: var(--gold-dark);
  box-shadow: 0 6px 52px rgba(167,140,244,.95); transform: translateY(-2px);
}

.ds-tb-no-payment { font-size: .8rem; color: rgba(255,255,255,.35); line-height: 1.6; margin-top: -10px; }

.ds-tb-urgency {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .8rem; font-weight: 600; color: rgba(167,140,244,.7);
}

.ds-tb-guarantee {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(74,222,128,.06); border: 1px solid rgba(74,222,128,.2);
  border-radius: var(--radius); padding: 14px 16px;
  text-align: left; width: 100%;
}
.ds-tb-guarantee__icon { flex-shrink: 0; margin-top: 1px; color: #4ade80; }
.ds-tb-guarantee__text { font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.55; }
.ds-tb-guarantee__text strong {
  display: block; color: #4ade80; font-weight: 700;
  margin-bottom: 2px; font-size: .86rem;
}

@media (max-width: 960px) {
  .ds-tb-grid { grid-template-columns: 1fr; gap: 40px; }
  .ds-tb-right { position: static; }
}
@media (max-width: 768px) {
  .ds-tb-title br { display: none; }
}
@media (max-width: 640px) {
  .ds-section-tb   { padding: 56px 0; }
  .ds-tb-container { padding: 0 16px; }
  .ds-tb-header    { margin-bottom: 40px; }
  .ds-tb-title     { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .ds-tb-grid      { gap: 28px; }
  .ds-tb-includes  { padding: 20px 16px; }
  .ds-tb-bonus-card { padding: 12px 12px; gap: 10px; }
  .ds-tb-bonus-icon { width: 36px; height: 36px; }
  .ds-tb-price-card { padding: 24px 16px; gap: 12px; }
  .ds-tb-badge     { font-size: .72rem; padding: 6px 14px; }
  .ds-tb-saving    { font-size: .78rem; padding: 8px 14px; flex-wrap: wrap; justify-content: center; }
  .ds-tb-btn       { font-size: .95rem; padding: 16px 20px; }
  .ds-tb-card-includes li { font-size: .82rem; flex-wrap: wrap; gap: 4px; }
  .ds-tb-card-includes,
  .ds-tb-card-includes li,
  .ds-tb-card-includes span { text-align: left !important; }
}

/* ============================================================
   SECTION 06 — FORMATEUR
   ============================================================ */
@keyframes ds-fm-fadein {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ds-section-formateur * { box-sizing: border-box; }
.ds-section-formateur {
  padding: 120px 0 0;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  overflow: hidden;
}
.ds-fm-container { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

.ds-fm-header { text-align: center; margin-bottom: 72px; }
.ds-fm-label {
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  background: linear-gradient(90deg, #a78cf4 0%, #100532 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.ds-fm-label::before {
  content: ''; display: block; width: 80px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, transparent 0%, #a78cf4 40%, #100532 75%, transparent 100%);
}
.ds-fm-title {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900; line-height: 1.1; color: var(--navy);
}
.ds-fm-title em {
  display: inline-block; font-style: normal;
  background: linear-gradient(120deg, #8b6de8 0%, #a78cf4 55%, #c4aaff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: .05em;
}

.ds-fm-wrap {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 72px; align-items: center;
}

.ds-fm-left { display: flex; flex-direction: column; align-items: center; gap: 20px; }

.ds-fm-photo-ring {
  width: 260px; height: 260px; border-radius: 50%; padding: 4px;
  background: linear-gradient(135deg, #a78cf4 0%, #8b6de8 50%, #100532 100%);
  box-shadow: 0 0 50px rgba(167,140,244,.45), 0 24px 64px rgba(16,5,50,.2);
}
.ds-fm-photo-inner {
  width: 100%; height: 100%; border-radius: 50%; overflow: hidden;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
}
.ds-fm-photo-inner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ds-fm-initials {
  font-family: 'League Spartan', sans-serif;
  font-size: 4rem; font-weight: 900; color: var(--gold-dark); line-height: 1;
}

.ds-fm-name {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.5rem; font-weight: 900; color: var(--navy); text-align: center; margin-top: 4px;
}
.ds-fm-role { font-size: .92rem; color: var(--gray-600); text-align: center; line-height: 1.6; }

.ds-fm-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; width: 100%; margin-top: 8px;
}
.ds-fm-stat { flex: 1; text-align: center; padding: 0 16px; position: relative; }
.ds-fm-stat + .ds-fm-stat::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 40px; background: var(--gray-100);
}
.ds-fm-stat__num {
  font-family: 'League Spartan', sans-serif;
  font-size: 2rem; font-weight: 900; line-height: 1; white-space: nowrap;
  background: linear-gradient(120deg, #8b6de8 0%, #a78cf4 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ds-fm-stat__label {
  font-size: .72rem; color: var(--gray-400); font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; margin-top: 5px;
}

.ds-fm-bio-card {
  background: linear-gradient(135deg, #f5f0ff 0%, #ede8ff 100%);
  border: 1px solid rgba(167,140,244,.2);
  border-radius: var(--radius-lg); padding: 44px 48px;
  display: flex; flex-direction: column; gap: 20px;
}
.ds-fm-bio-card p { font-size: 1.05rem; color: var(--navy); line-height: 1.85; margin: 0; }
.ds-fm-bio-card p strong { font-weight: 700; color: var(--navy); }

.ds-fm-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.ds-fm-tag {
  background: rgba(139,109,232,.12); color: var(--gold-dark);
  border: 1px solid rgba(139,109,232,.25);
  padding: 6px 16px; border-radius: 100px;
  font-size: .8rem; font-weight: 700; letter-spacing: .02em;
}

/* Carrousel témoignages formateur */
.ds-fm-testi-section { margin-top: 24px; padding: 32px 0 56px; background: var(--white); }
.ds-fm-carousel { max-width: 780px; margin: 0 auto; padding: 0 24px; text-align: center; }
.ds-fm-carousel__qmark {
  font-family: Georgia, serif; font-size: 3.5rem; line-height: 1;
  color: rgba(167,140,244,.4); display: block; margin-bottom: 8px; user-select: none;
}
.ds-fm-carousel__slides { position: relative; min-height: 200px; }
.ds-fm-slide { display: none; animation: ds-fm-fadein .5s ease; }
.ds-fm-slide.active { display: block; }
.ds-fm-slide__text {
  font-size: 1.1rem; font-style: italic; color: var(--navy); line-height: 1.85; margin: 0 0 24px;
}
.ds-fm-slide__author { font-size: .92rem; font-weight: 700; color: var(--gold-dark); }
.ds-fm-carousel__dots,
.ds-fm-carousel__nav { display: none; }

@media (max-width: 960px) {
  .ds-fm-wrap { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .ds-fm-left { align-items: center; }
  .ds-fm-bio-card { padding: 32px; }
}
@media (max-width: 640px) {
  .ds-section-formateur { padding: 80px 0 0; }
  .ds-fm-photo-ring { width: 200px; height: 200px; }
  .ds-fm-title { font-size: clamp(2rem, 7vw, 2.6rem); }
  .ds-fm-bio-card { padding: 24px 20px; }
  .ds-fm-bio-card p { font-size: .95rem; }
  .ds-fm-stat__num { font-size: 1.6rem; }
}

/* ============================================================
   SECTION 07 — FAQ
   ============================================================ */
.ds-section-faq * { box-sizing: border-box; }
.ds-section-faq {
  padding: 96px 0; background: var(--gray-50);
  font-family: 'Inter', sans-serif; color: var(--navy);
}
.ds-faq-container { max-width: 780px; margin: 0 auto; padding: 0 24px; }

.ds-faq-header { text-align: center; margin-bottom: 56px; }
.ds-faq-label {
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  background: linear-gradient(90deg, #a78cf4 0%, #100532 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; margin-bottom: 20px;
}
.ds-faq-label::before {
  content: ''; display: block; width: 80px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, transparent 0%, #a78cf4 40%, #100532 75%, transparent 100%);
}
.ds-faq-title {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; line-height: 1.1; color: var(--navy); margin-bottom: 12px;
}
.ds-faq-title em {
  display: inline-block; font-style: normal;
  background: linear-gradient(120deg, #c4aaff 0%, #a78cf4 55%, #8b6de8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ds-faq-subtitle { font-size: 1rem; color: var(--gray-600); line-height: 1.7; }

.ds-faq-list { display: flex; flex-direction: column; gap: 10px; }

details.ds-faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-100);
  border-left: 3px solid transparent;
  border-radius: 16px; overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
details.ds-faq-item[open] {
  border-color: rgba(167,140,244,.3);
  border-left-color: #a78cf4;
  box-shadow: 0 4px 24px rgba(167,140,244,.08);
}
details.ds-faq-item summary { list-style: none; }
details.ds-faq-item summary::-webkit-details-marker { display: none; }

summary.ds-faq-item__q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 24px;
  font-size: 1rem; font-weight: 700; color: var(--navy);
  font-family: 'Inter', sans-serif; cursor: pointer; user-select: none; line-height: 1.4;
}
details.ds-faq-item[open] summary.ds-faq-item__q { color: var(--gold-dark); }

.ds-faq-icon {
  width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%;
  background: rgba(167,140,244,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 400; line-height: 1; color: var(--navy);
  transition: background .25s, color .25s, transform .3s;
}
details.ds-faq-item[open] .ds-faq-icon {
  background: #a78cf4; color: var(--white);
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(167,140,244,.5);
}

.ds-faq-item__a {
  padding: 0 28px 26px 24px;
  font-size: .96rem; color: var(--gray-600); line-height: 1.85;
}
.ds-faq-item__a p { margin: 0 0 14px; }
.ds-faq-item__a p:last-child { margin-bottom: 0; }
.ds-faq-item__a strong { color: var(--navy); font-weight: 700; }
.ds-faq-item__a ul {
  margin: 6px 0 14px; padding-left: 0;
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.ds-faq-item__a ul li { display: flex; align-items: flex-start; gap: 10px; }
.ds-faq-item__a ul li::before {
  content: '→'; color: #a78cf4; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

@media (max-width: 640px) {
  .ds-section-faq { padding: 64px 0; }
  summary.ds-faq-item__q { padding: 18px 16px; font-size: .95rem; }
  .ds-faq-item__a { padding: 0 16px 20px; }
}

/* ============================================================
   SECTION 08 — CTA FINAL
   ============================================================ */
@keyframes ds-cta-glow {
  0%,100% { box-shadow: 0 4px 20px rgba(167,140,244,.5); }
  50%     { box-shadow: 0 4px 44px rgba(167,140,244,.9), 0 0 70px rgba(167,140,244,.2); }
}
@keyframes ds-cta-blink {
  0%,100% { opacity: 1; }
  50%     { opacity: 0; }
}

.ds-cta-section * { box-sizing: border-box; }
.ds-cta-section a { text-decoration: none; color: inherit; }

.ds-cta-section {
  background: linear-gradient(135deg, #100532 0%, #1e0a5e 50%, #28126e 100%);
  padding: 110px 24px; text-align: center;
  position: relative; overflow: hidden;
  font-family: 'Inter', sans-serif;
}
.ds-cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(167,140,244,.2) 1.5px, transparent 1.5px);
  background-size: 28px 28px; pointer-events: none;
}

.ds-cta-scanlines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(0,0,0,.04) 3px, rgba(0,0,0,.04) 4px
  );
}
.ds-cta-halo {
  position: absolute; width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(167,140,244,.14) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none;
}

.ds-cta-inner {
  position: relative; z-index: 1; max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; text-align: left;
}
.ds-cta-left { display: flex; flex-direction: column; align-items: flex-start; }

.ds-cta-context {
  font-family: 'League Spartan', sans-serif;
  font-size: .88rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(167,140,244,.7); margin-bottom: 20px;
}
.ds-cta-title {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; line-height: 1.1;
  color: var(--white); margin-bottom: 32px;
}
.ds-cta-title em {
  display: inline-block; font-style: normal;
  background: linear-gradient(120deg, #c4aaff 0%, #a78cf4 55%, #8b6de8 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; padding-right: .04em;
}
.ds-cta-sub { font-size: .88rem; color: rgba(255,255,255,.4); margin-top: 18px; line-height: 1.6; }
.ds-cta-sub b { color: rgba(167,140,244,.75); font-weight: 600; }

.ds-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 700;
  padding: 20px 44px; background: var(--gold); color: var(--navy);
  border-radius: 100px; border: none; cursor: pointer;
  animation: ds-cta-glow 2.8s ease-in-out infinite;
  transition: background .2s, box-shadow .2s, transform .2s;
  text-decoration: none;
}
.ds-cta-btn:hover {
  animation: none; background: var(--gold-dark);
  box-shadow: 0 6px 52px rgba(167,140,244,.95); transform: translateY(-2px);
}

.ds-cta-right { width: 100%; }
.ds-cta-terminal {
  width: 100%; background: #05010d;
  border: 1px solid rgba(167,140,244,.25); border-radius: 14px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(167,140,244,.08), 0 0 40px rgba(167,140,244,.22), 0 24px 64px rgba(16,5,50,.7);
  text-align: left;
}
.ds-cta-term-bar {
  background: rgba(167,140,244,.05); border-bottom: 1px solid rgba(167,140,244,.12);
  padding: 10px 14px; display: flex; align-items: center; gap: 7px;
}
.ds-cta-tdot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.ds-cta-tdot--r { background: #ff5f57; }
.ds-cta-tdot--y { background: #febc2e; }
.ds-cta-tdot--g { background: #28c840; }
.ds-cta-term-title {
  flex: 1; text-align: center;
  font-family: 'Courier New', monospace; font-size: .68rem;
  color: rgba(167,140,244,.4); letter-spacing: .06em;
}
.ds-cta-term-body {
  padding: 16px 20px;
  font-family: 'Courier New', 'Consolas', monospace;
  font-size: .8rem; line-height: 2;
}
.ds-cta-tl { display: flex; align-items: baseline; }
.ds-cta-tl__p    { color: #a78cf4; margin-right: 8px; font-weight: 700; flex-shrink: 0; text-shadow: 0 0 10px rgba(167,140,244,.8); }
.ds-cta-tl__c    { color: #f1f1f1; }
.ds-cta-tl__ok   { color: #4ade80; text-shadow: 0 0 8px rgba(74,222,128,.4); }
.ds-cta-tl__info { color: rgba(167,140,244,.8); }
.ds-cta-tl__warn { color: #fbbf24; text-shadow: 0 0 8px rgba(251,191,36,.4); }
.ds-cta-tl--blank { height: .4em; }
.ds-cta-cursor {
  display: inline-block; width: 8px; height: 14px;
  background: #a78cf4; vertical-align: middle; margin-left: 2px;
  animation: ds-cta-blink 1.1s step-end infinite;
  box-shadow: 0 0 10px rgba(167,140,244,.9);
}

@media (max-width: 900px) {
  .ds-cta-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .ds-cta-left { align-items: center; }
}
@media (max-width: 640px) {
  .ds-cta-section { padding: 80px 24px; }
  .ds-cta-btn { width: 100%; justify-content: center; padding: 18px 32px; }
}

/* ============================================================
   SECTION 09 — FOOTER
   ============================================================ */
.ds-footer * { box-sizing: border-box; }
.ds-footer a { text-decoration: none; color: inherit; }

.ds-footer {
  background: #f1f1f1; padding: 64px 0 0;
  font-family: 'Inter', sans-serif; color: #100532;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.ds-footer .ds-ft-container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.ds-ft-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px; padding-bottom: 56px;
}

.ds-ft-brand { display: flex; flex-direction: column; gap: 16px; }
.ds-ft-logo-wrap { display: flex; align-items: center; gap: 12px; }
.ds-ft-logo-img { width: 54px; height: 54px; object-fit: contain; }
.ds-ft-brand-name {
  font-family: 'League Spartan', sans-serif; font-size: 1.35rem; font-weight: 900;
  background: linear-gradient(120deg, #100532 0%, #8b6de8 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.ds-ft-tagline { font-size: .88rem; color: #55506a; line-height: 1.7; max-width: 280px; }

.ds-ft-social { display: flex; gap: 10px; margin-top: 4px; }
.ds-ft-social-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: #ffffff; border: 1.5px solid rgba(16,5,50,.1);
  display: flex; align-items: center; justify-content: center; color: #55506a;
  transition: border-color .2s, background .2s, color .2s, box-shadow .2s;
}
.ds-ft-social-link:hover {
  border-color: #a78cf4; background: rgba(167,140,244,.08); color: #8b6de8;
  box-shadow: 0 0 12px rgba(167,140,244,.2);
}

.ds-ft-brand-card {
  display: flex; align-items: center; gap: 12px;
  background: #ffffff; border: 1.5px solid rgba(16,5,50,.08);
  border-radius: 12px; padding: 12px 14px; margin-bottom: 4px;
}
.ds-ft-bc-img { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.ds-ft-bc-name {
  font-family: 'League Spartan', sans-serif; font-size: .95rem; font-weight: 900;
  background: linear-gradient(120deg, #100532 0%, #8b6de8 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.ds-ft-bc-sub { font-size: .72rem; color: #9490a8; margin-top: 2px; }

.ds-ft-col { display: flex; flex-direction: column; gap: 16px; }
.ds-ft-col-title {
  font-family: 'League Spartan', sans-serif;
  font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: #100532; display: flex; flex-direction: column; gap: 8px;
}
.ds-ft-col-title::before {
  content: ''; display: block; width: 32px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, #a78cf4 0%, #100532 100%);
}

.ds-ft-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.ds-ft-links a {
  font-size: .88rem; color: #55506a;
  transition: color .2s; display: inline-flex; align-items: center; gap: 6px;
}
.ds-ft-links a:hover { color: #8b6de8; }
.ds-ft-links a::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: #9490a8; flex-shrink: 0; transition: background .2s;
}
.ds-ft-links a:hover::before { background: #a78cf4; }

.ds-ft-contact { display: flex; flex-direction: column; gap: 12px; }
.ds-ft-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .87rem; color: #55506a; transition: color .2s;
}
.ds-ft-contact-item:hover { color: #8b6de8; }
.ds-ft-contact-item svg { flex-shrink: 0; color: #9490a8; }
.ds-ft-contact-item:hover svg { color: #a78cf4; }

.ds-ft-cta-col { display: flex; flex-direction: column; gap: 16px; }
.ds-ft-cta-info {
  background: #ffffff; border: 1.5px solid rgba(16,5,50,.08);
  border-radius: 14px; padding: 18px 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.ds-ft-cta-info-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #9490a8;
}
.ds-ft-cta-info-name {
  font-family: 'League Spartan', sans-serif;
  font-size: 1rem; font-weight: 800; color: #100532; line-height: 1.3;
}
.ds-ft-cta-info-date {
  font-size: .82rem; color: #55506a; display: flex; align-items: center; gap: 6px;
}
.ds-ft-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 700;
  padding: 15px 24px;
  background: linear-gradient(135deg, #8b6de8 0%, #a78cf4 100%);
  color: #ffffff; border-radius: 100px; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(139,109,232,.35);
  transition: box-shadow .2s, transform .2s;
}
.ds-ft-cta-btn:hover {
  box-shadow: 0 6px 32px rgba(139,109,232,.6); transform: translateY(-2px);
}
.ds-ft-cta-note { font-size: .78rem; color: #9490a8; text-align: center; line-height: 1.5; }

.ds-ft-divider { border: none; border-top: 1px solid rgba(16,5,50,.1); margin: 0; }
.ds-ft-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 12px; padding: 20px 0; font-size: .8rem; color: #9490a8;
}
.ds-ft-bottom-links { display: flex; gap: 20px; }
.ds-ft-bottom-links a { color: #9490a8; transition: color .2s; }
.ds-ft-bottom-links a:hover { color: #8b6de8; }

@media (max-width: 960px) {
  .ds-ft-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ds-ft-cta-col { grid-column: 1 / -1; max-width: 420px; }
}
@media (max-width: 640px) {
  .ds-footer        { padding: 40px 0 0; }
  .ds-ft-container  { padding: 0 16px; }
  .ds-ft-grid       { grid-template-columns: 1fr; gap: 28px; padding-bottom: 36px; }
  .ds-ft-brand      { gap: 14px; }
  .ds-ft-tagline    { display: none; }
  .ds-ft-brand-card { display: none; }
  .ds-ft-cta-col    { display: flex; }
  .ds-ft-bottom     { flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 18px 0; }
  .ds-ft-bottom-links { gap: 16px; flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   COUNTDOWN TIMER
   ============================================================ */
.ds-countdown-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 32px;
}
.ds-countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(167,140,244,.1);
  border: 1px solid rgba(167,140,244,.25);
  border-radius: 10px;
  padding: 12px 18px;
  min-width: 72px;
}
.ds-countdown-num {
  font-family: 'League Spartan', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.ds-countdown-label {
  font-size: .65rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}
.ds-countdown-sep {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(167,140,244,.5);
  align-self: center;
  margin-bottom: 14px;
}
@media (max-width: 480px) {
  .ds-countdown-wrap  { gap: 8px; }
  .ds-countdown-block { min-width: 54px; padding: 9px 10px; }
  .ds-countdown-num   { font-size: 1.4rem; }
  .ds-countdown-sep   { font-size: 1.2rem; }
  .ds3-urgency-bar__old { display: none; }
}

/* ============================================================
   TROIS PALIERS DE PRIX
   ============================================================ */
.ds-price-tiers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.ds-price-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  transition: border-color .2s;
}
.ds-price-tier--active {
  border-color: rgba(74,222,128,.4);
  background: rgba(74,222,128,.06);
}
.ds-price-tier--upcoming {
  opacity: .65;
}
.ds-price-tier__badge {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(74,222,128,.15);
  color: #4ade80;
  white-space: nowrap;
}
.ds-price-tier--upcoming .ds-price-tier__badge {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.4);
}
.ds-price-tier__name {
  font-weight: 700;
  color: #fff;
  font-size: .92rem;
}
.ds-price-tier__dates {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  margin-top: 2px;
}
.ds-price-tier__price {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
}
.ds-price-tier--active .ds-price-tier__price {
  color: #4ade80;
}
.ds-price-tier__left { display: flex; flex-direction: column; gap: 3px; }
.ds-price-tier__top  { display: flex; align-items: center; gap: 8px; }

.ds-price-paiement {
  margin-top: 10px;
  padding: 10px 14px;
  background: rgba(167,140,244,.08);
  border: 1px solid rgba(167,140,244,.2);
  border-radius: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-align: center;
}
.ds-price-paiement strong { color: #a78cf4; }

@media (max-width: 480px) {
  .ds-price-tier { flex-direction: column; align-items: flex-start; gap: 8px; }
  .ds-price-tier__price { font-size: 1.1rem; }
}

/* ============================================================
   SECTION INSCRIPTION (FORMULAIRE)
   ============================================================ */
.ds-section-inscription {
  padding: 80px 0;
  background: linear-gradient(180deg, #0c0720 0%, #100532 100%);
  position: relative;
}
.ds-insc-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
.ds-insc-header {
  text-align: center;
  margin-bottom: 40px;
}
.ds-insc-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #a78cf4;
  border: 1px solid rgba(167,140,244,.35);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 16px;
}
.ds-insc-title {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 12px;
}
.ds-insc-title em { font-style: normal; color: #a78cf4; }
.ds-insc-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin: 0;
}
.ds-insc-privacy {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  text-align: center;
  margin-top: 16px;
}

.ds-form {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(167,140,244,.2);
  border-radius: 16px;
  padding: 36px 40px;
}
.ds-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ds-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.ds-form-group:last-of-type { margin-bottom: 0; }
.ds-form label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.ds-form input,
.ds-form select,
.ds-form textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 12px 14px;
  color: #fff;
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.ds-form input:focus,
.ds-form select:focus,
.ds-form textarea:focus {
  border-color: rgba(167,140,244,.5);
}
.ds-form input.ds-field-error,
.ds-form select.ds-field-error,
.ds-form textarea.ds-field-error {
  border-color: #ff4d00;
}
.ds-field-tooltip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 7px 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,.15);
  font-size: .82rem;
  color: #222;
  position: relative;
}
.ds-field-tooltip::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 18px;
  border: 7px solid transparent;
  border-top: none;
  border-bottom-color: #e0e0e0;
}
.ds-field-tooltip::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 19px;
  border: 6px solid transparent;
  border-top: none;
  border-bottom-color: #fff;
}
.ds-field-tooltip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #ff4d00;
  color: #fff;
  font-weight: 900;
  font-size: .78rem;
  flex-shrink: 0;
}
.ds-form select option { background: #1e0a5e; color: #fff; }
.ds-form textarea { resize: vertical; min-height: 90px; }
.ds-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  background: linear-gradient(135deg, #a78cf4, #8b6de8);
  color: #fff;
  font-family: 'League Spartan', sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 24px;
  transition: opacity .2s, transform .15s;
}
.ds-form-submit:hover { opacity: .9; transform: translateY(-1px); }
.ds-form-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.ds-form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.ds-form-success__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: #4ade80;
}
.ds-form-success__title {
  font-family: 'League Spartan', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #4ade80;
  margin-bottom: 8px;
}
.ds-form-success__text {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}
@media (max-width: 600px) {
  .ds-form { padding: 24px 20px; }
  .ds-form-row { grid-template-columns: 1fr; }
}
