/**
 * 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;
}

/* === TESTIMONIALS ULTIME === */
.testimonials-ultime {
  background: white;
}

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

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

.testimonial-ultime-card:hover {
  border-color: #f97316;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

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

.testi-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #f97316;
  object-fit: cover;
}

.testi-info {
  flex: 1;
}

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

.testi-info span {
  display: block;
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.375rem;
}

.verified-badge {
  display: inline-block;
  background: #10b981;
  color: white;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.testi-rating {
  font-size: 1.125rem;
  color: #f97316;
  white-space: nowrap;
}

.testi-text {
  color: #1e293b;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.testi-result {
  background: #f0fdf4;
  color: #065f46;
  padding: 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

.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;
  }
}

