/* ========== HOME PAGE — Dark mode luxe ========== */

/* ===== HERO ===== */
.hero {
  background: var(--bg-pure-black);
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 72, 170, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-label {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: var(--text-small);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink-primary);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: var(--leading-tight);
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--pink-primary);
}

.hero-subtitle {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-cta, .hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: var(--text-small);
}

.hero-avatars {
  display: flex;
  align-items: center;
}

.hero-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-pure-black);
  object-fit: cover;
  margin-left: -8px;
}

.hero-avatars img:first-child {
  margin-left: 0;
}

.hero-avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--bg-pure-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--pink-primary);
  margin-left: -8px;
}

.hero-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--bg-pure-black);
  object-fit: cover;
  margin-left: -8px;
}

.hero-avatars img:first-child {
  margin-left: 0;
}

.hero-avatars span:first-child {
  margin-left: 0;
}

@media (max-width: 767px) {
  .hero {
    padding: 110px 0 60px;
  }
  .hero-cta, .hero-ctas {
    flex-direction: column;
  }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary,
  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    width: 100%;
  }
}

/* ===== LOGOS CLIENTS ===== */
.logos-clients {
  background: var(--bg-pure-black);
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.logos-clients .section-label {
  text-align: center;
  font-size: var(--text-small);
  color: var(--text-muted);
  margin-bottom: 32px;
  font-weight: 500;
}

/* ===== NEWSLETTER + MASTERCLASS MINDSET ===== */
.newsletter-section {
  background: var(--bg-pure-black);
  padding: 100px 0 60px;
}

.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-box h2 {
  margin-bottom: 12px;
}

.newsletter-box .subtitle {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.newsletter-box .form-inline {
  margin: 0 auto;
  justify-content: center;
}

.masterclass-mindset {
  padding: 60px 0 100px;
  background: var(--bg-pure-black);
}

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

.mindset-header h3 {
  color: var(--pink-primary);
  margin-bottom: 8px;
}

.mindset-header p {
  color: var(--text-secondary);
}

/* Masterclass gratuites carousel */
.masterclass-gratuites-carousel {
  position: relative;
  overflow: hidden;
}

.masterclass-gratuites-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0;
}

.masterclass-gratuites-track::-webkit-scrollbar {
  display: none;
}

.masterclass-gratuites-track .carousel-card {
  scroll-snap-align: start;
}

.masterclass-gratuites-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

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

.masterclass-gratuites-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-fast);
}

.masterclass-gratuites-dots .dot.active {
  background: var(--pink-primary);
}

/* ===== MASTERCLASS IA PAYANTES ===== */
.masterclass-ia {
  background: var(--bg-primary);
  padding: var(--section-padding);
}

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

.masterclass-ia-grid .carousel-card {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.masterclass-ia-grid .carousel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
  .masterclass-ia-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.masterclass-pricing-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
}

.pricing-pill {
  background: var(--bg-card);
  border-radius: 50px;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing-pill:hover {
  border-color: var(--pink-primary);
}

.pricing-pill.featured {
  border-color: var(--pink-primary);
  background: rgba(255, 72, 170, 0.1);
}

.pricing-pill .price {
  font-weight: 800;
  color: var(--text-primary);
  font-family: var(--font-body);
}

.pricing-pill .label {
  font-size: var(--text-small);
  color: var(--text-muted);
}

.masterclass-note {
  text-align: center;
  color: var(--text-muted);
  font-size: var(--text-small);
  font-style: italic;
  margin-top: 24px;
}

/* ===== SPRINTS ===== */
.sprints-section {
  background: var(--bg-pure-black);
  padding: var(--section-padding);
}

.sprint-cards-home {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

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

.sprint-card-home {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

.sprint-card-home:hover {
  border-color: rgba(255, 72, 170, 0.2);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.sprint-card-home .sprint-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.sprint-card-home h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.sprint-card-home p {
  color: var(--text-muted);
  font-size: var(--text-small);
  line-height: var(--leading-relaxed);
  margin-bottom: 16px;
}

.sprint-card-home .sprint-price {
  color: var(--pink-primary);
  font-weight: 700;
  font-size: var(--text-small);
}

.sprints-bridge {
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 32px;
}

/* ===== NOS PROGRAMMES (slider) ===== */
.programmes-section {
  background: var(--bg-primary);
  padding: var(--section-padding);
}

.programmes-slider {
  max-width: 900px;
  margin: 0 auto;
}

.programmes-slider-viewport {
  overflow: hidden;
  border-radius: 20px;
}

.programmes-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.programme-slide-inner {
  padding: 56px 48px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.programme-slide--leadership {
  background: linear-gradient(135deg, rgba(255, 72, 170, 0.08) 0%, var(--bg-card) 40%, var(--bg-card) 100%);
  border-color: rgba(255, 72, 170, 0.2);
}

.programme-slide--leadership::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 72, 170, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.programme-slide--governance {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.08) 0%, var(--bg-card) 40%, var(--bg-card) 100%);
  border-color: rgba(0, 102, 255, 0.25);
}

.programme-slide--governance .btn-blue {
  color: #0066FF;
  border: 2px solid #0066FF;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: none;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}

.programme-slide--governance .btn-blue:hover {
  background: #0066FF;
  color: #fff;
}

.programme-slide--governance::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.programme-slide-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.programme-slide-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: var(--leading-tight);
  position: relative;
  z-index: 1;
}

.programme-slide-subtitle {
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 560px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.programme-slide-desc {
  color: var(--text-muted);
  font-size: var(--text-small);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.programme-slide-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.programmes-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

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

.programmes-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-fast);
}

.programmes-dots .dot.active {
  background: var(--pink-primary);
  transform: scale(1.2);
}

@media (max-width: 767px) {
  .programme-slide-inner {
    padding: 36px 24px;
  }

  .programme-slide-ctas {
    flex-direction: column;
  }

  .programme-slide-ctas a {
    width: 100%;
    text-align: center;
  }
}

/* ===== Carousel card link style ===== */
.carousel-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.carousel-card-link:hover {
  color: inherit;
}

/* ===== Btn small (inscription) ===== */
.btn-small {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  background: var(--pink-primary);
  color: white;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.btn-small:hover {
  background: var(--pink-hover);
  box-shadow: var(--shadow-pink);
}

/* ===== Masterclass image placeholders ===== */
.carousel-card-image--placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.placeholder--ppc {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
}

.placeholder--weber {
  background: linear-gradient(135deg, #2d1b4e 0%, #1a1a2e 40%, #162447 100%);
}

.placeholder--seedance {
  background: linear-gradient(135deg, #1a0a2e 0%, #0d1b2a 40%, #1b2838 100%);
}

.placeholder-sub {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  letter-spacing: 0.05em;
}

.placeholder-content {
  text-align: center;
  z-index: 1;
  padding: 20px;
}

.placeholder-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-primary);
  font-weight: 700;
  margin-bottom: 8px;
}

.placeholder-title {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.2;
  color: #fff;
}

.carousel-card-image--placeholder::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 72, 170, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ===== B2B / ENTREPRISES ===== */
.b2b-section {
  background: var(--bg-pure-black);
  padding: var(--section-padding);
}

.b2b-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

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

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

.b2b-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-base);
}

.b2b-card:hover {
  border-color: rgba(255, 72, 170, 0.15);
}

.b2b-card .b2b-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.b2b-card h4 {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 8px;
}

.b2b-card p {
  color: var(--text-muted);
  font-size: var(--text-small);
  line-height: var(--leading-relaxed);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section, .testimonials {
  background: var(--bg-primary);
  padding: var(--section-padding);
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.testimonials-carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0;
}

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

.testimonials-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

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

.testimonials-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-fast);
}

.testimonials-dots .dot.active {
  background: var(--pink-primary);
}

/* ===== MEDIA / YOUTUBE CAROUSEL ===== */
.media-section {
  background: var(--bg-pure-black);
  padding: var(--section-padding);
}

.media-carousel {
  position: relative;
  overflow: hidden;
}

.media-carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0;
}

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

.media-carousel-item {
  flex: 0 0 calc(50% - 12px);
  scroll-snap-align: start;
}

@media (max-width: 767px) {
  .media-carousel-item {
    flex: 0 0 90%;
  }
}

.media-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--bg-card);
}

.media-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.media-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

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

.media-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-fast);
}

.media-dots .dot.active {
  background: var(--pink-primary);
}

/* ===== GARANTIE ===== */
.garantie-section {
  background: var(--pink-bg);
  padding: 80px 0;
  text-align: center;
}

.garantie-section h2 {
  color: var(--text-on-pink);
  font-style: italic;
  margin-bottom: 16px;
}

.garantie-section p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--leading-relaxed);
}

/* ===== NOS ÉVÉNEMENTS ===== */
.events-section {
  background: var(--bg-pure-black);
  padding: var(--section-padding);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

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

.event-card {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
  color: inherit;
  display: block;
}

.event-card:hover {
  border-color: rgba(255, 72, 170, 0.15);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.event-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #1a1a1a;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.event-card:hover .event-image img {
  transform: scale(1.05);
}

.event-card-body {
  padding: 28px;
}

.event-card-body .tag {
  margin-bottom: 16px;
}

.event-card-body h3 {
  font-size: var(--text-h3);
  color: var(--text-primary);
  margin-bottom: 12px;
}

.event-description {
  color: var(--text-secondary);
  font-size: var(--text-body);
  line-height: var(--leading-relaxed);
  margin-bottom: 20px;
}

.event-format {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event-format-label {
  font-size: var(--text-tag);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink-primary);
  font-weight: 700;
}

.event-format-value {
  color: var(--text-muted);
  font-size: var(--text-small);
}

/* ===== ASK & SOLVE ===== */
.asknsolve-section {
  background: var(--bg-pure-black);
  padding: var(--section-padding);
  text-align: center;
}

.asknsolve-section h2 {
  margin-bottom: 12px;
}

.asknsolve-section .subtitle {
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== LEGACY newsletter (reused across pages) ===== */
.newsletter {
  padding: 80px 0;
  background: var(--bg-pure-black);
}

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

.newsletter-content h2 {
  color: var(--text-primary);
  margin-bottom: 12px;
}

.newsletter-content .subtitle {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: var(--leading-relaxed);
}

.newsletter .form-inline {
  margin: 0 auto 20px;
}

.newsletter .social-proof {
  color: var(--text-muted);
  font-size: var(--text-small);
}
