/* ============================================
   ODYN - Custom Styles
   Pricing "Coming Soon" Veiled Section
   
   Couleurs Odyn :
   - Jaune principal : #F7B500
   - Jaune hover : #FFD000
   - Jaune clair : rgba(247, 181, 0, 0.15)
   - Jaune bordure : rgba(247, 181, 0, 0.5)
   ============================================ */

/* Container principal */
.pricing-veiled-container {
  position: relative;
  width: 100%;
  min-height: 450px;
}

/* Grille des cartes floutées */
.pricing-veiled-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  filter: blur(6px);
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 991px) {
  .pricing-veiled-cards {
    grid-template-columns: 1fr;
  }
}

/* Carte individuelle */
.pricing-veiled-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 2rem;
  min-height: 380px;
}

/* Carte mise en avant (Pro) - JAUNE ODYN */
.pricing-veiled-card.is-featured {
  background: linear-gradient(145deg, rgba(247,181,0,0.15) 0%, rgba(247,181,0,0.05) 100%);
  border-color: rgba(247,181,0,0.3);
}

/* Header de carte */
.pricing-veiled-card-header {
  margin-bottom: 1.5rem;
}

.pricing-veiled-card-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}

.pricing-veiled-card-price {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Features placeholder */
.pricing-veiled-card-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pricing-veiled-feature {
  height: 1rem;
  background: rgba(255,255,255,0.1);
  border-radius: 0.25rem;
  width: 80%;
}

.pricing-veiled-feature:nth-child(2) { width: 65%; }
.pricing-veiled-feature:nth-child(3) { width: 90%; }
.pricing-veiled-feature:nth-child(4) { width: 75%; }
.pricing-veiled-feature:nth-child(5) { width: 60%; }

/* ============================================
   Overlay "Coming Soon"
   ============================================ */

.pricing-coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, transparent 70%);
}

/* Icône cadenas - JAUNE ODYN */
.pricing-coming-soon-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(247,181,0,0.2) 0%, rgba(255,208,0,0.2) 100%);
  border: 2px solid rgba(247,181,0,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  animation: pulse-glow-yellow 3s ease-in-out infinite;
}

@keyframes pulse-glow-yellow {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(247,181,0,0.3), 0 0 40px rgba(247,181,0,0.1);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 30px rgba(247,181,0,0.5), 0 0 60px rgba(247,181,0,0.2);
    transform: scale(1.05);
  }
}

.pricing-coming-soon-icon svg {
  width: 36px;
  height: 36px;
  color: rgba(255,255,255,0.9);
}

/* Badge "En préparation" - JAUNE ODYN */
.pricing-coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, rgba(247,181,0,0.15) 0%, rgba(255,208,0,0.15) 100%);
  border: 1px solid rgba(247,181,0,0.3);
  border-radius: 2rem;
  margin-bottom: 1rem;
}

/* Point clignotant - JAUNE ODYN */
.pricing-coming-soon-badge-dot {
  width: 8px;
  height: 8px;
  background: #F7B500;
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.pricing-coming-soon-badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

/* Titre et sous-titre */
.pricing-coming-soon-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  text-align: center;
}

.pricing-coming-soon-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  max-width: 400px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Bouton CTA - JAUNE ODYN */
.pricing-waitlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, #F7B500 0%, #FFD000 100%);
  border: none;
  border-radius: 0.5rem;
  color: #0e121b;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pricing-waitlist-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(247,181,0,0.4);
  color: #0e121b;
}

.pricing-waitlist-btn svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   Section Témoignages - Étoiles jaunes
   ============================================ */

.testimonial-rating-icon {
  color: #F7B500;
}

.testimonial-star-icon {
  color: #F7B500;
}
