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

html { scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #0b0c10;
  color: #f3f4f6;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

/* =========================================================
   VARIABLES
========================================================= */
:root {
  --bg: #0b0c10;
  --panel: rgba(10,10,14,.55);
  --muted: #a7abb6;

  --pink: #FF006B;
  --orange: #f89310;
  --green: #0cf60c;

  --border: rgba(255,255,255,.12);
  --border2: rgba(255,255,255,.08);
}

/* =========================================================
   LAYOUT & UTILITIES
========================================================= */
.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

.upper {
  text-transform: uppercase;
}

.titre_exemple {
  color: #ff8a00;
  text-align: center;
  font-size: clamp(2rem, 8vw, 5em) !important; /* Ajout du point-virgule manquant */
}

.appel {
  color: white;
  text-align: center;
  margin-top: 15px;
}

/* Fusion des 2 déclarations .pack_2 */
.pack_2 {
  color: white !important;
  text-align: center;
  font-weight: 900;
  margin: 10px 0 !important;
  background: linear-gradient(100deg, #ff2f92, #ff8a00, #ffd84d) !important;
  border-radius: 10px !important;
}

#objectif-300 {
  background-color: #ff2f92;
}

#estimation {
  background-image: url("assets/img/estimation.png") !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* =========================================================
   HEADER
========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 12, 16, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border2);
}

.header-flex {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: .2px;
}
.logo span { color: var(--pink); }

.main-nav a {
  margin-left: 20px;
  font-weight: 800;
  font-size: 14px;
  color: #f3f4f6;
}

.btn-header {
  padding: 9px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  color: #0b0c10;
  font-weight: 900;
  font-size: 1.5em !important;
}

@media (max-width: 768px) {
  .header-flex {
    min-height: 70px;
    height: auto;
    padding: 10px 0;
  }
  .main-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
  .main-nav a:not(.btn-header) { display: none; }
  .main-nav .btn-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    padding: 8px 14px;
    font-size: 0.95rem !important;
    line-height: 1;
    white-space: nowrap;
  }
}

/* =========================================================
   HERO VIDEO FULL WIDTH
========================================================= */
.hero-video-full {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(1000px 520px at 20% 0%, rgba(255,0,107,.18), transparent 60%),
    radial-gradient(1000px 520px at 80% 0%, rgba(248,147,16,.14), transparent 60%),
    var(--bg);
}

.hero-video-content {
  text-align: center;
  padding: 90px 4% 40px;
}

.eyebrow {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .3px;
}

.hero-video-content h1 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  margin: 12px 0;
}

.lead {
  max-width: 860px;
  margin: 0 auto 20px;
  font-size: 18px;
  color: var(--muted);
}
.lead strong {
  color: #ff8a00 !important;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 14px 20px;
  border-radius: 14px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(90deg, var(--pink), var(--orange));
  color: #0b0c10;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.03);
  color: #f3f4f6;
}

.hero-video-wrapper {
  width: 100%;
  padding: 0 4%;
}

.hero-video-wrapper iframe {
  width: 100%;
  height: 56.25vw;
  max-height: 75vh;
  border: 0;
  display: block;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}

@media (max-width: 900px) {
  .lead { font-size: 16px; }
}

@media (max-width: 768px) {
  .hero-video-content { padding-top: 70px; }
}

/* =========================================================
   STEPS (STAIRS + GROWTH ARROW)
========================================================= */
.steps-full-bg {
  width: 100%;
  min-height: 115vh;
  position: relative;
  padding: clamp(48px, 6vw, 84px) 16px;
  background-image: url("../img/reussite.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #eaf1ff;
  z-index: 0;
}

.steps-full-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(900px 480px at 18% 20%, rgba(0, 190, 255, .14), transparent 60%),
    radial-gradient(900px 480px at 82% 10%, rgba(40, 90, 255, .18), transparent 55%),
    linear-gradient(180deg, #070b18 0%, #050817 100%);
}

.steps-content {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.steps-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.steps-eyebrow {
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
  font-size: .85rem;
  margin: 0 0 10px;
}

.steps-head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.1;
}

.steps-sub {
  margin: 0;
  opacity: .88;
  line-height: 1.6;
}

.stepstairs {
  list-style: none;
  padding: 0;
  margin: 26px 0 14px;
  display: grid;
  gap: 14px;
}

.step {
  --step-bg-1: #0bb8ff;
  --step-bg-2: #1c5cff;
  --step-shadow: rgba(0,0,0,.35);
  width: min(920px, 100%);
}

.step--1 { margin-left: 0; width: min(760px, 100%); }
.step--2 { margin-left: clamp(0px, 4vw, 44px); width: min(820px, 100%); }
.step--3 { margin-left: clamp(0px, 8vw, 88px); width: min(900px, 100%); }

.step-shape {
  position: relative;
  display: grid;
  grid-template-columns: 64px 56px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(135deg, var(--step-bg-1), var(--step-bg-2));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 40px var(--step-shadow);
  border-radius: 18px;
  clip-path: polygon(0% 0%, 94% 0%, 100% 50%, 94% 100%, 0% 100%, 6% 50%);
}

.step--1 .step-shape { --step-bg-1: #1fe7d2; --step-bg-2: #0b8bff; }
.step--2 .step-shape { --step-bg-1: #0bb8ff; --step-bg-2: #1c5cff; }
.step--3 .step-shape { --step-bg-1: #1c5cff; --step-bg-2: #0a2bd6; }

.step-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.4rem;
  color: #081027;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(7, 11, 24, .24);
  border: 1px solid rgba(255,255,255,.14);
}

.step-icon svg {
  width: 26px;
  height: 26px;
  color: rgba(255,255,255,.92);
}

.step-body h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 800;
}

.step-body p {
  margin: 0;
  opacity: .92;
  line-height: 1.55;
  max-width: 66ch;
}

.steps-arrow {
  position: absolute;
  right: 0;
  top: 140px;
  width: min(320px, 36vw);
  height: min(320px, 36vw);
  opacity: .42;
  filter: drop-shadow(0 26px 48px rgba(0,0,0,.35));
  background: linear-gradient(135deg, rgba(32, 220, 255, .55), rgba(35, 95, 255, .55));
  clip-path: polygon(56% 0%, 100% 44%, 78% 44%, 78% 100%, 34% 100%, 34% 64%, 0% 64%, 0% 44%, 34% 44%);
}

.steps-note {
  margin: 14px 0 0;
  opacity: .80;
  font-size: .95rem;
  line-height: 1.5;
  max-width: 90ch;
}

@media (max-width: 820px) {
  .steps-arrow { display: none; }
  .step--1, .step--2, .step--3 { margin-left: 0; width: 100%; }
  .step-shape {
    clip-path: none;
    border-radius: 16px;
    grid-template-columns: 52px 52px 1fr;
    padding: 16px;
  }
}

@media (max-width: 520px) {
  .step-shape { grid-template-columns: 1fr; gap: 10px; }
  .step-badge, .step-icon { width: 46px; height: 46px; border-radius: 14px; }
}

/* =========================================================
   BOOST - CARTES PREMIUM
========================================================= */
.boost-steps {
  padding: clamp(44px, 6vw, 90px) 16px;
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(255, 0, 107, .14), transparent 60%),
    radial-gradient(900px 520px at 82% 18%, rgba(0, 200, 255, .14), transparent 60%),
    linear-gradient(180deg, #000 0%, #05040b 100%);
  color: #f3f6ff;
}

.boost-steps__wrap {
  margin: 0 5vw;
}

.boost-steps__head {
  text-align: center;
  margin-bottom: 34px;
}

.boost-steps__kicker {
  margin: 0 0 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .82rem;
  opacity: .75;
}

.boost-steps__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: .02em;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.boost-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.boost-card {
  position: relative;
  padding: 22px 20px 20px;
  border-radius: 18px;
  background: rgba(20, 20, 24, .75);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.boost-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 80px rgba(255, 47, 146, .25), 0 0 0 1px rgba(255, 216, 77, .25);
  border-color: rgba(255,255,255,.14);
}

.boost-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, #ff2f92, #ff8a00, #ffd84d, #b3005e);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .85;
  z-index: -1;
}

.boost-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -130px;
  top: -130px;
  filter: blur(2px);
  opacity: .9;
  z-index: -1;
}

/* Suppression de l'accolade en trop qui était ici ! */

.boost-card--1::after { background: radial-gradient(circle at 30% 30%, rgba(255, 216, 77, .35), transparent 60%); }
.boost-card--2::after { background: radial-gradient(circle at 30% 30%, rgba(255, 138, 0, .35), transparent 60%); }
.boost-card--3::after { background: radial-gradient(circle at 30% 30%, rgba(255, 47, 146, .35), transparent 60%); }

.boost-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.boost-card__badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-weight: 900;
  font-size: 1.15rem;
  background: linear-gradient(135deg, #ffd84d, #ff8a00, #ff2f92);
  color: #14000a;
  box-shadow: 0 12px 30px rgba(255, 47, 146, .45), 0 0 0 1px rgba(255,255,255,.15);
}

.boost-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 47, 146, .18), rgba(255, 138, 0, .18));
  border: 1px solid rgba(255, 216, 77, .35);
}

.boost-card__icon svg {
  width: 24px;
  height: 24px;
  color: #ffd84d;
}

.boost-card__title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .01em;
}

.boost-card__text {
  margin: 0;
  opacity: .88;
  line-height: 1.6;
  font-size: .97rem;
}

@media (max-width: 980px) {
  .boost-steps__grid { grid-template-columns: 1fr; }
  .boost-card { padding: 18px 16px; }
}

/* =========================================================
   ESTIMATION
========================================================= */
.estimate-section {
  width: 100%;
  padding: 90px 0;
  background: #0f1117;
  position: relative;
  overflow: hidden;
}

.estimate-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(255,0,107,.14), transparent 60%),
    radial-gradient(900px 420px at 80% 40%, rgba(248,147,16,.12), transparent 60%);
  z-index: 0;
}

.estimate-inner {
  width: 100%;
  margin: 0 auto;
  padding-inline: 4%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.estimate-head {
  text-align: center;
}

.estimate-head h2 {
  font-size: 32px;
  margin-bottom: 10px;
  line-height: 1.1;
}

.estimate-head p {
  max-width: 880px;
  margin: 0 auto;
  color: rgba(243,244,246,.82);
}

.estimate-card {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  padding: 18px;
}

.estimate-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
}

.estimate-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
}

.estimate-table thead tr {
  background: linear-gradient(90deg, var(--pink), var(--orange));
}

.estimate-table thead th {
  background: transparent !important;
  color: white;
  text-align: center;
  padding: 14px;
  font-weight: 900;
  letter-spacing: .3px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  white-space: nowrap;
}

.estimate-table tbody td {
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  color: rgba(243,244,246,.90);
  background: rgba(255,255,255,.04);
  vertical-align: middle;
  text-align: center;
}

.estimate-table tbody tr:nth-child(even) td {
  background: rgba(255,255,255,.02);
}

.estimate-table td.num {
  text-align: center;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.estimate-table td.strong {
  font-weight: 900;
  color: #fff;
}

.estimate-table td.muted {
  color: rgba(243,244,246,.55);
  text-align: center;
}

.estimate-table tbody td.pack {
  text-align: center !important;
  font-weight: 900;
  color: white;
  background: linear-gradient(90deg, var(--pink), var(--orange)) !important;
  border-radius: 12px;
  padding: 8px 12px !important;
}

.estimate-table tbody tr.row-highlight td {
  background: transparent !important;
  text-align: center;
}

.estimate-table tbody tr.row-highlight.month-7 {
  background: var(--green);
  color: white;
  font-weight: 900;
}
.estimate-table tbody tr.row-highlight.month-7 td { color: white !important; }

.estimate-table tbody tr.row-highlight.month-12 {
  background: linear-gradient(90deg, var(--pink), var(--orange));
  color: white;
  font-weight: 900;
  text-align: center;
}
.estimate-table tbody tr.row-highlight.month-12 td {
  color: white !important;
  text-align: center;
}

.estimate-table tbody tr.row-highlight td:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.estimate-table tbody tr.row-highlight td:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.estimate-note {
  margin: 12px 6px 0;
  color: rgba(243,244,246,.75);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 768px) {
  .estimate-section { padding: 70px 0; }
  .estimate-head h2 { font-size: 28px; }
}

/* =========================================================
   FAQ (ACCORDION)
========================================================= */
.faq-section {
  width: 100%;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  background: #0b0c10;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 420px at 20% 30%, rgba(255,0,107,.14), transparent 60%),
    radial-gradient(900px 420px at 80% 60%, rgba(248,147,16,.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(0,0,0,0) 55%);
}

.faq-inner {
  width: min(1100px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-head {
  text-align: center;
  margin-bottom: 18px;
}

.faq-head h2 {
  font-size: 32px;
  margin-bottom: 10px;
  line-height: 1.1;
}

.faq-head p {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(243,244,246,.82);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(10,10,14,.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-weight: 900;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-q {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-pill {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #0b0c10;
  flex: 0 0 auto;
}

.faq-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  flex: 0 0 auto;
}

.faq-icon svg {
  width: 18px;
  height: 18px;
  color: rgba(243,244,246,.92);
  transition: transform .18s ease;
}

.faq-item[open] .faq-icon svg { transform: rotate(45deg); }

.faq-a {
  padding: 0 16px 16px;
  color: rgba(243,244,246,.86);
  border-top: 1px solid rgba(255,255,255,.08);
}

.faq-a h2,
.faq-a h3 {
  margin: 15px 0;
}

.faq-a p { margin-top: 12px; }

/* Fusion des déclarations pour les listes dans la FAQ */
.faq-a ul, .faq-a ol {
  margin: 10px 0 0 20px;
  color: rgba(243,244,246,.82);
}

.faq-note {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  color: rgba(243,244,246,.70);
}

@media (max-width: 768px) {
  .faq-section { padding: 70px 0; }
  .faq-head h2 { font-size: 28px; }
}

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonials-section {
  width: 100%;
  margin: 0;
  padding: 90px 0;
  background: #0b0c10;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 20% 20%, rgba(255,0,107,.14), transparent 60%),
    radial-gradient(900px 420px at 80% 40%, rgba(248,147,16,.12), transparent 60%);
  z-index: 0;
}

.testimonials-inner {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.testimonials-head {
  text-align: center;
  margin-bottom: 36px;
  padding: 0 4%;
  box-sizing: border-box;
}

.testimonials-head h2 {
  font-size: 32px;
  margin-bottom: 10px;
  line-height: 1.1;
}

.testimonials-head p {
  max-width: 860px;
  margin: 0 auto;
  color: rgba(243,244,246,.82);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  padding: 0 4%;
  box-sizing: border-box;
}

.testimonial-card {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 180px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 90px rgba(0,0,0,.6);
}

.testimonial-media {
  height: 100%;
  background: #111;
}

.testimonial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 15vw;
  max-width: 200px;
  width: 15vw;
  margin-bottom: 0;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  color: #0b0c10;
}

.testimonial-link {
  width: fit-content;
  font-weight: 900;
  font-size: 14px;
  color: var(--orange);
  transition: opacity .15s ease;
  margin-top: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  box-shadow: 0 10px 28px rgba(255, 0, 107, .35);
  color: #0b0c10;
}

.testimonial-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(248,147,16,.45);
  opacity: .95;
}

.testimonial-author {
  margin-top: auto;
  font-size: 13px;
  color: var(--muted);
}

.testimonial-name {
  margin: 0;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

.economie_mois {
  color: #ff8a00;
  font-size: 1.2em;
}

@media (max-width: 980px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .testimonial-card { grid-template-columns: 1fr; }
  .testimonial-media { height: 160px; }
}

/* =========================================================
   HISTOIRE RENTABLE - FORMATION
========================================================= */
.histoire-rentable-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 1fr);
  gap: 22px;
  align-items: start;
}

.histoire-rentable-chapters-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.histoire-rentable-media {
  margin: 0;
  position: sticky;
  top: 90px;
}

.histoire-rentable-media img {
  display: block;
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  object-fit: cover;
}

.histoire-chapter {
  list-style: none;
  border-radius: 12px;
  background: rgba(20, 20, 24, .75);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 25px rgba(0,0,0,.35);
  overflow: hidden;
  transition: all .18s ease;
}

.histoire-chapter[open] {
  background: rgba(20, 20, 24, .95);
  border-color: rgba(255,255,255,.15);
}

.histoire-chapter__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
  transition: background .18s ease;
}

.histoire-chapter:hover .histoire-chapter__header {
  background: rgba(255,255,255,.05);
}

.histoire-chapter__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FF006B, #FF1493);
  color: #0b0c10;
  font-weight: 900;
  font-size: 12px;
  flex-shrink: 0;
}

.histoire-chapter__title {
  font-weight: 700;
  font-size: 13px;
  color: #f3f4f6;
  margin: 0;
}

.histoire-chapter__subtitle {
  font-size: 11px;
  color: var(--muted);
  margin: 0;
}

.histoire-chapter__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: auto;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform .18s ease, color .18s ease;
}

.histoire-chapter[open] .histoire-chapter__toggle {
  transform: rotate(45deg);
  color: var(--pink);
}

.histoire-chapter__toggle svg {
  width: 100%;
  height: 100%;
  stroke-width: 2.5;
}

.histoire-chapter__content {
  padding: 0 16px 14px 54px;
  border-top: 1px solid rgba(255,255,255,.08);
  animation: slideDown .18s ease;
}

.histoire-chapter__content p {
  margin: 0 0 10px 0;
  font-size: 13px;
  line-height: 1.4;
  color: #d1d5db;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1200px) {
  .histoire-rentable-layout { grid-template-columns: 1fr; }
  .histoire-rentable-media { position: static; }
}

@media (max-width: 768px) {
  .histoire-chapter__header { padding: 12px 12px; }
  .histoire-chapter__content { padding: 0 12px 10px 50px; }
  .histoire-chapter__title { font-size: 12px; }
  .histoire-chapter__subtitle { display: none; }
}

/* =========================================================
   COOKIE CONSENT BANNER
========================================================= */
.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, rgba(11, 12, 16, 0.95) 0%, rgba(20, 15, 25, 0.95) 100%);
  border: 1px solid rgba(255, 0, 107, 0.3);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(255, 0, 107, 0.15), 0 4px 16px rgba(248, 147, 16, 0.1);
  max-width: 30vw;
  z-index: 9999;
  animation: slideInConsent 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInConsent {
  from { transform: translateX(420px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.cookie-consent-content { padding: 24px; }

.cookie-consent-text h3 {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

.cookie-consent-text p {
  margin: 0 0 12px 0;
  font-size: 13px;
  color: #a7abb6;
  line-height: 1.5;
}

.cookie-details ul {
  font-size: 12px;
  color: #a7abb6;
  margin: 8px 0;
  padding-left: 20px;
}

.cookie-details li { margin: 6px 0; color: #8b92a9; }

.cookie-rgpd-link {
  display: inline-block;
  font-size: 12px;
  color: var(--orange);
  margin: 12px 0;
  padding: 8px 12px;
  border: 1px solid rgba(248, 147, 16, 0.5);
  border-radius: 6px;
  transition: all 0.3s ease;
  font-weight: 600;
  background: rgba(248, 147, 16, 0.05);
}

.cookie-rgpd-link:hover {
  background: rgba(248, 147, 16, 0.15);
  color: var(--orange);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(248, 147, 16, 0.2);
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 16px;
}

.cookie-btn {
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-reject {
  background: rgba(167, 171, 182, 0.1);
  color: #a7abb6;
  border: 1px solid rgba(167, 171, 182, 0.3);
}

.cookie-btn-reject:hover {
  background: rgba(167, 171, 182, 0.2);
  border-color: #a7abb6;
  transform: translateY(-2px);
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--pink) 0%, var(--orange) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 0, 107, 0.3);
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #ff1a80 0%, #ffa030 100%);
  box-shadow: 0 6px 20px rgba(255, 0, 107, 0.4);
  transform: translateY(-2px);
}

.cookie-consent-banner.hidden { display: none; }

@media (max-width: 480px) {
  .cookie-consent-banner { right: 10px; left: 10px; max-width: none; bottom: 10px; }
  .cookie-consent-content { padding: 20px; }
  .cookie-consent-buttons { flex-direction: column; gap: 10px; }
  .cookie-btn { width: 100%; padding: 12px 16px; }
}

/* =========================================================
   REGISTER SECTION
========================================================= */
.register-section {
  width: 100%;
  padding: 90px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.register-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 50% 100%, rgba(255,0,107,.1), transparent 70%);
  z-index: 0;
}

.register-inner { position: relative; z-index: 1; }

.register-head {
  text-align: center;
  margin-bottom: 36px;
}

.register-head h2 {
  font-size: 32px;
  margin-bottom: 10px;
  line-height: 1.1;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.register-card {
  max-width: 650px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
  padding: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  font-size: 14px;
  color: rgba(243,244,246,.9);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.4);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255,0,107,.15);
}

/* Style spécifique pour l'input pays */
input[name="pays"]:focus {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(248,147,16,.25);
}

.error-msg {
  color: #ff4d4d;
  font-size: 12px;
  margin-top: 6px;
  display: none;
  font-weight: 600;
}

.error-msg.active {
  display: block;
  animation: slideDown 0.2s ease;
}

.btn-submit {
  width: 100%;
  margin-top: 10px;
  font-size: 16px;
  cursor: pointer;
  border: none;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* =========================================================
   FOOTER
========================================================= */
.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--border2);
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}