/* ============================================
   LIF DIGITAL ACADEMY — Design System Premium
   ============================================ */

:root {
  /* Couleurs officielles */
  --royal-blue: #1A0AA8;
  --orange: #FF6A00;
  --white: #FFFFFF;
  --black-deep: #0A0A0A;

  /* Nuances dérivées pour la profondeur */
  --navy-card: #0D0640;
  --orange-light: #FF8F40;
  --grey-text: #B8B8C8;

  /* Typographie */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black-deep);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   HEADER STICKY
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background-color: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .logo-link {
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 10px;
}

.site-header .logo-link img {
  height: 34px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--orange);
}

.nav-cta {
  background-color: var(--orange);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background-color: var(--orange-light) !important;
}

/* Menu burger mobile */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.burger span {
  width: 24px;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background-color: var(--black-deep);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav.open {
    max-height: 320px;
  }

  .main-nav a {
    width: 100%;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-cta {
    margin: 16px 24px;
    text-align: center;
    width: calc(100% - 48px);
  }

  .burger {
    display: flex;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  padding: 80px 24px 70px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 10, 168, 0.35) 0%, rgba(26, 10, 168, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(255, 106, 0, 0.4);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 8vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title .word {
  position: relative;
  display: inline-block;
}

.hero-title .word-1 { color: var(--white); }
.hero-title .word-2 { color: var(--white); }
.hero-title .word-3 { color: var(--orange); }

/* Trait de plume animé sous-ligne les mots, un par un */
.pen-stroke {
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 3px;
  transform-origin: left;
  transform: scaleX(0);
  animation: draw-stroke 0.6s ease forwards;
}

.word-1 .pen-stroke { animation-delay: 0.3s; }
.word-2 .pen-stroke { animation-delay: 0.9s; }
.word-3 .pen-stroke { animation-delay: 1.5s; background: linear-gradient(90deg, var(--royal-blue), #4630d6); }

@keyframes draw-stroke {
  to { transform: scaleX(1); }
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--grey-text);
  max-width: 560px;
  margin: 0 auto 40px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.15s ease-out, box-shadow 0.2s ease, background-color 0.2s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: ripple-effect 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-effect {
  to {
    transform: scale(3);
    opacity: 0;
  }
}

.btn-primary {
  background-color: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 106, 0, 0.35);
}

.btn-primary:hover {
  background-color: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 106, 0, 0.45);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

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

@media (min-width: 769px) {
  .hero {
    padding: 120px 24px 100px;
  }
}

/* ---- Hero v2 avec photo fondateur ---- */

.hero-with-photo {
  text-align: left;
  padding: 60px 24px 50px;
}

.hero-with-photo::before {
  width: 800px;
  height: 800px;
  top: -30%;
  background: radial-gradient(circle, rgba(26, 10, 168, 0.4) 0%, rgba(255, 106, 0, 0.12) 45%, rgba(26, 10, 168, 0) 75%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-text-col {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}

.hero-title-v2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 7vw, 2.8rem);
  line-height: 1.18;
  margin-bottom: 20px;
  background: linear-gradient(100deg, var(--white) 30%, var(--orange-light) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--white);
}

.hero-checklist {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin: 24px 0 32px;
}

.hero-checklist li {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.hero-photo-col {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo-halo {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.35) 0%, rgba(26, 10, 168, 0.35) 60%, transparent 80%);
  filter: blur(20px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-halo 4s ease-in-out infinite;
}

@keyframes pulse-halo {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 320px;
  border-radius: 24px;
  border: 2px solid rgba(255, 106, 0, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@media (min-width: 900px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .hero-text-col {
    text-align: left;
    flex: 1.1;
  }

  .hero-checklist {
    justify-content: flex-start;
  }

  .hero-ctas {
    justify-content: flex-start;
  }

  .hero-photo-col {
    flex: 1;
  }

  .hero-photo {
    max-width: 380px;
  }
}

/* ============================================
   SYSTÈME REVEAL AU SCROLL
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible .reveal-item:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-visible .reveal-item:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible .reveal-item:nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger.is-visible .reveal-item:nth-child(4) { transition-delay: 0.36s; }

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.is-visible .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SECTION STATISTIQUES
   ============================================ */

.stats-section {
  padding: 60px 24px;
  background: linear-gradient(180deg, var(--black-deep) 0%, var(--navy-card) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 0, 0.4);
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 3rem);
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey-text);
  font-weight: 500;
}

@media (min-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   SECTION FORMATEUR
   ============================================ */

.formateur-section {
  padding: 70px 24px;
  background-color: var(--black-deep);
}

.formateur-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.formateur-photo-slot {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 2px solid rgba(255, 106, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.formateur-photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.formateur-photo-slot .placeholder-icon {
  width: 70px;
  height: 70px;
  opacity: 0.5;
}

.formateur-eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

.formateur-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  margin-bottom: 6px;
}

.formateur-role {
  font-family: var(--font-body);
  color: var(--grey-text);
  font-size: 15px;
  margin-bottom: 20px;
}

.formateur-bio {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
}

.formateur-bio strong {
  color: var(--orange);
}

.formateur-signature {
  font-family: 'Sora', cursive;
  font-style: italic;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--orange);
  margin-top: 18px;
  letter-spacing: 0.02em;
}

/* ============================================
   BOUTON WHATSAPP FLOTTANT
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  animation: whatsapp-bounce 2.5s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: #25D366;
  animation: whatsapp-pulse 2s ease-out infinite;
  z-index: -1;
}

.whatsapp-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background-color: var(--orange);
  border-radius: 50%;
  border: 2px solid var(--black-deep);
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float,
  .whatsapp-float::before {
    animation: none;
  }
}

/* ============================================
   SECTION TÉMOIGNAGES (CARROUSEL)
   ============================================ */

.testimonials-section {
  padding: 70px 0;
  background-color: var(--navy-card);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 40px;
}

.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.7rem, 5vw, 2.4rem);
}

.testimonial-carousel {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonial-viewport {
  overflow: hidden;
  border-radius: 16px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.testimonial-card img {
  width: 100%;
  display: block;
}

.testimonial-card-text {
  padding: 20px;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 10px;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.testimonial-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: transparent;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.testimonial-arrow:hover {
  background-color: rgba(255, 106, 0, 0.15);
  border-color: var(--orange);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.testimonial-dot.active {
  background-color: var(--orange);
  transform: scale(1.3);
}

/* ============================================
   PAGE HERO (réutilisable sur pages internes)
   ============================================ */

.page-hero {
  padding: 70px 24px 50px;
  text-align: center;
  background: linear-gradient(180deg, var(--black-deep) 0%, var(--navy-card) 100%);
}

.page-hero-content {
  max-width: 680px;
  margin: 0 auto;
}

.page-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  line-height: 1.2;
  margin: 16px 0;
}

.page-subtitle {
  font-family: var(--font-body);
  color: var(--grey-text);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto;
}

/* ============================================
   FORMATIONS — CARTES PREMIUM
   ============================================ */

.formations-grid-section {
  padding: 50px 24px 80px;
  background-color: var(--navy-card);
}

.formations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.formation-card-premium {
  position: relative;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.formation-card-premium:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 0, 0.5);
}

.formation-card-badge {
  position: absolute;
  top: -14px;
  left: 26px;
  background-color: var(--orange);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 20px;
}

.formation-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 12px;
  margin-top: 6px;
}

.formation-card-desc {
  font-family: var(--font-body);
  color: var(--grey-text);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.formation-card-features {
  list-style: none;
  margin-bottom: 26px;
  flex-grow: 1;
}

.formation-card-features li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
}

.formation-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.formation-card-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
}

.formation-card-price .price-old {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey-text);
  text-decoration: line-through;
}

.formation-card-price .price-new {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
}

.btn-full {
  width: 100%;
}

@media (min-width: 768px) {
  .formations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.final-cta-section {
  padding: 70px 24px;
  background-color: var(--black-deep);
  text-align: center;
}

.final-cta-content {
  max-width: 560px;
  margin: 0 auto;
}

.final-cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  margin-bottom: 14px;
}

.final-cta-subtitle {
  font-family: var(--font-body);
  color: var(--grey-text);
  font-size: 16px;
  margin-bottom: 28px;
}

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

.site-footer {
  background-color: var(--navy-card);
  padding: 50px 24px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  height: 50px;
  background-color: #FFFFFF;
  padding: 6px 14px;
  border-radius: 10px;
  margin-bottom: 14px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  text-align: left;
  margin-bottom: 36px;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-col p,
.footer-col a {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey-text);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--grey-text);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.social-icon:hover {
  background-color: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
}

.footer-payment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.footer-payment-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey-text);
}

.payment-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.payment-badge {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
}

@media (min-width: 600px) {
  .footer-columns {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}

/* ============================================
   PAGE CONTACT
   ============================================ */

.contact-section {
  padding: 20px 24px 80px;
  background-color: var(--navy-card);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 34px 24px;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 106, 0, 0.4);
}

.contact-card-whatsapp {
  border-color: rgba(37, 211, 102, 0.4);
}

.contact-card-whatsapp:hover {
  border-color: #25D366;
}

.contact-card-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.contact-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-card-text {
  font-family: var(--font-body);
  color: var(--grey-text);
  font-size: 14px;
  margin-bottom: 22px;
}

.contact-card-whatsapp .btn-primary {
  background-color: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.contact-card-whatsapp .btn-primary:hover {
  background-color: #1ebe57;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   POURQUOI NOUS CHOISIR
   ============================================ */

.why-section {
  padding: 70px 24px;
  background-color: var(--black-deep);
}

.why-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 44px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.why-item:hover {
  border-color: rgba(255, 106, 0, 0.4);
  transform: translateY(-4px);
}

.why-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(255, 106, 0, 0.15);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.why-text h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-text p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--grey-text);
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.faq-section {
  padding: 70px 24px;
  background-color: var(--navy-card);
}

.faq-list {
  max-width: 700px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  flex-shrink: 0;
  font-size: 22px;
  color: var(--orange);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 240px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey-text);
  line-height: 1.6;
}

/* ============================================
   PAGE MENTIONS LÉGALES
   ============================================ */

.legal-section {
  padding: 20px 24px 90px;
  background-color: var(--navy-card);
}

.legal-content {
  max-width: 700px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--grey-text);
  line-height: 1.7;
  margin-bottom: 8px;
}
