/* ============================================================
   GOOGLE FONTS INTEGRATION
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ===================== DESIGN TOKENS ===================== */
:root {
  --black:        #07080a;
  --dark:         #0d0f12;
  --dark2:        #13171f;
  --dark3:        #181e29;
  --white:        #ffffff;
  --off-white:    #f3f4f6;
  --cream:        #fbfbfb;
  --gold:         #d4af37;
  --gold-light:   #f6e076;
  --gold-dark:    #aa841d;
  --gold-glow:    rgba(212, 175, 55, 0.15);
  --red:          #c0392b;
  --red-light:    #e74c3c;
  --red-bg:       rgba(192, 57, 43, 0.15);
  --red-border:   rgba(192, 57, 43, 0.4);
  --green:        #1b7340;
  --green-bg:     #0c2e1b;
  --green-light:  #2ecc71;
  --warn-bg:      #1c1607;
  --warn-border:  rgba(212, 175, 55, 0.25);
  --text-primary: #f3f4f6;
  --text-muted:   #9ca3af;
  --border:       rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --section-pad:  90px 24px;
  --max-w:        860px;
  --radius:       16px;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--dark);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.1;
}

h2 {
  font-size: clamp(26px, 4.5vw, 40px);
  line-height: 1.2;
}

h3 {
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.3;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  color: rgba(243, 244, 246, 0.8);
  text-wrap: pretty;
}

strong {
  color: var(--white);
}

/* ===================== UTILITIES ===================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold {
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.red-text {
  color: var(--red-light);
}

.green-text {
  color: var(--green-light);
}

.muted {
  color: var(--text-muted);
}

/* ===================== URGENCY BAR ===================== */
.urgency-bar {
  background: linear-gradient(90deg, var(--red) 0%, #d35400 100%);
  color: var(--white);
  text-align: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.urgency-bar span {
  font-weight: 800;
  font-size: 15px;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}

/* ===================== HERO SECTION ===================== */
.hero {
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.08) 0%, rgba(13, 15, 18, 0) 70%),
              linear-gradient(160deg, #07090e 0%, var(--dark) 60%, #0d1a0e 100%);
  padding: 80px 24px 90px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(5px);
}

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(243, 244, 246, 0.85);
  max-width: 680px;
  margin: 0 auto 36px;
  font-weight: 400;
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  margin-bottom: 40px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(243, 244, 246, 0.9);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--border);
  white-space: nowrap;
}

.hero-meta-icon {
  font-size: 16px;
}

.hero-img-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-coach-photo {
  width: 220px;
  height: 220px;
  border-radius: 16px;
  border: 3px solid var(--gold);
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.25);
  background: var(--dark2);
  transition: var(--transition);
  max-width: 100%;
}

.hero-coach-photo:hover {
  transform: scale(1.03) rotate(1deg);
  border-color: var(--gold-light);
}

.seats-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red-bg);
  border: 1px solid var(--red-border);
  color: var(--red-light);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.seats-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red-light);
  box-shadow: 0 0 10px var(--red-light);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(231, 76, 60, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

/* ===================== CTA BUTTONS ===================== */
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--black);
  font-size: 18px;
  font-weight: 800;
  padding: 18px 48px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: var(--transition);
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  animation: cta-pulse-glow 2.5s infinite;
}

.cta-btn-large {
  font-size: 20px;
  padding: 20px 56px;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: 0.5s;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  color: var(--black);
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:active {
  transform: translateY(-1px);
}

@keyframes cta-pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.cta-btn .cta-sub {
  display: block;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-secondary {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
}

.cta-wrap {
  text-align: center;
}

/* ===================== PAIN SECTION ===================== */
.pain-section {
  background-color: var(--black);
  padding: var(--section-pad);
  position: relative;
}

.section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 16px;
}

.pain-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 56px;
  font-size: 18px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto 48px;
}

.pain-card {
  background: var(--dark2);
  border: 1px solid rgba(192, 57, 43, 0.15);
  border-left: 5px solid var(--red);
  border-radius: 4px var(--radius) var(--radius) 4px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.pain-card:hover {
  transform: translateY(-3px);
  border-color: rgba(192, 57, 43, 0.4);
  box-shadow: 0 10px 25px rgba(192, 57, 43, 0.08);
  background: var(--dark3);
}

.pain-icon {
  font-size: 24px;
  flex-shrink: 0;
  background: rgba(192, 57, 43, 0.1);
  padding: 6px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.pain-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================== TRANSFORM SECTION ===================== */
.transform-section {
  background: linear-gradient(180deg, var(--green-bg) 0%, rgba(13, 15, 18, 1) 100%);
  padding: var(--section-pad);
  border-top: 1px solid rgba(46, 204, 113, 0.15);
  border-bottom: 1px solid rgba(46, 204, 113, 0.1);
}

.transform-section .section-label {
  color: var(--green-light);
}

.transform-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.transform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto 56px;
}

.transform-card {
  background: rgba(27, 115, 64, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.12);
  border-left: 5px solid var(--green-light);
  border-radius: 4px var(--radius) var(--radius) 4px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.transform-card:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 204, 113, 0.3);
  box-shadow: 0 10px 25px rgba(46, 204, 113, 0.08);
  background: rgba(27, 115, 64, 0.16);
}

.transform-icon {
  font-size: 24px;
  flex-shrink: 0;
  background: rgba(46, 204, 113, 0.1);
  padding: 6px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transform-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.transform-desc {
  font-size: 14px;
  color: rgba(243, 244, 246, 0.75);
  line-height: 1.6;
}

/* ===================== CURRICULUM SECTION (DARK — MATCHES SITE) ===================== */
.curriculum-section-cream {
  background-color: var(--dark2);
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.curriculum-section-cream .section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.curriculum-section-cream h2 {
  text-align: center;
  margin-bottom: 16px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 4.5vw, 40px);
  font-weight: 800;
}

.curriculum-section-cream .section-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 48px;
  font-size: 18px;
}

.curriculum-cards-wrap {
  max-width: var(--max-w);
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.curriculum-card {
  background: var(--dark3);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  gap: 32px;
  align-items: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.curriculum-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 175, 55, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.curriculum-card-hour {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 32px;
  flex-shrink: 0;
}

.curriculum-card-hour .hour-lbl {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.curriculum-card-hour .hour-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.curriculum-card-content {
  flex-grow: 1;
}

.curriculum-card-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.01em;
}

.curriculum-card-desc {
  font-size: 14.5px;
  color: rgba(243, 244, 246, 0.7);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .curriculum-card {
    padding: 22px 24px;
    gap: 24px;
  }
  .curriculum-card-hour {
    padding-right: 24px;
  }
}

@media (max-width: 640px) {
  .curriculum-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 14px;
  }
  .curriculum-card-hour {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    padding-right: 0;
    padding-bottom: 10px;
    justify-content: flex-start;
  }
  .curriculum-card-hour .hour-num {
    font-size: 28px;
  }
}

/* ===================== COACH SECTION ===================== */
.coach-section {
  background-color: var(--black);
  padding: var(--section-pad);
}

.coach-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
}

.coach-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.coach-photo {
  width: 340px;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  border: 4px solid var(--gold);
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  background: var(--dark2);
  transition: var(--transition);
  max-width: 100%;
}

.coach-photo:hover {
  transform: scale(1.03);
  border-color: var(--gold-light);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
}

.coach-tag {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  border-radius: 100px;
  text-transform: uppercase;
  white-space: nowrap;
}

.coach-section .section-label {
  text-align: left;
  color: var(--gold);
}

.coach-section h2 {
  margin-bottom: 20px;
  text-align: left;
}

.coach-bio {
  color: rgba(243, 244, 246, 0.8);
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.stat-num {
  font-size: 28px;
  font-weight: 950;
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===================== SOCIAL PROOF ===================== */
.proof-section {
  background: var(--dark3);
  padding: var(--section-pad);
}

.proof-section .section-label {
  color: var(--gold);
}

.proof-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

.proof-numbers {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.proof-num-item {
  text-align: center;
}

.proof-num {
  font-size: 38px;
  font-weight: 900;
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  line-height: 1.1;
}

.proof-num-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto 56px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.15);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 15px;
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.testimonial-text {
  font-size: 14.5px;
  color: rgba(243, 244, 246, 0.85);
  margin-bottom: 24px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-light);
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.author-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* Simulated Gallery / Whatsapp Placeholder styling */
.whatsapp-placeholder {
  text-align: center;
  margin-bottom: 56px;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.015);
  border-radius: var(--radius);
  border: 2px dashed rgba(255, 255, 255, 0.1);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  transition: var(--transition);
}

.whatsapp-placeholder:hover {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

/* ===================== FOR WHOM SECTION ===================== */
.for-whom-section {
  background-color: var(--dark);
  padding: var(--section-pad);
}

.for-whom-section .section-label {
  color: var(--gold);
}

.for-whom-section h2 {
  text-align: center;
  margin-bottom: 56px;
}

.for-whom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 860px;
  margin: 0 auto 56px;
}

.for-list {
  border-radius: var(--radius);
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.for-list:hover {
  transform: translateY(-2px);
}

.for-list.yes {
  background: rgba(27, 115, 64, 0.05);
  border: 1px solid rgba(46, 204, 113, 0.15);
}

.for-list.no {
  background: rgba(192, 57, 43, 0.04);
  border: 1px solid rgba(192, 57, 43, 0.15);
}

.for-list-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
}

.for-list.yes .for-list-title {
  color: var(--green-light);
}

.for-list.no .for-list-title {
  color: var(--red-light);
}

.for-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.for-list ul li {
  font-size: 14.5px;
  color: rgba(243, 244, 246, 0.8);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5;
}

.for-list ul li .check {
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 2px;
}

/* ===================== VALUE / PRICING SECTION ===================== */
.value-section {
  background: radial-gradient(circle at bottom, rgba(212, 175, 55, 0.05) 0%, var(--warn-bg) 100%);
  border-top: 1px solid var(--warn-border);
  border-bottom: 1px solid var(--warn-border);
  padding: var(--section-pad);
}

.value-section .section-label {
  color: var(--gold-light);
}

.value-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.value-table {
  max-width: 580px;
  margin: 0 auto 40px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.value-row:hover {
  background: rgba(212, 175, 55, 0.02);
}

.value-row:last-child {
  border-bottom: none;
}

.value-item-name {
  font-size: 14.5px;
  color: rgba(243, 244, 246, 0.9);
  font-weight: 500;
}

.value-item-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-light);
  font-family: 'Outfit', sans-serif;
}

.value-total {
  max-width: 580px;
  margin: 0 auto 36px;
  text-align: center;
  padding: 24px;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius);
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.05);
}

.total-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.total-original {
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 6px;
}

.total-new {
  font-size: 46px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.total-note {
  font-size: 13px;
  color: rgba(243, 244, 246, 0.6);
  margin-top: 10px;
}

.value-guarantee {
  max-width: 540px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 13px;
  color: rgba(243, 244, 246, 0.55);
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
  padding: 12px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

/* ===================== FAQ SECTION ===================== */
.faq-section {
  background-color: var(--dark2);
  padding: var(--section-pad);
}

.faq-section .section-label {
  color: var(--gold);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 56px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto 56px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.faq-q {
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  user-select: none;
  font-family: 'Outfit', sans-serif;
  transition: var(--transition);
}

.faq-q::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-a {
  padding: 0 28px 22px;
  font-size: 14.5px;
  color: rgba(243, 244, 246, 0.7);
  line-height: 1.7;
  display: none;
  border-top: 1px solid transparent;
  animation: slideDown 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-item.open {
  border-color: rgba(212, 175, 55, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.faq-item.open .faq-q {
  color: var(--gold-light);
}

.faq-item.open .faq-q::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item.open .faq-a {
  display: block;
  border-top-color: rgba(255, 255, 255, 0.04);
}

/* ===================== FINAL CTA WITH COUNTDOWN ===================== */
.final-cta-section {
  background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
  padding: 90px 24px;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
}

.final-cta-section .section-label {
  color: var(--gold);
}

.final-cta-section h2 {
  margin-bottom: 16px;
}

.countdown-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: nowrap;
}

.countdown-block {
  text-align: center;
  min-width: 72px;
}

.countdown-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-family: 'Outfit', sans-serif;
  font-variant-numeric: tabular-nums;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 14px 18px;
  border-radius: 12px;
  display: block;
  min-width: 80px;
  box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.05);
}

.countdown-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.countdown-sep {
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  padding-top: 14px;
  font-family: 'Outfit', sans-serif;
}

/* ===================== FOOTER ===================== */
footer {
  background: #050608;
  padding: 48px 24px 80px; /* Leave space for mobile sticky bar */
  text-align: center;
  border-top: 1px solid var(--border);
}

footer p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.6;
}

footer p strong {
  color: rgba(255, 255, 255, 0.8);
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

footer a:hover {
  color: var(--gold);
  border-bottom-color: rgba(212, 175, 55, 0.3);
}

/* ===================== STICKY BOTTOM BAR (Mobile) ===================== */
.sticky-bottom {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(7, 8, 10, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding: 14px 24px;
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 640px) {
  .sticky-bottom {
    display: flex;
  }
  footer {
    padding-bottom: 100px; /* ensure content isn't blocked by bar */
  }
}

.sticky-price {
  font-size: 13px;
  color: var(--white);
}

.sticky-price strong {
  font-size: 22px;
  color: var(--gold);
  display: block;
  line-height: 1.1;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sticky-btn {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--black);
  font-size: 14px;
  font-weight: 800;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
  transition: var(--transition);
}

.sticky-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.coach-host-info {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.coach-host-info strong {
  color: var(--white);
}

.pain-summary {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-top: 24px;
}

.sticky-price span {
  color: var(--text-muted);
  font-size: 11px;
  display: block;
}

/* ===================== RESPONSIVE BREAKPOINTS ===================== */
@media (max-width: 860px) {
  .hero-meta {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 70px 20px;
  }
  
  .coach-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .coach-section .section-label {
    text-align: center;
  }
  
  .coach-section h2 {
    text-align: center;
  }
  
  .stats-grid {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .curriculum-grid {
    grid-template-columns: 1fr;
  }
  
  .for-whom-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .proof-numbers {
    gap: 28px;
    padding: 24px 16px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .countdown-wrap {
    gap: 8px;
  }
  
  .countdown-block {
    min-width: 60px;
  }

  .countdown-num {
    font-size: 28px;
    min-width: 60px;
    padding: 8px 10px;
    border-radius: 8px;
  }
  
  .countdown-sep {
    font-size: 22px;
    padding-top: 8px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-card {
    padding: 12px 8px;
  }

  .stat-num {
    font-size: 22px;
  }

  .stat-label {
    font-size: 10px;
  }
  
  .hero-meta {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .hero-meta-item {
    width: 100%;
    justify-content: center;
  }
  
  .countdown-wrap {
    gap: 4px;
  }
  
  .countdown-block {
    min-width: 50px;
  }

  .countdown-num {
    font-size: 22px;
    min-width: 50px;
    padding: 8px 6px;
    border-radius: 6px;
  }
  
  .countdown-sep {
    font-size: 18px;
    padding-top: 8px;
  }

  .countdown-label {
    font-size: 9px;
    margin-top: 4px;
  }

  .cta-btn {
    padding: 16px 20px;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .cta-btn-large {
    font-size: 17px;
    padding: 16px 20px;
  }

  .faq-q {
    padding: 16px 20px;
    font-size: 15px;
  }

  .faq-a {
    padding: 0 20px 16px;
    font-size: 13.5px;
  }

  .urgency-bar {
    padding: 8px 12px;
    font-size: 12px;
  }
}
