/* ==========================================================================
   Feuille de style de surcouche Premium pour EXECUTIVE AI COACHING VIP
   Exceptions Training - Offre VIP
   ========================================================================== */

:root {
  --vip-primary: #527B8C;
  --vip-dark-navy: #0E104B;
  --vip-dark: #121212;
  --vip-dark-2: #1D1D1D;
  --vip-gold: #c5a059;
  --vip-gold-glow: rgba(197, 160, 89, 0.2);
  --vip-gold-light: #f3ebd6;
  --vip-text-gray: #74787C;
  --vip-text-light: #e0e0e0;
  --vip-white: #ffffff;
  --vip-glass-bg: rgba(255, 255, 255, 0.05);
  --vip-glass-border: rgba(255, 255, 255, 0.1);
  --vip-glass-shadow: rgba(0, 0, 0, 0.3);
  --vip-font-family: 'Saira Semi Condensed', sans-serif;
}

/* --- Typographie et Réinitialisation de base --- */
.vip-page {
  font-family: var(--vip-font-family);
  color: var(--vip-text-gray);
  overflow-x: hidden;
}

.vip-page h1, 
.vip-page h2, 
.vip-page h3, 
.vip-page h4, 
.vip-page h5, 
.vip-page h6 {
  font-family: var(--vip-font-family);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--vip-dark-navy);
}

.text-gold {
  color: var(--vip-gold) !important;
}

.bg-dark-executive {
  background-color: var(--vip-dark-2);
  color: var(--vip-white);
}

/* --- Section Hero VIP --- */
.vip-hero {
  position: relative;
  padding: 160px 0 100px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--vip-white);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.vip-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 16, 75, 0.94) 0%, rgba(18, 18, 18, 0.88) 100%);
  z-index: 1;
}

.vip-hero .container {
  position: relative;
  z-index: 2;
}

.vip-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid var(--vip-gold);
  border-radius: 50px;
  color: var(--vip-gold);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  animation: pulseGold 2s infinite;
}

.vip-hero-title {
  font-size: 48px;
  line-height: 1.15;
  color: var(--vip-white) !important;
  margin-bottom: 20px;
}

.vip-hero-title span {
  background: linear-gradient(90deg, #ffffff 0%, var(--vip-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vip-hero-subtitle {
  font-size: 19px;
  line-height: 1.6;
  color: var(--vip-text-light);
  margin-bottom: 40px;
  max-width: 680px;
}

@keyframes pulseGold {
  0% {
    box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(197, 160, 89, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
  }
}

/* --- Metrics Hero Bar --- */
.vip-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}

.vip-metric-card {
  background: var(--vip-glass-bg);
  border: 1px solid var(--vip-glass-border);
  backdrop-filter: blur(10px);
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.vip-metric-card:hover {
  transform: translateY(-5px);
  border-color: var(--vip-gold);
  background: rgba(255, 255, 255, 0.08);
}

.vip-metric-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--vip-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.vip-metric-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--vip-text-light);
  font-weight: 500;
}

/* --- Section Section Header --- */
.vip-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.vip-section-title .section-subtitle {
  color: var(--vip-gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.vip-section-title .section-main-title {
  font-size: 38px;
  color: var(--vip-dark-navy);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.vip-section-title .section-main-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--vip-gold);
}

.vip-section-title.light .section-main-title {
  color: var(--vip-white);
}

/* --- Section Le Constat --- */
.constat-card {
  background: var(--vip-white);
  border: 1px solid #f0f0f0;
  border-left: 4px solid var(--vip-gold);
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.constat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border-left-color: var(--vip-dark-navy);
}

.constat-icon {
  font-size: 28px;
  color: var(--vip-gold);
  margin-bottom: 20px;
}

.constat-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--vip-dark-navy);
}

.constat-card p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* --- Section Formule Exclusive --- */
.exclusive-formula-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.formula-card {
  background: var(--vip-white);
  border: 1px solid #EDEDED;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.formula-card:hover {
  border-color: var(--vip-gold);
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(197, 160, 89, 0.15);
}

.formula-check {
  width: 48px;
  height: 48px;
  background-color: var(--vip-gold-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--vip-gold);
  font-size: 18px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.formula-card:hover .formula-check {
  background-color: var(--vip-gold);
  color: var(--vip-white);
}

.formula-card h4 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--vip-dark-navy);
}

.formula-card p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 0;
}

/* --- Section Programme (5 Cartes VIP) --- */
.program-card {
  background: var(--vip-white);
  border: 1px solid #EDEDED;
  padding: 40px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--vip-dark-navy) 0%, var(--vip-gold) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.program-card:hover::before {
  transform: scaleX(1);
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.program-number {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(197, 160, 89, 0.12);
  line-height: 1;
}

.program-icon {
  font-size: 32px;
  color: var(--vip-gold);
  margin-bottom: 25px;
}

.program-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--vip-dark-navy);
}

.program-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.program-benefit {
  background-color: var(--vip-gold-light);
  border-left: 3px solid var(--vip-gold);
  padding: 12px 15px;
  font-size: 14px;
  color: var(--vip-dark-navy);
  font-weight: 600;
}

/* --- Section Pourquoi Choisir Ce Coaching --- */
.why-vip-wrapper {
  background: linear-gradient(135deg, #0e104b 0%, #171717 100%);
  color: var(--vip-white);
  padding: 100px 0;
}

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--vip-gold);
  transform: translateY(-5px);
}

.why-card h4 {
  color: var(--vip-gold);
  font-size: 18px;
  margin-bottom: 12px;
}

.why-card p {
  color: var(--vip-text-light);
  font-size: 14.5px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* --- Section Ce Que Vous Allez Obtenir --- */
.outcome-card {
  display: flex;
  gap: 20px;
  background: var(--vip-white);
  border: 1px solid #f0f0f0;
  padding: 25px;
  height: 100%;
  transition: all 0.3s ease;
}

.outcome-card:hover {
  border-color: var(--vip-gold);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.outcome-bullet {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background-color: var(--vip-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vip-gold);
  font-size: 14px;
}

.outcome-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--vip-dark-navy);
}

.outcome-card p {
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 0;
}

/* --- Section Processus --- */
.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: "→";
  position: absolute;
  top: 35px;
  right: -15%;
  font-size: 24px;
  color: var(--vip-gold);
  font-weight: 300;
}

.process-step.last-step::after {
  display: none;
}

.process-number {
  width: 70px;
  height: 70px;
  background: var(--vip-dark-navy);
  border: 2px solid var(--vip-gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--vip-gold);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.process-step:hover .process-number {
  background: var(--vip-gold);
  color: var(--vip-white);
  transform: scale(1.1);
}

.process-step h4 {
  font-size: 17px;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 0;
  padding: 0 10px;
}

/* --- Section Tarification --- */
.pricing-card-vip {
  max-width: 650px;
  margin: 0 auto;
  background: var(--vip-white);
  border: 2px solid var(--vip-gold);
  box-shadow: 0 20px 50px rgba(197, 160, 89, 0.15);
  position: relative;
  overflow: hidden;
}

.pricing-header-vip {
  background-color: var(--vip-dark-navy);
  color: var(--vip-white);
  padding: 40px;
  text-align: center;
}

.pricing-header-vip h3 {
  color: var(--vip-white);
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.pricing-price-tag {
  font-size: 60px;
  font-weight: 800;
  color: var(--vip-gold);
  margin-top: 15px;
  line-height: 1;
}

.pricing-price-tag span {
  font-size: 20px;
  font-weight: 500;
  color: var(--vip-white);
}

.pricing-body-vip {
  padding: 40px;
}

.pricing-features-list {
  margin-bottom: 35px;
}

.pricing-features-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--vip-dark);
}

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

.pricing-features-list li i {
  color: var(--vip-gold);
  margin-right: 15px;
  font-size: 18px;
}

.pricing-btn-wrap {
  text-align: center;
}

.pricing-badge-top {
  position: absolute;
  top: 25px;
  right: -50px;
  background: var(--vip-gold);
  color: var(--vip-white);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 50px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Section FAQ --- */
.faq-vip-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-vip-item {
  background-color: var(--vip-white);
  border: 1px solid #ECECEC;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.faq-vip-item:hover {
  border-color: var(--vip-gold);
}

.faq-vip-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  color: var(--vip-dark-navy);
  user-select: none;
}

.faq-vip-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 25px;
}

.faq-vip-answer-content {
  padding-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--vip-text-gray);
}

.faq-vip-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
  color: var(--vip-gold);
}

.faq-vip-item.active {
  border-color: var(--vip-gold);
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.faq-vip-item.active .faq-vip-icon {
  transform: rotate(180deg);
}

.faq-vip-item.active .faq-vip-answer {
  max-height: 300px; /* Adjust dynamically */
}

/* --- Section CTA Formulaire Final --- */
.vip-cta-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--vip-dark-2);
  color: var(--vip-white);
}

.vip-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 16, 75, 0.96) 0%, rgba(23, 23, 23, 0.96) 100%);
  z-index: 1;
}

.vip-cta-section .container {
  position: relative;
  z-index: 2;
}

.vip-form-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.vip-form-title {
  color: var(--vip-white) !important;
  font-size: 22px;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}

.vip-form-group {
  margin-bottom: 20px;
}

.vip-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--vip-gold);
  margin-bottom: 8px;
}

.vip-form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 14px 18px;
  color: var(--vip-white);
  font-size: 15px;
  transition: all 0.3s ease;
  border-radius: 0;
}

.vip-form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--vip-gold);
  box-shadow: 0 0 8px rgba(197, 160, 89, 0.2);
  outline: none;
}

select.vip-form-control option {
  background: var(--vip-dark-2);
  color: var(--vip-white);
}

.vip-btn-submit {
  width: 100%;
  background: var(--vip-gold);
  color: var(--vip-white) !important;
  border: 1px solid var(--vip-gold);
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px;
  font-size: 16px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.vip-btn-submit:hover {
  background: transparent;
  color: var(--vip-gold) !important;
}

/* --- Modales et Toast de notification de succès --- */
.success-banner {
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid var(--vip-gold);
  color: var(--vip-gold);
  padding: 25px 30px;
  margin-bottom: 35px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.success-banner i {
  font-size: 32px;
  margin-top: 2px;
}

.success-banner h5 {
  color: var(--vip-gold);
  margin-bottom: 12px;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.success-banner p {
  margin-bottom: 0;
  font-size: 15px;
  color: var(--vip-text-light);
  line-height: 1.6;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1199.98px) {
  .vip-hero-title {
    font-size: 40px;
  }
  .exclusive-formula-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .vip-hero {
    padding: 140px 0 60px 0;
    text-align: center;
  }
  .vip-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .vip-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step::after {
    display: none;
  }
  .process-step {
    margin-bottom: 40px;
  }
  .process-step.last-step {
    margin-bottom: 0;
  }
  .vip-form-wrapper {
    margin-top: 50px;
  }
}

@media (max-width: 767.98px) {
  .vip-hero-title {
    font-size: 32px;
  }
  .vip-section-title .section-main-title {
    font-size: 28px;
  }
  .vip-metrics-grid {
    grid-template-columns: 1fr;
  }
  .exclusive-formula-grid {
    grid-template-columns: 1fr;
  }
  .pricing-body-vip {
    padding: 25px;
  }
  .pricing-header-vip {
    padding: 30px 20px;
  }
  .pricing-price-tag {
    font-size: 48px;
  }
}
