:root {
  --bg-color: #0a0a0a;
  --bg-secondary: #121212;
  --bg-card: rgba(255, 255, 255, 0.03);
  --primary-glow: rgba(204, 255, 0, 0.4);
  --accent: #ccff00;
  --accent-hover: #b3e600;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --border-color: rgba(255, 255, 255, 0.1);
  --font-main: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  border-radius: 12px;
  display: block;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography styles */
.section-heading {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff, var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subheading {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-inline: auto;
}

/* Reusable Components */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #000;
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--primary-glow);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 255, 0, 0.6);
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(204, 255, 0, 0.3);
}

/* Sections */
section {
  padding: 5rem 0;
  position: relative;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-logo {
  height: 70px;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.hero-image img {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transform: perspective(1000px) rotateY(-5deg);
  border: 1px solid var(--border-color);
}

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

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

.problem-list {
  list-style: none;
}

.problem-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  padding: 1rem;
  background: rgba(255, 0, 0, 0.05);
  border-left: 4px solid #ff4444;
  border-radius: 4px;
}

.problem-list li i {
  color: #ff4444;
  margin-right: 1rem;
  font-size: 1.2rem;
}

/* Solution / Meet Bahu Strong */
.solution .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution-image {
  position: relative;
}

.solution-image::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  filter: blur(60px);
  z-index: -1;
}

.key-idea-list {
  list-style: none;
  margin-top: 2rem;
  display: inline-block;
  text-align: left;
}

.key-idea-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.key-idea-list li i {
  color: var(--accent);
  margin-right: 1rem;
  font-size: 1.2rem;
}

/* Benefits Grid */
.benefits {
  background-color: var(--bg-secondary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: inline-block;
  background: rgba(204, 255, 0, 0.1);
  padding: 1rem;
  border-radius: 50%;
}

.benefit-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Included Section */
.included .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.included-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  width: 100%;
  margin-top: 3rem;
}

.included-item {
  display: flex;
  align-items: center;
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
}

.included-item i {
  color: var(--accent);
  font-size: 1.5rem;
  margin-right: 1rem;
}

/* Timeline / Challenge */
.timeline {
  margin-top: 4rem;
  position: relative;
  max-width: 800px;
  margin-inline: auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 3rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 11px;
  top: 5px;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--primary-glow);
}

.timeline-content h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Call to Action Bar */
.cta-bar {
  background: linear-gradient(90deg, #111, #222);
  border-top: 1px solid rgba(204, 255, 0, 0.2);
  border-bottom: 1px solid rgba(204, 255, 0, 0.2);
  padding: 4rem 0;
  text-align: center;
}

.cta-bar h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

/* Exercise Demo */
.exercises .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.exercise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.exercise-tag {
  background: var(--bg-secondary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
}

/* Trust / Proof */
.trust {
  text-align: center;
  background-color: var(--bg-secondary);
}

.trust-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
}

.trust-badge i {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

/* Value Stack & Price */
.offer {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.price-box {
  background: linear-gradient(145deg, rgba(204, 255, 0, 0.1), transparent);
  border: 1px solid var(--accent);
  border-radius: 20px;
  padding: 3rem;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.price-box h3 {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.price-box .mrp {
  text-decoration: line-through;
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* FAQ */
.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-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 600;
}

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

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

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 1rem;
}

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

/* Footer */
footer {
  background: var(--bg-secondary);
  padding: 3rem 0;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-logo {
    margin: 0 auto 1.5rem auto;
  }

  .hero .container,
  .solution .container,
  .exercises .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .exercise-list {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }

  .section-heading {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .timeline::before {
    left: 15px;
  }
  
  .timeline-item {
    padding-left: 45px;
  }
  
  .timeline-dot {
    left: 6px;
    width: 18px;
    height: 18px;
  }

  .price-box {
    padding: 2rem;
  }
}
