/* ============================================
   MKD SCHOOL - LANDING PAGE STYLES
   Dark Premium Theme with Gold & Green Accents
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a2e;
  --bg-card: #12121f;
  --bg-card-hover: #1e1e35;
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dark: #b8941e;
  --green: #00c853;
  --green-light: #69f0ae;
  --green-dark: #00a844;
  --text-primary: #ffffff;
  --text-secondary: #b0b0b0;
  --text-muted: #707070;
  --border-color: rgba(212, 175, 55, 0.15);
  --border-light: rgba(255, 255, 255, 0.06);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.15);
  --shadow-green: 0 0 30px rgba(0, 200, 83, 0.2);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold-text {
  color: var(--gold);
}

.green-text {
  color: var(--green);
}

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

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero section elements should be immediately visible (above the fold) */
.hero-section .fade-in,
.hero .fade-in {
  opacity: 1;
  transform: none;
}

/* ---------- Section Common ---------- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-tag i {
  margin-right: 6px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
  justify-content: center;
}

.btn i {
  font-size: 1.1em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #ffffff;
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 200, 83, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-xl {
  padding: 20px 44px;
  font-size: 1.15rem;
  border-radius: var(--radius-lg);
}

/* Pulse glow animation */
.pulse-glow {
  animation: pulseGlow 2.5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.25);
  }
  50% {
    box-shadow: 0 4px 25px rgba(0, 200, 83, 0.4);
  }
}

/* ============================================
   SECTION 1: HERO — Clean Premium Fintech
   ============================================ */
/* ============================================
   HERO — Desktop : Maquette intégrée
   Mobile : photo plein écran + texte/CTA en overlay HTML
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  background: #030710;
}

/* === DESKTOP VERSION : NATIF HTML/CSS PREMIUM === */
.hero-desktop {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #030710;
  display: flex;
  align-items: center;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 1;
}

/* Overlay sombre subtil pour lisibilité du texte */
.hero-desktop::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(3, 7, 16, 0.92) 0%,
    rgba(3, 7, 16, 0.80) 25%,
    rgba(3, 7, 16, 0.40) 45%,
    rgba(3, 7, 16, 0.10) 60%,
    transparent 75%
  );
}

/* Fine ligne dorée verticale - separator premium SUR LA JONCTION texte/photo */
.hero-desktop::after {
  content: '';
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 56%;
  width: 1px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(212, 160, 23, 0.20) 10%,
    rgba(245, 200, 66, 0.65) 50%,
    rgba(212, 160, 23, 0.20) 90%,
    transparent 100%
  );
  box-shadow:
    0 0 6px rgba(212, 160, 23, 0.40),
    0 0 14px rgba(212, 160, 23, 0.20);
}

/* Container du contenu (texte/CTA natif) */
.hero-desktop-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 60px 60px 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* Badge top */
.hero-desktop-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(212, 160, 23, 0.08);
  border: 1.5px solid rgba(212, 160, 23, 0.55);
  border-radius: 50px;
  color: #f5c842;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-family: var(--font-body), system-ui, sans-serif;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.15);
}

.hero-badge-icon {
  font-size: 16px;
  line-height: 1;
}

/* Titre principal */
.hero-desktop-title {
  font-family: var(--font-heading), system-ui, sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0;
  max-width: 640px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.hero-title-gold {
  background: linear-gradient(135deg, #f5c842 0%, #d4a017 50%, #f5c842 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #d4a017;
  font-weight: 800;
}

.hero-title-green {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #22c55e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #22c55e;
  font-weight: 800;
}

/* Sub paragraphe */
.hero-desktop-sub {
  font-family: var(--font-body), system-ui, sans-serif;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-desktop-sub strong {
  color: #ffffff;
  font-weight: 700;
}

/* CTA wrapper */
.hero-desktop-cta-wrapper {
  margin-top: 8px;
}

/* CTA principal natif premium */
.hero-desktop-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #1f9d54 0%, #157f3f 100%);
  color: #ffffff;
  font-family: var(--font-body), system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 14px;
  letter-spacing: 0.3px;
  box-shadow:
    0 12px 32px rgba(31, 157, 84, 0.35),
    0 0 0 1px rgba(34, 197, 94, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  cursor: pointer;
}

.hero-desktop-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(31, 157, 84, 0.50),
    0 0 0 1px rgba(34, 197, 94, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
  background: linear-gradient(135deg, #22a85c 0%, #1a8e46 100%);
}

.hero-desktop-cta i {
  font-size: 16px;
}

.hero-cta-arrow {
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.hero-desktop-cta:hover .hero-cta-arrow {
  transform: translateX(4px);
}

/* Trust bar bas */
.hero-desktop-trust {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-trust-item svg {
  width: 22px;
  height: 22px;
  color: #d4a017;
  flex-shrink: 0;
}

/* === MOBILE VERSION === */
.hero-mobile {
  display: none;
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  background: #030710;
}

.hero-mobile-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  display: block;
  z-index: 1;
}

/* Gradient overlay pour lisibilité texte */
.hero-mobile::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    /* Sombre en haut pour le badge */
    linear-gradient(180deg,
      rgba(3, 7, 16, 0.55) 0%,
      rgba(3, 7, 16, 0.30) 12%,
      transparent 25%,
      transparent 35%,
      rgba(3, 7, 16, 0.50) 55%,
      rgba(3, 7, 16, 0.85) 75%,
      rgba(3, 7, 16, 0.96) 90%,
      rgba(3, 7, 16, 0.99) 100%
    );
}

/* Glow doré subtil derrière le bloc de texte (premium feel) */
.hero-mobile::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(245, 200, 66, 0.06) 0%,
    transparent 60%
  );
}

.hero-mobile-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  padding: max(env(safe-area-inset-top), 20px) 22px max(env(safe-area-inset-bottom), 20px);
  box-sizing: border-box;
}

/* Badge tout en haut centré */
.hero-mobile-top {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Le bloc bas remonte (translation up) pour rapprocher du visage/montre */
.hero-mobile-bottom {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: max(env(safe-area-inset-bottom), 105px);
}

.hero-mobile-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #f5c842;
  background: rgba(15, 22, 38, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 200, 66, 0.30);
  padding: 8px 14px;
  border-radius: 100px;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

/* Bloc bas : titre + sub + CTA + proof */

.hero-mobile-title {
  font-family: var(--font-heading), system-ui, -apple-system, sans-serif;
  font-size: clamp(27px, 8.2vw, 40px);
  font-weight: 800;
  line-height: 1.10;
  color: #ffffff;
  margin: 68px 0 0 0;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  text-align: left;
}

.hero-mobile-gold {
  /* Or premium plus profond (moins jaune vif) */
  background: linear-gradient(135deg, #d4a017 0%, #f5c842 50%, #d4a017 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #d4a017; /* fallback */
  font-weight: 800;
}

.hero-mobile-sub {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-mobile-sub strong {
  color: #ffffff;
  font-weight: 700;
}

/* CTA unique - focus maximal */
.hero-mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.hero-mobile-cta-main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  letter-spacing: 0.01em;
  /* Vert luxe : moins saturé, plus profond, plus premium */
  background: linear-gradient(135deg, #1f9d54 0%, #157f3f 100%);
  color: #ffffff;
  box-shadow:
    0 12px 30px -10px rgba(31, 157, 84, 0.45),
    0 0 0 1px rgba(31, 157, 84, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

/* Pulse subtle pour attirer l'œil */
.hero-mobile-cta-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: heroCtaShine 3s ease-in-out infinite;
}

@keyframes heroCtaShine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.hero-mobile-cta-main:active {
  transform: scale(0.98);
}

/* === MICRO TRUST BAR — Container premium === */
.hero-mobile-proof {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  gap: 0;
  margin-top: 5px;
  padding: 0;
  background: transparent;
  border: none;
}

.hero-mobile-proof span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex: 1;
  text-align: center;
  padding: 0 4px;
}

/* Icônes SVG uniformes — toutes le même style, même couleur */
.hero-proof-icon {
  width: 20px;
  height: 20px;
  color: #D6B23E;
  flex-shrink: 0;
  display: block;
}

/* === MEDIA QUERIES : afficher desktop ou mobile === */
@media (max-width: 768px) {
  .hero-desktop {
    display: none;
  }
  .hero-mobile {
    display: block;
  }
}

@media (min-width: 769px) {
  .hero-mobile {
    display: none;
  }
}

/* Badge */
.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 0.5rem 1.3rem;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.02));
  width: fit-content;
  line-height: 1;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.08);
}

/* Headline */
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.08;
  margin-top: 1.2rem;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.hero-accent {
  color: #00c853;
  text-shadow: 0 0 20px rgba(0, 255, 100, 0.3);
  position: relative;
}

.hero-accent-gold {
  color: #d4af37;
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Keep .text-accent and .text-green for other sections */
.text-accent { color: #00c853; }
.text-green  { color: #00c853; }

/* Subtitle */
.hero-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
  margin-top: 1.1rem;
  max-width: 420px;
}

/* CTA row */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #00c853 0%, #00a844 50%, #00c853 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 15px rgba(0, 200, 83, 0.25);
  border: 1px solid rgba(0, 200, 83, 0.3);
  position: relative;
  z-index: 2;
}
.hero-cta-main:hover {
  background: linear-gradient(90deg, #00e05a 0%, #00c853 50%, #00e05a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 200, 83, 0.35);
}

.hero-cta-arrow {
  font-size: 1rem;
  transition: transform 0.2s ease;
}
.hero-cta-main:hover .hero-cta-arrow { transform: translateX(3px); }

.hero-cta-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.85rem 2rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  letter-spacing: 0.03em;
}
.hero-cta-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

/* Proof strip */
.hero-proof {
  display: flex;
  gap: 1.6rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.hero-proof-item {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.08em;
}
.hero-proof-item i {
  font-size: 0.7rem;
  color: rgba(212, 175, 55, 0.65);
}
.hero-proof-icon {
  font-size: 0.9rem;
  color: var(--gold-light);
  filter: sepia(1) saturate(4) brightness(1.1) hue-rotate(10deg);
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.3);
}

.hero-col-right {
  position: absolute;
  top: 0;
  right: 0;
  left: 30%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

/* Léger raccord noir sur le bord gauche pour matcher parfaitement avec le panneau noir */
.hero-col-right::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to right, rgba(3,7,16,0.85), transparent);
}

.hero-portrait {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 42%;
  display: block;
  transform: scale(1.15);
  transform-origin: 60% 42%;
  filter: none;
  -webkit-filter: none;
}

/* ============================================
   AUTHORITY STRIP (Social Proof Bar)
   ============================================ */
.authority-strip {
  background: linear-gradient(135deg, #0d0d1a 0%, #12121f 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
  padding: 18px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.authority-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.authority-strip-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.authority-strip-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}

.authority-strip-text .authority-check {
  color: var(--green);
  margin-right: 6px;
  font-size: 1.1rem;
}

.authority-strip-text .authority-highlight {
  color: var(--gold);
  font-weight: 800;
}

.authority-strip-badges {
  display: flex;
  align-items: center;
  gap: 20px;
}

.authority-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.authority-badge i {
  color: var(--gold);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .authority-strip {
    padding: 14px 16px;
  }

  .authority-strip-content {
    flex-direction: column;
    gap: 10px;
  }

  .authority-strip-text {
    font-size: 0.95rem;
  }

  .authority-strip-badges {
    gap: 14px;
  }

  .authority-badge {
    font-size: 0.8rem;
  }
}



/* ============================================
   SECTION 2: VIDEO VSL
   ============================================ */
.video-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto 40px;
}

.video-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-gold);
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #0d0d1a, #1a1a2e);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.play-button-wrapper {
  position: relative;
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.play-button i {
  color: #0a0a0a;
  font-size: 1.8rem;
  margin-left: 4px;
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.5);
}

.video-hook {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
  padding: 0 20px;
  text-align: center;
}

.video-cta {
  text-align: center;
}



/* ============================================
   SECTION 4: ROBOT
   ============================================ */
.robot-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.robot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.robot-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.8;
}

.robot-desc strong {
  color: var(--text-primary);
}

.robot-features {
  margin-bottom: 36px;
}

.robot-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.robot-features li i {
  color: var(--green);
  margin-top: 4px;
  flex-shrink: 0;
}

.robot-image {
  position: relative;
}

.robot-image img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(212, 175, 55, 0.1), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.robot-image img {
  position: relative;
  z-index: 1;
}

/* ============================================
   SECTION 5: FEATURES / CHARACTERISTICS
   ============================================ */
.features-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-color);
  box-shadow: var(--shadow-gold);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.4rem;
}

.benefit-icon {
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.2), rgba(0, 200, 83, 0.05));
  color: var(--green);
}

.security-icon {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  color: var(--gold);
}

.fees-icon {
  background: linear-gradient(135deg, rgba(100, 181, 246, 0.2), rgba(100, 181, 246, 0.05));
  color: #64b5f6;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.feature-list li i {
  color: var(--green);
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 0.8rem;
}

/* ============================================
   SECTION 6: ABOUT
   ============================================ */
.about-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-gold);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0a0a0a;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.about-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-desc strong {
  color: var(--text-primary);
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
  padding: 20px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.signature-logo {
  width: 48px;
  height: auto;
}

.signature-logo-badge {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading), system-ui, sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #0a0f1a;
  background: linear-gradient(135deg, #f5c842 0%, #d4a017 100%);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(212, 160, 23, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.30);
  flex-shrink: 0;
}

.about-signature strong {
  display: block;
  font-size: 1rem;
  color: var(--gold);
}

.about-signature span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ============================================
   SECTION 7: WHY CHOOSE US
   ============================================ */
/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #0a0f1a 0%, #050810 100%);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.reviews-rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.rating-stars {
  display: flex;
  gap: 6px;
  font-size: 28px;
  color: #f5c842;
  filter: drop-shadow(0 2px 8px rgba(245, 200, 66, 0.35));
}

.rating-text {
  color: var(--text-secondary, #a0a8b8);
  font-size: 16px;
}

.rating-text strong {
  color: #fff;
}

.reviews-grid {
  display: none;
}

/* === GALERIE CAPTURES TÉMOIGNAGES CLIENTS === */
.testimonials-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}

/* La 1ère capture (gros montant) prend 2 cases */
.testimonials-gallery .testimonial-screenshot:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.testimonial-screenshot {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(20, 28, 45, 0.6), rgba(12, 18, 30, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.testimonial-screenshot:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.30);
  box-shadow:
    0 25px 50px -15px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(212, 175, 55, 0.15);
}

.testimonial-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 9 / 16;
}

.testimonials-gallery .testimonial-screenshot:first-child img {
  aspect-ratio: 1 / 1;
}

.testimonial-amount {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.95), rgba(22, 163, 74, 0.95));
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow:
    0 8px 24px -8px rgba(34, 197, 94, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  letter-spacing: 0.5px;
}

.testimonials-gallery .testimonial-screenshot:first-child .testimonial-amount {
  font-size: 22px;
  padding: 14px 18px;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

@media (max-width: 1024px) {
  .testimonials-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonials-gallery .testimonial-screenshot:first-child {
    grid-column: span 3;
    grid-row: span 1;
  }
  .testimonials-gallery .testimonial-screenshot:first-child img {
    aspect-ratio: 16 / 9;
    object-position: center top;
  }
}

@media (max-width: 640px) {
  .testimonials-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .testimonials-gallery .testimonial-screenshot:first-child {
    grid-column: span 2;
  }
  .testimonial-amount {
    font-size: 14px;
    padding: 8px 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
  }
  .testimonials-gallery .testimonial-screenshot:first-child .testimonial-amount {
    font-size: 17px;
    padding: 10px 14px;
  }
}

.reviews-cta {
  text-align: center;
  margin-top: 50px;
}


/* ============================================
   VIDEO CAROUSEL — Témoignages Premium
   ============================================ */
.video-carousel-section {
  margin-top: 80px;
  position: relative;
}

.video-carousel-header {
  text-align: center;
  margin-bottom: 40px;
}

.video-carousel-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.10);
  border: 1px solid rgba(212, 175, 55, 0.30);
  border-radius: 50px;
  color: #f5c842;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.video-carousel-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.15;
}

.video-carousel-desc {
  color: #a0a8b8;
  font-size: 16px;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Wrapper avec arrows desktop */
.video-carousel-wrapper {
  position: relative;
  padding: 0 50px;
}

/* Track scrollable */
.video-carousel-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 16px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.video-carousel-track::-webkit-scrollbar {
  display: none;
}

/* Cards vidéo */
.video-card {
  flex: 0 0 calc((100% - 22px) / 2);
  max-width: 420px;
  scroll-snap-align: start;
  background: linear-gradient(145deg, rgba(20, 28, 45, 0.85), rgba(12, 18, 30, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(212, 175, 55, 0.18);
}

/* Thumbnail */
.video-card-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.video-card:hover .video-card-thumb img {
  transform: scale(1.06);
}

/* Bouton play centré */
.video-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a0f1a;
  font-size: 22px;
  padding-left: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-card:hover .video-card-play {
  background: #f5c842;
  transform: translate(-50%, -50%) scale(1.08);
}

.video-card-play:active {
  transform: translate(-50%, -50%) scale(0.95);
}

/* Badge */
.video-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: rgba(34, 197, 94, 0.95);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.video-card-badge-fire {
  background: rgba(249, 115, 22, 0.95);
}

.video-card-badge-blue {
  background: rgba(37, 99, 235, 0.95);
}

.video-card-badge-gold {
  background: linear-gradient(135deg, #f5c842, #d4a017);
  color: #1a1a1a;
}

/* Content sous le thumb */
.video-card-content {
  padding: 18px 20px 22px;
}

.video-card-meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.video-card-amount {
  font-size: 24px;
  font-weight: 800;
  color: #22c55e;
  letter-spacing: -0.01em;
}

.video-card-period {
  font-size: 13px;
  color: #8a93a3;
  font-weight: 500;
}

.video-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 6px;
  line-height: 1.3;
}

.video-card-desc {
  font-size: 14px;
  color: #a0a8b8;
  margin: 0;
  line-height: 1.5;
}

/* Quand vidéo loadée, l'iframe remplace tout */
.video-card[data-video-loaded="true"] .video-card-thumb {
  position: relative;
}

.video-card[data-video-loaded="true"] .video-card-thumb img,
.video-card[data-video-loaded="true"] .video-card-play,
.video-card[data-video-loaded="true"] .video-card-badge {
  display: none;
}

.video-card-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Arrows desktop */
.video-carousel-arrow {
  position: absolute;
  top: calc(50% - 60px);
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.video-carousel-arrow:hover {
  background: rgba(245, 200, 66, 0.15);
  border-color: rgba(245, 200, 66, 0.40);
  color: #f5c842;
}

.video-carousel-prev { left: 0; }
.video-carousel-next { right: 0; }

/* Dots indicator (mobile principalement) */
.video-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.video-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.video-carousel-dot.active {
  width: 24px;
  border-radius: 4px;
  background: #f5c842;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .video-card {
    flex: 0 0 calc((100% - 22px) / 2);
  }
}

@media (max-width: 768px) {
  .video-carousel-section {
    margin-top: 60px;
  }
  .video-carousel-header {
    margin-bottom: 28px;
    padding: 0 16px;
  }
  .video-carousel-wrapper {
    padding: 0 16px;
  }
  /* Une carte par scroll sur mobile */
  .video-card {
    flex: 0 0 calc(100% - 8px);
    max-width: none;
  }
  .video-carousel-track {
    gap: 14px;
    padding: 8px 0 16px;
  }
  .video-carousel-arrow {
    display: none;
  }
  .video-card-content {
    padding: 16px 18px 20px;
  }
  .video-card-title {
    font-size: 16px;
  }
  .video-card-amount {
    font-size: 22px;
  }
  .video-card-play {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }
}


@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .reviews-section {
    padding: 70px 0;
  }
  .rating-stars {
    font-size: 24px;
  }
}

.why-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-color);
  box-shadow: var(--shadow-gold);
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.03));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.why-icon i {
  color: var(--gold);
  font-size: 1.6rem;
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.why-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.2);
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
}

/* ============================================
   SECTION 8: TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.testimonial-card {
  background: linear-gradient(145deg, var(--bg-card), rgba(26, 26, 46, 0.8));
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-color);
  box-shadow: var(--shadow-gold);
}

.testimonial-stars {
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: var(--gold);
  font-size: 0.9rem;
  margin-right: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-text strong {
  color: var(--green);
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar i {
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-proof {
  text-align: center;
}

.testimonial-proof img {
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
}

/* ============================================
   VIDEO EMBEDS (YouTube iframes)
   ============================================ */
.video-embed-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.video-embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-md);
}

.secondary-videos {
  max-width: 1000px;
  margin: 40px auto 40px;
}

.secondary-videos-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: var(--text-secondary);
}

.secondary-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.secondary-video-item {
  background: linear-gradient(145deg, var(--bg-card), var(--bg-secondary));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.secondary-video-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.secondary-video-label {
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-align: center;
}

/* ============================================
   NOTRE ÉCOLE (School Gallery)
   ============================================ */
.school-section {
  padding: 100px 0;
  background: var(--bg-primary);
}

.school-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.school-gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: pointer;
}

.school-gallery-item.school-gallery-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.school-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.school-gallery-item:hover img {
  transform: scale(1.08);
}

.school-gallery-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.school-gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.school-gallery-item:hover .school-gallery-overlay {
  opacity: 1;
}

.school-gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
}

/* ============================================
   CLIENT GAINS GALLERY
   ============================================ */
.client-gains-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.client-gains-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.client-gains-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  background: var(--bg-card);
}

.client-gains-item:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: var(--shadow-green);
}

.client-gains-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   FINAL CTA
   ============================================ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    #0d1117 50%,
    var(--bg-primary) 100%
  );
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(0, 200, 83, 0.05), transparent 60%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 40px;
}

.cta-desc strong {
  color: var(--text-primary);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cta-guarantee i {
  color: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 30px;
  background: #050510;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  width: 60px;
  margin-bottom: 12px;
}

.footer-logo-badge {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading), system-ui, sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.05em;
  color: #0a0f1a;
  background: linear-gradient(135deg, #f5c842 0%, #d4a017 100%);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(212, 160, 23, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.30);
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-tagline {
  color: var(--text-muted) !important;
  font-size: 0.85rem !important;
  margin-top: 4px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gold);
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 0.75rem !important;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE: TABLET (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-col-left {
    width: 100%;
    padding: 3rem 2rem 0;
    text-align: center;
    order: 2;
    margin-top: 50vh;
  }

  .hero-badge { margin: 0 auto; }
  .hero-headline { text-align: center; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-proof { justify-content: center; }

  .hero-col-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 50vh;
  }

  .hero-col-right::before {
    background: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.5) 70%,
      #000000 100%
    );
  }



  .features-grid,
  .why-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .robot-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .school-gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .school-gallery-item.school-gallery-featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .client-gains-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .secondary-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   RESPONSIVE: MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .hero-col-left {
    padding: 2rem 1.25rem 0;
  }

  .hero-headline {
    font-size: clamp(1.4rem, 5vw, 1.9rem);
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta-main,
  .hero-cta-ghost {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    text-align: center;
  }

  .hero-badge {
    font-size: 0.5rem;
    padding: 0.35rem 0.9rem;
  }

  .hero-col-right {
    height: 42vh;
  }

  .hero-proof {
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
  }

  .features-grid,
  .why-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .robot-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .robot-image {
    order: -1;
  }

  .about-image {
    max-width: 350px;
    margin: 0 auto;
  }

  .section-title {
    text-align: center;
  }

  .text-left {
    text-align: center;
  }

  .robot-text,
  .about-text {
    text-align: center;
  }

  .robot-features li {
    justify-content: center;
    text-align: left;
  }

  .robot-text .btn,
  .about-text .btn {
    margin: 0 auto;
    display: flex;
    max-width: 280px;
  }

  .about-signature {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links a,
  .footer-contact a {
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 340px;
  }

  .btn-xl {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .video-section,
  .robot-section,
  .features-section,
  .about-section,
  .why-section,
  .testimonials-section,
  .cta-section,
  .school-section {
    padding: 70px 0;
  }

  .secondary-videos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .school-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .school-gallery-item.school-gallery-featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .client-gains-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header {
    margin-bottom: 40px;
  }

  .play-button {
    width: 64px;
    height: 64px;
  }

  .play-button i {
    font-size: 1.4rem;
  }
}

/* ============================================
   RESPONSIVE: SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 16px;
  }

  .feature-card,
  .why-card,
  .testimonial-card {
    padding: 28px 20px;
  }

  .school-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .school-gallery-item.school-gallery-featured {
    grid-column: span 2;
  }

  .client-gains-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
/* ============================================
   VIDEO PROOF SECTION — Solo après hero (autorité)
   ============================================ */
.video-proof-section {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, #03070f 0%, #060c18 100%);
  position: relative;
}

.video-proof-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.30), transparent);
}

.video-proof-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.video-proof-header .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(34, 197, 94, 0.10);
  border: 1px solid rgba(34, 197, 94, 0.30);
  border-radius: 50px;
  color: #22c55e;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.video-proof-header .section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.15;
}

.video-proof-header .section-desc {
  color: #a0a8b8;
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
}

/* Card vidéo HERO solo - plus grande et impactante */
.video-card-hero {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(20, 28, 45, 0.85), rgba(12, 18, 30, 0.85));
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  cursor: pointer;
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.7);
}

.video-card-hero:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.40);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(212, 175, 55, 0.30);
}

@media (max-width: 768px) {
  .video-proof-section {
    padding: 40px 0 30px;
  }
  .video-proof-header {
    padding: 0 18px;
    margin-bottom: 26px;
  }
  .video-card-hero {
    margin: 0 18px;
  }
}

/* ============================================
   VIDEO LOYALTY SECTION — Client 1 an (split layout)
   ============================================ */
.video-loyalty-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #060c18 0%, #03070f 100%);
  position: relative;
}

.video-loyalty-section::before,
.video-loyalty-section::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.30), transparent);
}
.video-loyalty-section::before { top: 0; }
.video-loyalty-section::after { bottom: 0; }

.video-loyalty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.video-loyalty-text .section-title {
  font-size: clamp(28px, 4vw, 38px);
  margin: 16px 0 18px;
  color: #fff;
  line-height: 1.15;
}

.video-loyalty-tag {
  background: rgba(37, 99, 235, 0.10) !important;
  border-color: rgba(37, 99, 235, 0.30) !important;
  color: #60a5fa !important;
}

.video-loyalty-desc {
  color: #a0a8b8;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.video-loyalty-desc strong {
  color: #fff;
}

.video-loyalty-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.video-loyalty-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: #d0d6e0;
  font-size: 15px;
}

.video-loyalty-points li i {
  color: #22c55e;
  font-size: 16px;
}

.video-card-loyalty {
  max-width: 100%;
  background: linear-gradient(145deg, rgba(20, 28, 45, 0.85), rgba(12, 18, 30, 0.85));
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.7);
}

.video-card-loyalty:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.45);
}

/* ============================================
   VIDEO CURIOSITY SECTION — À 20 ans (banner)
   ============================================ */
.video-curiosity-section {
  padding: 50px 0;
  background: #03070f;
  position: relative;
}

.video-card-curiosity {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(20, 28, 45, 0.85), rgba(12, 18, 30, 0.85));
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.7);
}

.video-card-curiosity:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.45);
}

.video-card-curiosity .video-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .video-loyalty-section {
    padding: 50px 0;
  }
  .video-loyalty-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 18px;
  }
  .video-loyalty-text .section-title {
    text-align: left;
  }

  .video-curiosity-section {
    padding: 40px 0;
  }
  .video-card-curiosity {
    grid-template-columns: 1fr;
    margin: 0 18px;
  }
  .video-card-curiosity .video-card-content {
    padding: 18px;
  }
}

/* ============================================
   CTA répétés à la fin de chaque section
   ============================================ */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding: 0 18px;
}

.section-cta .btn-primary {
  font-size: 16px;
  padding: 16px 32px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.30);
  transition: all 0.3s ease;
}

.section-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.45);
}

@media (max-width: 768px) {
  .section-cta {
    margin-top: 32px;
  }
  .section-cta .btn-primary {
    width: 100%;
    max-width: 360px;
    padding: 16px 24px;
    font-size: 15px;
  }
}

/* ============================================
   FOUNDER RESULT SECTION — Lambo Mickael
   ============================================ */
.founder-result-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #060c18 0%, #0a1020 100%);
  position: relative;
  overflow: hidden;
}

.founder-result-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.50), transparent);
}

.founder-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.founder-result-tag {
  background: rgba(212, 175, 55, 0.12) !important;
  border-color: rgba(212, 175, 55, 0.40) !important;
  color: #f5c842 !important;
}

.founder-result-text .section-title {
  font-size: clamp(28px, 4.5vw, 42px);
  margin: 16px 0 18px;
  color: #fff;
  line-height: 1.1;
}

.founder-result-desc {
  color: #b8c0d0;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.founder-result-desc strong {
  color: #fff;
}

.founder-result-points {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
}

.founder-result-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: #d0d6e0;
  font-size: 15px;
}

.founder-result-points li i {
  color: #d4a017;
  font-size: 16px;
}

.video-card-founder {
  background: linear-gradient(145deg, rgba(35, 25, 8, 0.85), rgba(20, 14, 4, 0.85));
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(212, 175, 55, 0.20);
}

.video-card-founder:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.70);
  box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(212, 175, 55, 0.40);
}

.video-card-founder .video-card-amount {
  background: linear-gradient(135deg, #f5c842 0%, #d4a017 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .founder-result-section {
    padding: 50px 0;
  }
  .founder-result-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 18px;
  }
}

/* ============================================
   FALLBACK ROBUSTE — Thumbnail vidéo si image ne charge pas
   ============================================ */
.video-card-thumb {
  background: linear-gradient(135deg, #1a1f2e 0%, #0a0f1a 100%);
  min-height: 200px;
}

.video-card-hero .video-card-thumb {
  min-height: 280px;
}

.video-card-thumb img {
  background: #000;
}

/* Si l'image est cassée/vide, on garde un fond élégant */
.video-card-thumb img[src=""], 
.video-card-thumb img:not([src]) {
  display: none;
}

/* Bouton play TOUJOURS visible avec gros halo */
.video-card-play {
  z-index: 5;
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.18),
              0 0 30px rgba(212, 175, 55, 0.40),
              0 8px 24px rgba(0, 0, 0, 0.5);
  width: 76px !important;
  height: 76px !important;
}

.video-card-play i {
  color: #d4a017 !important;
  font-size: 28px !important;
  margin-left: 4px;
}

.video-card-hero .video-card-play {
  width: 90px !important;
  height: 90px !important;
}

.video-card-hero .video-card-play i {
  font-size: 34px !important;
}

/* Section vidéo proof : garantir visibilité */
.video-proof-section {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-height: 500px;
}

/* ============================================
   VARIANTE BLEUE — Section Membre 12 mois
   ============================================ */
.video-loyalty-blue {
  background: linear-gradient(180deg, #04080f 0%, #060d1a 100%);
}

.video-loyalty-blue::before {
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.40), transparent);
}

.video-loyalty-blue::after {
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.40), transparent);
}

.video-loyalty-blue .video-card-loyalty {
  border: 1px solid rgba(37, 99, 235, 0.35);
}

.video-loyalty-blue .video-card-loyalty:hover {
  border-color: rgba(37, 99, 235, 0.60);
}

.video-loyalty-blue .video-loyalty-points li i {
  color: #60a5fa;
}

.video-loyalty-tag-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(37, 99, 235, 0.12) !important;
  border: 1px solid rgba(37, 99, 235, 0.35) !important;
  border-radius: 50px;
  color: #60a5fa !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Layout reverse — vidéo à gauche, texte à droite */
.video-loyalty-grid-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 768px) {
  .video-loyalty-grid-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 18px;
  }
  /* Sur mobile, on remet le texte avant la vidéo pour cohérence lecture */
  .video-loyalty-grid-reverse .video-loyalty-text {
    order: 1;
  }
  .video-loyalty-grid-reverse .video-card-loyalty {
    order: 2;
  }
}

/* ============================================
   VARIANTE VERTE — Section Preuve Directe +2000€
   ============================================ */
.video-loyalty-green {
  background: linear-gradient(180deg, #04080f 0%, #060d1a 100%);
}

.video-loyalty-green::before {
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.40), transparent);
}

.video-loyalty-green::after {
  background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.40), transparent);
}

.video-loyalty-green .video-card-loyalty {
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.video-loyalty-green .video-card-loyalty:hover {
  border-color: rgba(34, 197, 94, 0.60);
}

.video-loyalty-green .video-loyalty-points li i {
  color: #22c55e;
}

.video-loyalty-tag-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(34, 197, 94, 0.12) !important;
  border: 1px solid rgba(34, 197, 94, 0.35) !important;
  border-radius: 50px;
  color: #22c55e !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ============================================
   PHRASES DOULEUR / IDENTIFICATION AVATAR
   Style premium subtil — pas agressif infopreneur
   ============================================ */

/* Hero desktop pain line - sous le sub */
.hero-desktop-pain {
  font-family: var(--font-body), system-ui, sans-serif;
  font-size: clamp(13px, 0.95vw, 15px);
  font-style: italic;
  font-weight: 400;
  color: rgba(245, 200, 66, 0.85);
  margin: 4px 0 0 0;
  max-width: 540px;
  letter-spacing: 0.01em;
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  padding-left: 14px;
  border-left: 2px solid rgba(212, 160, 23, 0.50);
}

/* Hero mobile pain line */
.hero-mobile-pain {
  font-family: var(--font-body), system-ui, sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  color: rgba(245, 200, 66, 0.90);
  margin: 14px 0 0 0;
  letter-spacing: 0.01em;
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  padding-left: 12px;
  border-left: 2px solid rgba(212, 160, 23, 0.50);
}

/* Pain text dans les sections (italique, plus subtil) */
.video-loyalty-desc em,
.robot-desc-pain em {
  font-style: italic;
  color: rgba(245, 200, 66, 0.95);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.robot-desc-pain {
  padding: 14px 18px;
  border-left: 2px solid rgba(212, 160, 23, 0.50);
  background: rgba(212, 160, 23, 0.03);
  border-radius: 0 6px 6px 0;
  margin-bottom: 18px !important;
}
