/* ============================================================
   YANN HMD FORMATIONS VIDÉO — Feuille de style principale
   ============================================================
   Personnalisation :
   - Couleurs : --orange, --violet, --bg, --text-light
   - Police titres : Space Grotesk (chargée via Google Fonts)
   - Police corps : Inter
   ============================================================ */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

/* ---------- VARIABLES ---------- */
:root {
  --bg:          #0A0A0A;
  --bg-mid:      #111111;
  --bg-card:     #161616;
  --border:      #2a2a2a;
  --text:        #F0EDE8;
  --text-muted:  #999999;
  --orange:      #F4C70F;
  --orange-dark: #c9a00c;
  --violet:      #7B2FFF;
  --violet-dark: #5e1ecc;
  --white:       #ffffff;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,0.5);
  --transition:  0.3s ease;
  --max-width:   1200px;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- UTILITAIRES ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 80px 0; }
.section-sm { padding: 60px 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

.text-orange { color: var(--orange); }
.text-violet { color: var(--violet); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.bg-mid { background: var(--bg-mid); }

/* ---------- BOUTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: #0A0A0A;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline-white:hover {
  background: rgba(240,237,232,0.1);
  transform: translateY(-2px);
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-orange:hover {
  background: rgba(244,199,15,0.1);
  transform: translateY(-2px);
}

.btn-violet {
  background: var(--violet);
  color: #fff;
  border-color: var(--violet);
}
.btn-violet:hover {
  background: var(--violet-dark);
  border-color: var(--violet-dark);
  transform: translateY(-2px);
}

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

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ---------- HEADER / NAV ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), backdrop-filter var(--transition);
  background: transparent;
}

.header.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
}
.logo span { color: var(--orange); }

/* Nav */
.nav { display: flex; align-items: center; gap: 8px; }

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text); }

/* Dropdown */
.dropdown-toggle svg { transition: transform var(--transition); }
.nav-item:hover .dropdown-toggle svg,
.nav-item.open .dropdown-toggle svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 100;
}
.nav-item:hover .dropdown-menu,
.nav-item.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 14px;
  font-size: 0.875rem;
  color: var(--text-muted);
  border-radius: 6px;
  transition: var(--transition);
}
.dropdown-link:hover { background: rgba(244,199,15,0.1); color: var(--text); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 999;
  padding: 100px 24px 40px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-sublabel {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin: 16px 0 8px;
}
.mobile-nav-sub {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.65);
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 120px 0 80px;
  max-width: 820px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(240,237,232,0.75);
  margin-bottom: 36px;
  font-weight: 400;
}

/* Hero badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
  color: rgba(240,237,232,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-badge img {
  height: 28px;
  width: auto;
  background: #fff;
  border-radius: 5px;
  padding: 3px 7px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Logo band (hero bottom) */
.logo-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 32px;
  padding: 24px 0;
}
.logo-band-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.logo-band img {
  height: 32px;
  width: auto;
  background: #fff;
  border-radius: 5px;
  padding: 4px 8px;
  object-fit: contain;
  transition: opacity var(--transition);
  opacity: 0.9;
}
.logo-band img:hover { opacity: 1; }

/* ---------- PAGE HERO (sous-pages) ---------- */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: var(--bg-mid);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 600px;
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(120px);
  pointer-events: none;
}
.page-hero.orange::before { background: var(--orange); }
.page-hero.violet::before { background: var(--violet); }

.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 16px; }
.page-hero .subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 28px;
}
.price-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 28px;
}
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.badge-orange { background: rgba(244,199,15,0.15); color: var(--orange); border: 1px solid rgba(244,199,15,0.3); }
.badge-violet { background: rgba(123,47,255,0.15); color: var(--violet); border: 1px solid rgba(123,47,255,0.3); }
.badge-white  { background: rgba(240,237,232,0.08); color: var(--text); border: 1px solid rgba(240,237,232,0.2); }
.badge-green  { background: rgba(0,200,100,0.1); color: #00c864; border: 1px solid rgba(0,200,100,0.25); }

/* ---------- OFFRES / CARTES ---------- */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

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

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: var(--shadow);
}

.offer-card.featured {
  border-color: var(--violet);
  box-shadow: 0 0 40px rgba(123,47,255,0.2);
  transform: scale(1.03);
}
.offer-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.offer-featured-label {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--violet);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.offer-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.offer-tag.orange { color: var(--orange); }
.offer-tag.violet { color: var(--violet); }
.offer-tag.white  { color: var(--text-muted); }

.offer-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.offer-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.offer-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
}
.offer-price.orange { color: var(--orange); }
.offer-price.violet { color: var(--violet); }

.offer-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }

/* ---------- FINANCEMENT ---------- */
.financement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 768px) { .financement-grid { grid-template-columns: 1fr; } }

.financement-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.financement-card h4 { font-size: 1.1rem; margin: 12px 0 8px; }
.financement-card p  { font-size: 0.875rem; color: var(--text-muted); }

.financement-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  background: rgba(244,199,15,0.12);
}

.financement-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  margin: 8px 0 4px;
}

/* ---------- TÉMOIGNAGES ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(244,199,15,0.3); }

.stars { color: #FFB800; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }

.testimonial-text {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--border);
}
.author-avatar-placeholder {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-role { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- QUI JE SUIS ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-card);
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  background: var(--bg-card);
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1rem;
}

.stats-row {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat { flex: 1; min-width: 120px; }
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- FORMULAIRE ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}
.form-label span { color: var(--orange); }

.form-input,
.form-select,
.form-textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 120px; }

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }

/* ---------- ACCORDION / FAQ ---------- */
.accordion { display: flex; flex-direction: column; gap: 8px; }

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.accordion-item.open { border-color: rgba(244,199,15,0.4); }

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}
.accordion-trigger:hover { color: var(--orange); }
.accordion-item.open .accordion-trigger { color: var(--orange); }

.accordion-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  color: var(--text-muted);
}
.accordion-item.open .accordion-icon {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(244,199,15,0.1);
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.accordion-body.open { max-height: 400px; }

.accordion-content {
  padding: 0 24px 20px;
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---------- TABLEAU COMPARATIF ---------- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table th,
.compare-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  background: var(--bg-card);
}
.compare-table td { color: var(--text-muted); }
.compare-table tr:last-child td,
.compare-table tr:last-child th { border-bottom: none; }
.compare-table .check { color: #00c864; font-size: 1.1rem; }
.compare-table .cross { color: #ff4444; }
.compare-table th.highlight { color: var(--orange); }
.compare-table td.highlight { color: var(--text); font-weight: 500; }

/* ---------- PROGRAM TABS ---------- */
.tabs { margin-bottom: 0; }
.tab-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  transition: var(--transition);
}
.tab-btn:hover { border-color: var(--orange); color: var(--text); }
.tab-btn.active { border-color: var(--orange); background: rgba(244,199,15,0.12); color: var(--orange); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.program-list { display: flex; flex-direction: column; gap: 12px; }
.program-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.program-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(244,199,15,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.program-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.program-item p  { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- FEATURES / ARGUMENTS ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.feature-card:hover { border-color: rgba(244,199,15,0.3); transform: translateY(-2px); }

.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(244,199,15,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.feature-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* 4-col features */
.features-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .features-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .features-4 { grid-template-columns: 1fr; } }

/* ---------- MODULES LIST ---------- */
.modules-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 600px) { .modules-list { grid-template-columns: 1fr; } }

.module-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.module-number {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(123,47,255,0.15);
  color: var(--violet);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.module-item h4 { font-size: 0.9rem; margin-bottom: 4px; }
.module-item p  { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- SERVICES CARDS (projet) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}
.service-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 8px 32px rgba(244,199,15,0.15); }
.service-icon { font-size: 2.5rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.service-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ---------- CALENDLY PLACEHOLDER ---------- */
.calendly-embed {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}
.calendly-embed-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 400px;
}
.calendly-embed-note strong { display: block; color: var(--text); font-size: 1.1rem; margin-bottom: 8px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--orange); }

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover { border-color: var(--orange); color: var(--orange); background: rgba(244,199,15,0.1); }

.footer-col h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-link {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--text); }

.footer-logos {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px;
}
.footer-logos img {
  height: 28px;
  width: auto;
  background: #fff;
  border-radius: 4px;
  padding: 3px 7px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.footer-logos img:hover { opacity: 1; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- CTA SECTION ---------- */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(244,199,15,0.08) 0%, rgba(123,47,255,0.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-section h2 { margin-bottom: 12px; }
.cta-section p { color: var(--text-muted); max-width: 500px; margin: 0 auto 32px; }

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ---------- DIVIDER ---------- */
.section-divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ---------- INFO BOX ---------- */
.info-box {
  background: rgba(244,199,15,0.07);
  border: 1px solid rgba(244,199,15,0.2);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.9rem;
  line-height: 1.7;
}
.info-box strong { color: var(--orange); }

/* ============================================================
   GALERIE FORMATION
   ============================================================ */
.gallery-section { overflow: hidden; }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  margin-top: 48px;
}
.gallery-item-tall  { grid-row: 1 / 3; }

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-item-tall  { aspect-ratio: unset; }
.gallery-item-video { aspect-ratio: 9/16; }

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img,
.gallery-item:hover video { transform: scale(1.04); }

.gallery-video-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.04em;
}
.gallery-video-badge span { color: var(--orange); font-size: 0.65rem; }

/* Grille vidéos coulisses : 3 verticales + 1 horizontale pleine largeur */
.gallery-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}
.gallery-item-wide {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
}
.gallery-item-wide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item-wide:hover video { transform: scale(1.03); }

/* Grille photos formation */
.gallery-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item-tall { grid-row: unset; aspect-ratio: 4/3; }
  .gallery-item-video { aspect-ratio: 4/3; }
  .gallery-videos-grid { grid-template-columns: 1fr 1fr; }
  .gallery-photos-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-videos-grid { grid-template-columns: 1fr; }
  .gallery-photos-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE RÉALISATIONS
   ============================================================ */

/* --- Hero réalisations --- */
.real-hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  text-align: center;
}
.real-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(244,199,15,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.real-hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin: 12px 0 20px;
}
.real-hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}
.real-hero-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.real-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.real-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.real-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Bouton réalisations sur index.html --- */
.realisations-cta-band {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.realisations-cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.realisations-cta-band-text h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.realisations-cta-band-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .realisations-cta-band .container { flex-direction: column; text-align: center; }
}

/* --- Filtres --- */
.video-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-btn:hover {
  border-color: var(--orange);
  color: var(--text);
}
.filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #0A0A0A;
  font-weight: 600;
}

/* --- Grille vidéos --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* --- Carte vidéo --- */
.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244,199,15,0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

/* --- Thumbnail --- */
.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: brightness(0.85);
}
.video-card:hover .video-thumb img {
  transform: scale(1.04);
  filter: brightness(0.7);
}
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-play-btn svg {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.6));
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.video-card:hover .video-play-btn {
  opacity: 1;
}
.video-card:hover .video-play-btn svg {
  transform: scale(1);
}
.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

/* --- Infos vidéo --- */
.video-info {
  padding: 18px 20px 22px;
}
.video-cat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.video-cat.clip     { background: rgba(244,199,15,0.15); color: var(--orange); }
.video-cat.event    { background: rgba(123,47,255,0.18); color: #a06fff; }
.video-cat.court    { background: rgba(255,255,255,0.08); color: var(--text-muted); }
.video-cat.commercial { background: rgba(16,185,129,0.15); color: #34d399; }

.video-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}
.video-artist {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Placeholder thumbnail (quand l'image YouTube ne charge pas) --- */
.video-thumb img[src*="METTRE_ID_YOUTUBE"] {
  display: none;
}
.video-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
}
.video-thumb::after {
  content: '▶';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,0.15);
}

/* --- Lightbox --- */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.video-lightbox.open {
  pointer-events: auto;
  opacity: 1;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  cursor: pointer;
}
.lightbox-content {
  position: relative;
  z-index: 1;
  width: min(900px, 94vw);
  transform: scale(0.94);
  transition: transform 0.3s ease;
}
.video-lightbox.open .lightbox-content {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-iframe-wrapper {
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.8);
}
.lightbox-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .header-cta-desktop { display: none; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .hero-content { padding: 100px 0 60px; }
  .btn { padding: 12px 22px; font-size: 0.9rem; }
  .real-hero-stats { gap: 36px; }
  .real-stat-num { font-size: 2rem; }
}
