@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  --bg-color: #05050A; /* Deep dark background */
  --bg-secondary: #0D0D14; /* Slightly lighter for cards */
  --text-primary: #FFFFFF;
  --text-secondary: #A1A1AA; /* Muted text */
  --accent-gold: #F59E0B; /* Primary CTA gold */
  --accent-gold-hover: #D97706;
  --accent-blue: #3B82F6; /* Secondary accent */
  --accent-red: #EF4444; /* For pain points */
  --border-color: rgba(255, 255, 255, 0.1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --glow: 0 0 20px rgba(245, 158, 11, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

h1 { font-size: 3rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.75rem; margin-bottom: 1rem; }

.text-gradient {
  background: linear-gradient(to right, #FDE68A, var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
  background: linear-gradient(to right, #93C5FD, var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-bg {
  background: rgba(245, 158, 11, 0.15);
  padding: 0 0.5rem;
  border-radius: 4px;
}

/* Layout Utilities */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

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

/* Full Width Banner */
.full-width-banner {
  background: var(--accent-gold);
  color: #000;
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

/* Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  background-color: var(--accent-gold);
  color: #000;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--glow);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2rem;
  border: none;
  cursor: pointer;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.cta-button:hover {
  transform: translateY(-3px);
  background-color: var(--accent-gold-hover);
  animation: none;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.6);
}

.price-strike {
  text-decoration: line-through;
  opacity: 0.6;
  font-size: 1rem;
  margin-right: 0.5rem;
}

.cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cta-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 4rem;
}

/* Background Glow Effect */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(5, 5, 10, 0) 70%);
  z-index: -1;
  border-radius: 50%;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.no-brainer {
  display: inline-block;
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-gold);
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

/* Pain Points Section */
.pain-points {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.pain-card {
  background: var(--bg-color);
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-5px);
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 10px 20px rgba(239, 68, 68, 0.05);
}

.pain-card i {
  color: var(--accent-red);
  font-size: 1.25rem;
  margin-top: 4px;
}

.truth-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 16px;
  margin: 3rem auto 0;
  max-width: 800px;
  text-align: center;
}

.truth-box p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

/* Offer Section */
.offer {
  position: relative;
}

.offer-header {
  margin-bottom: 4rem;
}

.offer-subtitle {
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.offer-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.learning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.learn-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
}

.learn-item:hover {
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.05);
}

.learn-item i {
  color: var(--accent-blue);
  background: rgba(59, 130, 246, 0.1);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.offer-closing {
  text-align: center;
  margin-top: 4rem;
  font-size: 1.25rem;
  font-weight: 600;
}

/* Bio Section */
.bio {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.bio-image-wrapper {
  position: relative;
}

.bio-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid var(--border-color);
  position: relative;
  z-index: 2;
}

.bio-image-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-gold);
  border-radius: 20px;
  z-index: 1;
}

.bio-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.beliefs-list {
  list-style: none;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.beliefs-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 500;
}

.beliefs-list i {
  color: var(--accent-gold);
}

/* Guarantee Section */
.guarantee {
  text-align: center;
  padding: 8rem 0;
  position: relative;
}

.guarantee-box {
  background: linear-gradient(to bottom right, rgba(20, 20, 30, 0.9), rgba(10, 10, 15, 0.9));
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 24px;
  padding: 4rem 3rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 40px rgba(245, 158, 11, 0.05);
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-color);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--accent-gold);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.guarantee-amount {
  font-size: 1.5rem;
  color: #fff;
  margin: 2rem 0;
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border-left: 4px solid var(--accent-gold);
}

.guarantee-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.guarantee-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.guarantee-features i {
  color: #10B981; /* Green check */
}

/* FAQ Section */
.faq {
  background-color: var(--bg-secondary);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: #fff;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent-gold);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--text-secondary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  color: var(--text-secondary);
}

.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust based on content */
  padding-top: 1rem;
  opacity: 1;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  color: var(--accent-gold);
}

/* Footer CTA */
.footer-cta {
  text-align: center;
  padding: 6rem 0 10rem; /* Extra padding at bottom to prevent overlap with sticky footer */
}

/* Sticky Footer */
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(13, 13, 20, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--accent-gold);
  padding: 1rem 0;
  z-index: 1000;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.sticky-footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 900px;
  padding: 0 1rem;
}

.timer-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.timer-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.countdown {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-red);
  line-height: 1;
}

.sticky-cta {
  margin-top: 0;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
}

/* New Typography Classes for Hero */
.main-heading {
  font-size: 2.3rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  margin-top: 2rem;
}

.hero-sub-text {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--accent-gold);
  display: inline-block;
  margin-top: 15px;
}

.hero-subtitle-text {
  font-size: 1.2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.5rem;
  color: #e2e8f0;
}

/* Responsive Design */
@media (max-width: 992px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .bio-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .bio-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  .hero { padding-bottom: 2rem; }
  
  /* Make banner responsive */
  .full-width-banner {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
    padding-top: max(0.8rem, env(safe-area-inset-top));
    line-height: 1.3;
  }

  /* Make typography responsive */
  .main-heading {
    font-size: 1.45rem;
    margin-top: 1rem;
    line-height: 1.3;
  }
  .hero-sub-text {
    font-size: 1.05rem;
    display: block;
    margin-top: 10px;
  }
  .hero-subtitle-text {
    font-size: 1rem;
    margin-top: 1rem;
    padding: 0 0.5rem;
  }
  .offer-header h2 {
    font-size: 1.5rem !important;
  }
  .cta-button {
    font-size: 1rem !important;
    padding: 1rem 1.2rem;
  }

  .guarantee-features {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .guarantee-box {
    padding: 3rem 1.5rem;
  }
  .sticky-footer-content {
    flex-direction: column;
    gap: 0.5rem;
  }
  .timer-container {
    align-items: center;
    flex-direction: row;
    gap: 1rem;
  }
  .timer-text { margin-bottom: 0; }
  .countdown { font-size: 1.4rem; }
  .sticky-cta {
    width: 100%;
    text-align: center;
    padding: 0.8rem 1rem !important;
  }
  
  .custom-audio-player {
    flex-direction: column;
    text-align: center;
    border-radius: 24px;
    gap: 0.8rem;
    padding: 1.25rem;
  }
  .audio-progress-container {
    width: 100%;
    align-items: center;
  }
  .audio-title {
    text-align: center;
  }
}

/* Custom Audio Player */
.custom-audio-player {
  display: flex;
  align-items: center;
  background: var(--bg-secondary);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4), inset 0 0 10px rgba(245, 158, 11, 0.05);
  gap: 1.25rem;
}

.audio-play-btn {
  background: var(--accent-gold);
  color: #000;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.audio-play-btn:hover {
  transform: scale(1.05);
  background: var(--accent-gold-hover);
  box-shadow: 0 6px 15px rgba(245, 158, 11, 0.5);
}

.audio-progress-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
}

.audio-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  letter-spacing: 0.5px;
  width: 100%;
}

.audio-progress-bar {
  background: rgba(255, 255, 255, 0.1);
  height: 8px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.audio-progress {
  background: var(--accent-gold);
  height: 100%;
  width: 0%;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.1s linear;
}

.audio-time {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  width: 100%;
}
