/* Base styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: linear-gradient(180deg, #0a1433 0%, #1a2250 70%, #3a4a7c 100%);
  color: #e6e6e6;
  min-height: 100vh;
}

/* Navbar */
.navbar {
  width: 100%;
  background: rgba(10, 20, 15, 0.98);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.12);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 120px;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  margin-right: 32px;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #64D88E;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #e6e6e6;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: #64D88E;
}

.nav-cta {
  background: transparent;
  color: #64D88E;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 32px;
  border: 2px solid #64D88E;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover {
  background: #64D88E;
  color: #0a1433;
  border: 2px solid #64D88E;
}

/* Hero Section */
.hero-section {
  padding-top: 160px;
  padding-bottom: 96px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
}

.hero-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 24px;
}

.hero-badge {
  background: transparent;
  color: #64D88E;
  border: 2px solid #64D88E;
  border-radius: 20px;
  padding: 9px 32px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 36px;
  margin-top: 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.hero-badge:hover {
  background: #64D88E;
  color: #0a1433;
}

.hero-title {
  font-size: 4.05rem;
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 32px 0;
  color: #ffffff;
  letter-spacing: -1.8px;
}

.hero-subtitle {
  font-size: 1.44rem;
  color: #e6e6e6;
  margin-bottom: 40px;
  margin-top: 0;
  font-weight: 400;
}

.hero-cta {
  display: inline-block;
  background: #64D88E;
  color: #0a1433;
  border: 2px solid #64D88E;
  border-radius: 6px;
  padding: 16px 43px;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 29px 0 0 0;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.hero-cta:hover {
  background: transparent;
  color: #64D88E;
  border: 2px solid #64D88E;
}

.stat-card {
  background: rgba(100, 216, 142, 0.08);
  border: 2px solid #64D88E;
  border-radius: 16px;
  padding: 32px 50px;
  min-width: 215px;
  text-align: center;
  box-shadow: 0 4px 24px 0 rgba(100, 216, 142, 0.10);
}

.stat-value {
  font-size: 2.07rem;
  font-weight: 800;
  color: #64D88E;
  margin-bottom: 9px;
}

.stat-label {
  font-size: 1.17rem;
  color: #e6e6e6;
  opacity: 0.92;
}

.hero-year {
  margin-top: 43px;
  color: #64D88E;
  font-size: 1.35rem;
  font-weight: 600;
  opacity: 0.92;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.section-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 800px;
}

/* Button styles */
.btn-primary {
  display: inline-block;
  background: #64D88E;
  color: #0a1433;
  border: 2px solid #64D88E;
  border-radius: 6px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: transparent;
  color: #64D88E;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #64D88E;
  border: 2px solid #64D88E;
  border-radius: 6px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(100, 216, 142, 0.1);
}

/* Growth Partner Section */
.growth-partner-section {
  padding: 100px 0;
  background: linear-gradient(90deg, #f5f9f6 0%, #e8f5ed 100%);
  color: #0a1433;
}

.growth-partner-section .section-title {
  color: #0a1433;
}

.growth-stats {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0;
}

.growth-stat {
  text-align: center;
  padding: 2rem;
  background: rgba(100, 216, 142, 0.1);
  border-radius: 12px;
  flex: 1;
  margin: 0 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.growth-stat h3 {
  font-size: 2rem;
  color: #64D88E;
  margin-bottom: 0.5rem;
}

.growth-stat p {
  font-size: 1rem;
  color: #0a1433;
}

/* Why Choose Us Section */
.why-leads-always-section {
  padding: 100px 0;
  background: #0a1433;
  color: #e6e6e6;
}

.why-leads-always-section .section-title {
  color: #ffffff;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.benefits-list li {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.6;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #64D88E;
  font-weight: bold;
}

/* Our Method Section */
.our-method-section {
  padding: 100px 0;
  background: linear-gradient(90deg, #0a1433 0%, #1a2250 100%);
  position: relative;
  overflow: hidden;
}

.method-steps {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
  margin: 3rem 0;
  position: relative;
}

.method-steps::before {
  content: "";
  position: absolute;
  top: 2.5rem;  /* Start from the middle of the first number */
  bottom: 2.5rem;  /* End at the middle of the last number */
  left: 2rem;
  width: 4px;
  background: #64D88E;
  z-index: 1;
}

.method-steps li {
  counter-increment: step-counter;
  padding: 0.5rem 0 1.5rem 5rem;
  position: relative;
  margin-bottom: 1rem;
  min-height: 4rem;
  display: flex;
  align-items: center;
}

.method-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 4rem;
  height: 4rem;
  background: #0a1433;
  border: 4px solid #64D88E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5rem;
  color: #64D88E;
  z-index: 2;
}

/* Success Stories Section */
.success-stories-section {
  padding: 100px 0;
  background: linear-gradient(90deg, #f5f9f6 0%, #e8f5ed 100%);
  color: #0a1433;
}

.success-stories-section .section-title {
  color: #0a1433;
}

.success-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.success-list li {
  background: white;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #64D88E;
  font-size: 1.1rem;
}

/* AI Advantage Section */
.ai-advantage-section {
  padding: 100px 0;
  background: linear-gradient(90deg, #f5f9f6 0%, #e8f5ed 100%);
  color: #0a1433;
  position: relative;
}

.ai-advantage-section .section-title,
.ai-advantage-section .section-description {
  color: #0a1433;
}

.ai-advantage-section .btn-secondary {
  color: #64D88E;
  border-color: #64D88E;
  background: transparent;
}

.ai-advantage-section .btn-secondary:hover {
  background: rgba(100, 216, 142, 0.1);
  color: #64D88E;
}

.ai-advantage-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%2364D88E" stroke-width="2" opacity="0.2"/></svg>');
  opacity: 0.05;
  z-index: 0;
}

/* Pricing Summary Section */
.pricing-summary-section {
  padding: 100px 0;
  background: linear-gradient(90deg, #f5f9f6 0%, #e8f5ed 100%);
  color: #0a1433;
}

.pricing-summary-section .section-title,
.pricing-summary-section .section-description {
  color: #0a1433;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2.5rem;
  flex: 1;
  max-width: 350px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(100, 216, 142, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 48px rgba(100, 216, 142, 0.2);
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #64D88E;
}

.pricing-card p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.pricing-card ul li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.pricing-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #64D88E;
}

/* Process Roadmap Section */
.process-roadmap-section {
  padding: 120px 0;
  background: linear-gradient(90deg, #f5f9f6 0%, #e8f5ed 100%);
  color: #0a1433;
  position: relative;
  overflow: hidden;
}

.process-roadmap-section .section-title {
  color: #0a1433;
  text-align: center;
  margin-bottom: 3rem;
}

.process-roadmap-section .highlight {
  color: #64D88E;
  font-weight: 700;
}

.roadmap-container {
  display: flex;
  position: relative;
}

.roadmap-content {
  flex: 1;
  padding-right: 3rem;
}

.roadmap-visual {
  flex: 1;
  position: relative;
}

.roadmap-path {
  position: absolute;
  top: 0;
  left: 50%;
  width: 60%;
  height: 100%;
  transform: translateX(-50%);
}

.roadmap-steps {
  position: relative;
  z-index: 2;
}

.roadmap-step {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0a1433;
  color: #64D88E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-right: 1.5rem;
  border: 3px solid #64D88E;
  box-shadow: 0 0 0 5px rgba(100, 216, 142, 0.1);
}

.step-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
}

.step-content p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(90deg, #f5f9f6 0%, #e8f5ed 100%);
  color: #0a1433;
}

.faq-section .section-title {
  color: #0a1433;
  text-align: center;
  margin-bottom: 3rem;
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(100, 216, 142, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(100, 216, 142, 0.15);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: rgba(100, 216, 142, 0.05);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0a1433;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #64D88E;
  transition: transform 0.3s ease;
  min-width: 20px;
  text-align: center;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: #0a1433;
  font-size: 1rem;
}

/* Book Section */
#book.book-section {
  background: #0a1433;
  color: #e6e6e6;
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  margin: 0 auto 2rem auto;
}

#book.book-section .section-title {
  color: #ffffff;
}

#book.book-section .section-description {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px; /* Accounts for fixed navbar */
}

/* Responsive */
@media (max-width: 900px) {
  .hero-content {
    max-width: 98vw;
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
  .stat-card {
    min-width: 0;
    width: 90vw;
    padding: 24px 0;
  }
  .nav-container {
    flex-direction: column;
    height: auto;
    gap: 12px;
    padding: 12px 8px;
  }
  
  .growth-stats, .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .growth-stat, .pricing-card {
    width: 100%;
    margin: 1rem 0;
  }
  
  .roadmap-container {
    flex-direction: column;
  }
  
  .roadmap-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}
