/**
 * UX ULTIME - Excellence Formation
 * Version la plus optimisée pour la conversion
 */

/* === HERO ULTRA-SIMPLIFIÉ === */
.hero-ultime {
  background: linear-gradient(135deg, #0a0e27 0%, #1e3a8a 50%, #3b82f6 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
}

.hero-ultime::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
  animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.hero-ultime-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.hero-ultime-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-ultime-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.proof-stars,
.proof-students {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.stars {
  font-size: 1.25rem;
}

.reviews-count {
  color: rgba(255, 255, 255, 0.7);
}

.proof-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
}

/* CTA MEGA */
.cta-mega {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  color: #1e293b;
  padding: 1.5rem 2.5rem;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(249, 115, 22, 0.4);
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.cta-mega:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 60px rgba(249, 115, 22, 0.6);
  background: white;
}

.cta-mega-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.cta-mega-text {
  flex: 1;
  text-align: left;
}

.cta-mega-text strong {
  display: block;
  font-size: 1.375rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.375rem;
}

.cta-mega-text small {
  display: block;
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.cta-mega-arrow {
  font-size: 2rem;
  color: #f97316;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.cta-mega:hover .cta-mega-arrow {
  transform: translateX(5px);
}

.hero-alternative {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.phone-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #f97316;
}

.hero-proof {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Header Badge */
.header-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fef3c7;
  color: #92400e;
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.header-badge img {
  width: 24px;
  height: 24px;
}

/* === URGENCY BAR === */
.urgency-bar {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  padding: 1rem 0;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.urgency-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.urgency-icon {
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

.urgency-text {
  font-size: 1rem;
  font-weight: 500;
}

.urgency-text strong {
  font-weight: 700;
  text-decoration: underline;
}

.urgency-cta {
  background: white;
  color: #dc2626;
  padding: 0.625rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.urgency-cta:hover {
  background: #fef2f2;
  transform: scale(1.05);
}

/* === STATS ULTIME === */
.stats-ultime {
  padding: 4rem 0;
  background: white;
}

.stats-ultime-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.stat-ultime {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #f8fafc, white);
  border-radius: 16px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.stat-ultime:hover {
  border-color: #f97316;
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.stat-ultime-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #f97316, #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-ultime-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

.stat-ultime-sublabel {
  font-size: 0.875rem;
  color: #64748b;
}

/* === PROCESS SECTION === */
.process-section {
  background: #f8fafc;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin: 3rem 0;
}

.process-step {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
}

.process-step:hover {
  border-color: #f97316;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.15);
}

.step-number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.step-description {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.step-time {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === WHY ULTIME === */
.why-ultime {
  background: linear-gradient(135deg, #0a0e27 0%, #1e3a8a 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.why-ultime::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.2), transparent 60%);
}

.section-title-white,
.section-subtitle-white {
  color: white;
  position: relative;
  z-index: 1;
}

.section-subtitle-white {
  color: rgba(255, 255, 255, 0.8);
}

.features-ultime {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.feature-ultime-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
}

.feature-ultime-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(249, 115, 22, 0.5);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-ultime-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(249, 115, 22, 0.2);
  line-height: 1;
}

.feature-ultime-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.feature-ultime-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.feature-ultime-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 1rem;
}

/* === FORMATIONS ULTIME === */
.formations-ultime {
  background: white;
}

.formations-ultime-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.formation-ultime-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 20px;
  padding: 0;
  transition: all 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.formation-ultime-card:hover {
  border-color: #f97316;
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.formation-ultime-card.featured {
  border-color: #f97316;
  border-width: 3px;
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2);
}

.formation-ultime-card.featured:hover {
  transform: scale(1.05) translateY(-12px);
}

.formation-ultime-badge {
  background: #1e3a8a;
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

.formation-ultime-badge.popular {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.formation-ultime-card > * {
  padding: 0 2rem;
}

.formation-ultime-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 1.5rem 0 1rem;
  line-height: 1.3;
}

.formation-ultime-description {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.formation-ultime-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.formation-ultime-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1e293b;
  font-weight: 500;
}

.highlight-icon {
  font-size: 1.25rem;
}

.formation-ultime-price {
  background: #f8fafc;
  margin: 1.5rem 0 0;
  padding: 1.5rem 2rem;
  border-top: 2px dashed #e2e8f0;
}

.price-cpf {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.price-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.price-value {
  font-size: 3rem;
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.price-subtitle {
  font-size: 0.875rem;
  color: #64748b;
}

.price-real {
  text-align: center;
  font-size: 0.875rem;
  color: #64748b;
}

.price-real strong {
  color: #1e293b;
  text-decoration: line-through;
  text-decoration-color: #f97316;
}

.formation-ultime-card .btn {
  margin: 1.5rem 2rem 2rem;
  width: calc(100% - 4rem);
}

.live-proof {
  text-align: center;
  padding: 0.75rem;
  background: #fef3c7;
  color: #92400e;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* === VIDEO SECTION === */
.video-section {
  background: #f8fafc;
}

.video-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.video-text {
  padding-right: 2rem;
}

.video-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
  font-size: 1.125rem;
}

.video-benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1e293b;
}

.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.video-placeholder {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-placeholder:hover {
  transform: scale(1.02);
}

.video-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

.play-button-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.video-placeholder:hover .play-button-large {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
}

.video-placeholder iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* === GOOGLE REVIEWS STYLE === */
.google-reviews-section {
  background: #f8f9fa;
  padding: 4rem 0;
}

.google-reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.google-logo {
  font-family: 'Product Sans', 'Poppins', sans-serif;
}

.google-rating-summary {
  text-align: left;
}

.google-rating-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a73e8;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.google-stars-large {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.star-full {
  color: #fbbc04;
}

.star-half {
  color: #fbbc04;
  opacity: 0.5;
}

.google-review-count {
  font-size: 1rem;
  color: #5f6368;
  font-weight: 500;
}

.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.google-review-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.google-review-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.google-review-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
}

.google-avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.google-reviewer-info {
  flex: 1;
}

.google-reviewer-name {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #202124;
  margin-bottom: 0.25rem;
}

.google-stars {
  font-size: 1rem;
  color: #fbbc04;
  letter-spacing: 2px;
}

.google-review-date {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.8125rem;
  color: #70757a;
}

.google-review-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #3c4043;
  margin-bottom: 0.75rem;
}

.google-review-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.google-review-source {
  font-size: 0.75rem;
  color: #70757a;
  font-weight: 500;
}

.google-reviews-cta {
  text-align: center;
  margin-top: 3rem;
}

.google-reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #1a73e8;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}

.google-reviews-btn:hover {
  background: #1557b0;
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.4);
  transform: translateY(-2px);
}

.google-reviews-btn svg {
  width: 20px;
  height: 20px;
}

.google-reviews-footer-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #5f6368;
  font-weight: 500;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .google-reviews-header {
    flex-direction: column;
    text-align: center;
  }
  
  .google-rating-summary {
    text-align: center;
  }
  
  .google-rating-number {
    font-size: 2.5rem;
  }
  
  .google-stars-large {
    font-size: 1.5rem;
  }
  
  .google-reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .google-review-date {
    position: static;
    display: block;
    margin-top: 0.25rem;
  }
}

.link-underline {
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  border-bottom: 2px solid #f97316;
  padding-bottom: 0.25rem;
  transition: all 0.3s ease;
}

.link-underline:hover {
  color: #f97316;
  border-bottom-color: #1e3a8a;
}

/* === CTA ULTIME === */
.cta-ultime {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-ultime::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.2), transparent 70%);
}

.cta-ultime-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.cta-ultime-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-ultime-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  margin-bottom: 3rem;
  opacity: 0.95;
  line-height: 1.6;
}

.guarantees {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.guarantee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9375rem;
}

.guarantee-icon {
  color: #10b981;
  font-size: 1.25rem;
  font-weight: 700;
}

.cta-ultime-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.cta-primary-large {
  display: inline-block;
  background: white;
  color: #1e3a8a;
  padding: 1.5rem 3rem;
  border-radius: 16px;
  font-size: 1.375rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.cta-primary-large:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cta-primary-large small {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.5rem;
  color: #64748b;
}

.cta-secondary-large {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.cta-secondary-large:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fbbf24;
}

/* === PARTNERS === */
.partners-section {
  background: #f8fafc;
  padding: 3rem 0;
  border-top: 1px solid #e2e8f0;
}

.partners-title {
  text-align: center;
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partner-logo {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
}

.trust-badge-item {
  text-align: center;
  padding: 0.5rem 1rem;
}

/* === FOOTER ULTIME === */
.footer-ultime {
  background: #0a0e27;
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-ultime-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-main {
  max-width: 350px;
}

.footer-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 1rem;
}

.footer-ultime p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-trust {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.footer-ultime-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-ultime-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-ultime-col li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.footer-ultime-col li a:hover {
  color: #f97316;
}

.footer-contact-list li {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.social-links-footer {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-links-footer a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links-footer a:hover {
  background: #f97316;
  transform: translateY(-3px);
}

.footer-ultime-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-ultime-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin: 0;
}

/* === STICKY CTA MOBILE === */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  animation: slideUp 0.3s ease-out;
}

.sticky-cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.sticky-cta-text strong {
  display: block;
  color: #1e3a8a;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.125rem;
}

.sticky-cta-text small {
  display: block;
  color: #64748b;
  font-size: 0.75rem;
}

.sticky-cta-btn {
  background: #f97316;
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
  background: #ea580c;
  transform: scale(1.05);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .video-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-ultime-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-main {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .hero-ultime {
    min-height: auto;
    padding: 4rem 0 3rem;
  }
  
  .hero-ultime-title {
    font-size: 2.5rem;
  }
  
  .hero-social-proof {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-mega {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .cta-mega-text {
    text-align: center;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .process-arrow {
    transform: rotate(90deg);
  }
  
  .features-ultime {
    grid-template-columns: 1fr;
  }
  
  .formations-ultime-grid {
    grid-template-columns: 1fr;
  }
  
  .formation-ultime-card.featured {
    transform: none;
  }
  
  .footer-ultime-grid {
    grid-template-columns: 1fr;
  }
  
  .sticky-cta-mobile {
    display: block;
  }
  
  .back-to-top {
    bottom: 6rem;
  }
  
  .stats-ultime-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .urgency-content {
    font-size: 0.875rem;
  }
  
  .urgency-cta {
    width: 100%;
    margin-top: 0.5rem;
  }
  
  .guarantees {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .stats-ultime-grid {
    grid-template-columns: 1fr;
  }
}

/* === STYLES FORMATIONS DÉTAILLÉES === */

/* Sections de formation */
.formation-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid #e2e8f0;
}

.formation-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.formation-list-compact {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.formation-list-compact li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  line-height: 1.6;
  color: #475569;
}

/* Modules détaillés */
.module-detailed {
  background: #f8fafc;
  border-left: 4px solid #3b82f6;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.module-detailed:hover {
  background: #f1f5f9;
  border-left-color: #f97316;
  transform: translateX(5px);
}

.module-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.module-header strong {
  color: #1e3a8a;
  font-size: 1.125rem;
  font-weight: 700;
}

.module-title {
  color: #64748b;
  font-size: 1rem;
  font-weight: 600;
}

.module-content {
  list-style: none;
  padding: 0;
  margin: 0;
}

.module-content li {
  padding: 0.625rem 0 0.625rem 1.75rem;
  position: relative;
  color: #475569;
  line-height: 1.6;
}

.module-content li::before {
  content: '▸';
  position: absolute;
  left: 0.5rem;
  color: #3b82f6;
  font-weight: bold;
}

/* Pédagogie grid simple */
.pedagogy-grid-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pedagogy-item {
  background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.pedagogy-item:hover {
  transform: translateY(-5px);
}

.pedagogy-item strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #fbbf24;
}

.pedagogy-item span {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Formateur */
.trainer-section {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid #3b82f6;
}

.trainer-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.trainer-avatar img {
  border-radius: 50%;
  border: 4px solid #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.trainer-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 0 0 0.25rem 0;
}

.trainer-title {
  color: #3b82f6;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.trainer-stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  padding: 1rem 0;
  border-top: 1px solid #bfdbfe;
  border-bottom: 1px solid #bfdbfe;
}

.trainer-stats span {
  font-size: 0.9375rem;
  color: #475569;
  font-weight: 500;
}

.trainer-bio {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.trainer-testimonial {
  background: white;
  padding: 1rem 1.5rem;
  border-left: 4px solid #f97316;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.trainer-testimonial em {
  display: block;
  color: #1e293b;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.trainer-testimonial span {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Évaluation */
.evaluation-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.eval-item {
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
}

.eval-percent {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.eval-type {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
}

/* Débouchés / Jobs */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.job-item {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.job-item:hover {
  border-color: #3b82f6;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.job-item strong {
  display: block;
  font-size: 1.0625rem;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.job-item span {
  display: block;
  color: #10b981;
  font-weight: 700;
  font-size: 1.125rem;
}

.stats-employment {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #e2e8f0;
}

.stat-box {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fbbf24;
}

.stat-box span {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
}

/* Sessions */
.sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.session-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.session-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.session-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 1rem;
  border-radius: 12px;
  min-width: 80px;
}

.session-month {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.session-day {
  font-size: 1.5rem;
  font-weight: 800;
}

.session-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.session-info strong {
  color: #1e3a8a;
  font-size: 1.0625rem;
  font-weight: 700;
}

.session-info span {
  color: #64748b;
  font-size: 0.9375rem;
}

.session-places {
  color: #f97316 !important;
  font-weight: 700 !important;
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
}

/* Témoignages spécifiques */
.testimonials-specific {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.testimonial-specific-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.testimonial-specific-card:hover {
  border-color: #f97316;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.testimonial-specific-card .testi-rating {
  color: #f97316;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.testimonial-specific-card p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testi-author {
  border-top: 1px solid #e2e8f0;
  padding-top: 1rem;
}

.testi-author strong {
  display: block;
  color: #1e3a8a;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.testi-author span {
  display: block;
  color: #64748b;
  font-size: 0.875rem;
}

/* Accessibilité */
.accessibility-section {
  background: #fef3c7;
  border: 2px solid #fbbf24;
  border-radius: 12px;
  padding: 1.5rem;
}

.accessibility-section h3 {
  color: #92400e;
}

.accessibility-section a {
  color: #1e3a8a;
  font-weight: 600;
  text-decoration: underline;
}

/* Responsive formations détaillées */
@media (max-width: 768px) {
  .trainer-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .trainer-stats {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .sessions-grid {
    grid-template-columns: 1fr;
  }
  
  .evaluation-breakdown {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .jobs-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-employment {
    grid-template-columns: 1fr;
  }
}

/* === ACCORDÉONS FORMATIONS === */
.toggle-program-btn {
  width: 100%;
  background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
  color: white;
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  margin: 2rem 0 1rem 0;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.toggle-program-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.toggle-program-btn.active {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.toggle-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  font-weight: bold;
}

.toggle-program-btn.active .toggle-icon {
  transform: rotate(180deg);
}

.program-accordion {
  animation: slideDown 0.4s ease-out;
  overflow: hidden;
}

.program-accordion[hidden] {
  display: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
    max-height: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 5000px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .toggle-program-btn {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
}

/* === FORMATIONS GRID COMPACT === */
.formations-grid-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.formations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.formation-card-compact {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.formation-card-compact:hover {
  border-color: #3b82f6;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.category-badge {
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.certification-badge {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.urgency-badge {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: white;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.formation-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
  display: block;
}

.formation-card-compact h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-align: center;
}

.formation-intro-short {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 0.9375rem;
}

.formation-quick-specs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: #475569;
  flex-wrap: wrap;
}

.formation-quick-specs span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.formation-highlights {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.formation-highlights li {
  padding: 0.5rem 0;
  color: #374151;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.formation-highlights li::before {
  content: '✓';
  color: #10b981;
  font-weight: 700;
  font-size: 1rem;
}

.card-footer-compact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.price-tag-large {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #10b981;
  line-height: 1;
}

.price-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 600;
}

.btn-block {
  width: 100%;
  text-align: center;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
}

/* === CTA FINAL SECTION === */
.cta-final-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  text-align: center;
}

.cta-final-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-final-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-final-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-final-guarantees {
  font-size: 0.9375rem;
  opacity: 0.8;
}

/* === RESPONSIVE FORMATIONS GRID === */
@media (max-width: 768px) {
  .formations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .formation-card-compact {
    padding: 1.5rem;
  }
  
  .cta-final-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-final-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* === PAGES FORMATIONS DÉDIÉES === */

/* Breadcrumb */
.breadcrumb {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: #6c757d;
}

.breadcrumb-list a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: #1e3a8a;
}

/* Hero Formation */
.formation-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.formation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.formation-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.formation-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.category-badge, .certification-badge, .cpf-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.certification-badge {
    background: #10b981;
    color: white;
}

.cpf-badge {
    background: #f59e0b;
    color: white;
}

.formation-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.formation-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.formation-quick-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.quick-info-item .icon {
    font-size: 1.25rem;
}

.formation-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.formation-hero-image {
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-image-container:hover .hero-overlay {
    opacity: 1;
}

.play-button {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Formation Overview */
.formation-overview {
    padding: 4rem 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.overview-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.overview-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 2rem;
}

.overview-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.highlight-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.highlight-item p {
    color: #6b7280;
    margin: 0;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Programme détaillé */
.formation-programme {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.programme-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.programme-timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #3b82f6, #1e3a8a);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3b82f6;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-content li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #6b7280;
}

.timeline-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* Formateur */
.formation-formateur {
    padding: 4rem 0;
    background: white;
}

.formateur-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.formateur-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.formateur-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.formateur-title {
    font-size: 1.125rem;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 2rem;
}

.formateur-experience {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.experience-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.experience-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.experience-item strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.experience-item p {
    color: #6b7280;
    margin: 0;
}

.formateur-quote {
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #4b5563;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    margin: 0;
}

/* Modalités */
.formation-modalites {
    padding: 4rem 0;
    background: #f8f9fa;
}

.modalites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.modalite-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modalite-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.sessions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sessions-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.sessions-list li:last-child {
    border-bottom: none;
}

.sessions-list strong {
    color: #1f2937;
    font-weight: 600;
}

.sessions-list span {
    color: #6b7280;
    font-size: 0.9rem;
}

.lieu-info strong {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.lieu-info p {
    color: #6b7280;
    margin: 0.25rem 0;
}

.modalite-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modalite-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #6b7280;
}

.modalite-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: 700;
}

/* Certification */
.formation-certification {
    padding: 4rem 0;
    background: white;
}

.certification-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.certification-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.certification-info p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 2rem;
}

.evaluation-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.method-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.method-item p {
    color: #6b7280;
    margin: 0;
}

.certification-badge-large {
    text-align: center;
}

.certification-badge-large img {
    width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.certification-badge-large p {
    font-weight: 600;
    color: #3b82f6;
}

/* Débouchés */
.formation-debouches {
    padding: 4rem 0;
    background: #f8f9fa;
}

.debouches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.metier-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metier-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.metier-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.metier-salary {
    font-size: 1.5rem;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.metier-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.metier-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #6b7280;
}

.metier-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* Témoignages spécifiques */
.formation-temoignages {
    padding: 4rem 0;
    background: white;
}

.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.temoignage-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.temoignage-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.temoignage-header img {
    border-radius: 50%;
    flex-shrink: 0;
}

.temoignage-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.temoignage-info p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.temoignage-rating {
    display: flex;
    gap: 0.25rem;
}

.temoignage-rating .star {
    color: #fbbf24;
    font-size: 1rem;
}

.temoignage-card blockquote {
    font-style: italic;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
    padding: 0;
    border: none;
}

/* Accessibilité */
.formation-accessibilite {
    padding: 4rem 0;
    background: #f8f9fa;
}

.accessibilite-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.accessibilite-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.accessibilite-info p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 2rem;
}

.accessibilite-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.feature-item p {
    color: #6b7280;
    margin: 0;
}

.contact-accessibilite {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-accessibilite h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-accessibilite p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* CTA Final */
.formation-cta-final {
    padding: 4rem 0;
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.cta-icon {
    font-size: 1.25rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-urgency {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fbbf24;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .formation-hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .formation-title {
        font-size: 2rem;
    }
    
    .formation-quick-info {
        grid-template-columns: 1fr;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .formateur-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .certification-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .accessibilite-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
/* === AMÉLIORATIONS UX === */

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    width: 0%;
    transition: width 0.3s ease;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.urgency-icon {
    font-size: 1.25rem;
    animation: wiggle 1s infinite;
}

.urgency-text {
    font-weight: 600;
    font-size: 0.95rem;
}

.urgency-timer {
    font-size: 1.1rem;
    margin-left: auto;
}

/* Live Proof */
.live-proof {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.live-icon {
    font-size: 1.1rem;
    animation: breathe 3s infinite;
}

.live-text {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Hover Effects */
.formation-card-compact:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.timeline-content:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.metier-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.temoignage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes breathe {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Responsive */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .urgency-banner {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .live-proof {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

