/* Google Fonts */
body {
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
  background: #fff;
  color: #1A237E;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(26,35,126,0.04);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #1A237E;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: #1A237E;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #00BFA5;
}
.nav-cta {
  margin-left: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 36px;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 2px 12px rgba(0,191,165,0.10);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(90deg, #00BFA5 60%, #1DE9B6 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,191,165,0.13);
}
.btn-primary:hover {
  background: linear-gradient(90deg, #009e88 60%, #00BFA5 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,191,165,0.18);
}
.btn-secondary {
  background: linear-gradient(90deg, #1A237E 60%, #3949AB 100%);
  color: #fff;
}
.btn-secondary:hover {
  background: linear-gradient(90deg, #283593 60%, #1A237E 100%);
  transform: translateY(-2px) scale(1.03);
}
.btn-lg {
  font-size: 1.18rem;
  padding: 1.1rem 2.7rem;
}

/* Hero Section - with Chatbot Demo as Centerpiece */
.hero {
  background: linear-gradient(120deg, #e0f7fa 60%, #F1F3F4 100%);
  padding: 5.5rem 0 3.5rem 0;
  text-align: center;
  position: relative;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  color: #1A237E;
  letter-spacing: 0.01em;
}
.subheadline {
  font-size: 1.3rem;
  color: #00BFA5;
  margin-bottom: 2.2rem;
  font-weight: 600;
}
.hero-cta-note {
  background: #fff;
  color: #1A237E;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,191,165,0.10);
  display: inline-block;
  margin-top: 1.2rem;
}

/* Problem/Solution - Standout */
.problem-solution {
  background: linear-gradient(120deg, #F1F3F4 60%, #e0f7fa 100%);
  padding: 3.2rem 0 2.2rem 0;
  text-align: center;
}
.problem-solution h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #1A237E;
}
.problem-solution p {
  color: #00BFA5;
  font-size: 1.08rem;
}

/* Features Section */
.features {
  background: #F1F3F4;
  padding: 3rem 0;
}
.features h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.features-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.feature-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(26,35,126,0.06);
  padding: 2rem 1.5rem;
  flex: 1 1 260px;
  max-width: 320px;
  text-align: center;
  margin-bottom: 1.5rem;
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00BFA5;
}
.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: #283593;
}

/* Pricing Section */
.pricing {
  background: #fff;
  padding: 3rem 0;
}
.pricing h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.pricing-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.pricing-card {
  background: #F1F3F4;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(26,35,126,0.06);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  flex: 1 1 260px;
  max-width: 320px;
  text-align: center;
  position: relative;
  margin-bottom: 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(26,35,126,0.10);
}
.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pricing-card .price {
  color: #00BFA5;
  font-weight: 600;
  margin-bottom: 1rem;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.pricing-card ul li {
  margin-bottom: 0.5rem;
  color: #283593;
}
.pricing-card .btn {
  width: 100%;
}
.pricing-card.popular {
  border: 2.5px solid #00BFA5;
  background: #fff;
  z-index: 1;
  transform: scale(1.06);
}
.popular-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #00BFA5;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.3rem 1.2rem;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,191,165,0.10);
}

/* How It Works */
.how-it-works {
  background: #F1F3F4;
  padding: 3rem 0;
}
.how-it-works h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.steps {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(26,35,126,0.06);
  padding: 2rem 1.5rem;
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  margin-bottom: 1.5rem;
}
.step-number {
  background: #00BFA5;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.step p {
  color: #283593;
}

/* Final CTA - Standout */
.final-cta {
  background: linear-gradient(120deg, #00BFA5 10%, #1A237E 100%);
  color: #fff;
  text-align: center;
  padding: 3.5rem 0 3rem 0;
}
.final-cta h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}
.final-cta .btn-primary {
  background: #00BFA5;
  color: #fff;
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
}
.final-cta .btn-primary:hover {
  background: #009e88;
}
.final-cta-note {
  background: #fff;
  color: #1A237E;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,191,165,0.10);
  display: inline-block;
  margin-top: 1.2rem;
}

/* Footer */
.footer {
  background: #fff;
  color: #1A237E;
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  font-size: 1rem;
  border-top: 1px solid #F1F3F4;
}
.footer a {
  color: #00BFA5;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 900px) {
  .features-grid, .pricing-cards, .steps {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .nav-links {
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .container {
    width: 96%;
  }
  .navbar {
    padding: 0.7rem 0;
  }
  .logo {
    font-size: 1.1rem;
  }
  .hero {
    padding: 3rem 0 2rem 0;
  }
  .hero-content h1 {
    font-size: 1.3rem;
  }
  .features h2, .pricing h2, .how-it-works h2, .final-cta h2 {
    font-size: 1.2rem;
  }
  .btn, .btn-lg {
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
  }
} 

/* Demo Section - Main Feature */
.demo-section.main-feature {
  background: none;
  padding: 0;
  min-height: unset;
  margin-top: 2.2rem;
  margin-bottom: 0;
}
.main-feature-card {
  margin: 0 auto;
  box-shadow: 0 10px 48px rgba(0,191,165,0.18), 0 2px 12px rgba(26,35,126,0.10);
  border: 3.5px solid #00BFA5;
  background: linear-gradient(120deg, #fff 80%, #e0f7fa 100%);
  border-radius: 28px;
  padding: 2.5rem 2rem 2.5rem 2rem;
  max-width: 700px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.main-feature-heading {
  font-size: 2.3rem;
  font-weight: 900;
  color: #1A237E;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
}
.main-feature-sub {
  font-size: 1.18rem;
  color: #00BFA5;
  font-weight: 600;
  margin-bottom: 2.1rem;
}
.main-feature-cta {
  margin-top: 2.2rem;
  font-size: 1.18rem;
  color: #1A237E;
  font-weight: 700;
  background: #e0f7fa;
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 2px 12px rgba(0,191,165,0.10);
  display: inline-block;
}
.chatbot-embed-placeholder {
  background: #F1F3F4;
  border: 2.5px dashed #00BFA5;
  border-radius: 18px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 2rem 0.5rem;
  box-shadow: 0 2px 12px rgba(0,191,165,0.07);
}

/* Enhanced Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 36px;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 2px 12px rgba(0,191,165,0.10);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(90deg, #00BFA5 60%, #1DE9B6 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,191,165,0.13);
}
.btn-primary:hover {
  background: linear-gradient(90deg, #009e88 60%, #00BFA5 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,191,165,0.18);
}
.btn-secondary {
  background: linear-gradient(90deg, #1A237E 60%, #3949AB 100%);
  color: #fff;
}
.btn-secondary:hover {
  background: linear-gradient(90deg, #283593 60%, #1A237E 100%);
  transform: translateY(-2px) scale(1.03);
}
.btn-lg {
  font-size: 1.18rem;
  padding: 1.1rem 2.7rem;
}

/* Ensure buttons fit in cards */
.pricing-card .btn,
.feature-card .btn {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.2rem;
  box-sizing: border-box;
}

/* Enhanced Card Styles */
.feature-card, .pricing-card, .step {
  border-radius: 22px;
  box-shadow: 0 4px 20px rgba(26,35,126,0.09);
  border: 1.5px solid #e3e7fa;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover, .pricing-card:hover, .step:hover {
  box-shadow: 0 10px 32px rgba(26,35,126,0.13);
  transform: translateY(-4px) scale(1.025);
}

/* Pricing Card Popular Banner */
.pricing-card.popular {
  border: 2.5px solid #00BFA5;
  background: linear-gradient(120deg, #fff 80%, #e0f7fa 100%);
  z-index: 1;
  /* Remove transform: scale for equal sizing */
  box-shadow: 0 8px 32px rgba(0,191,165,0.13);
}
.popular-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #00BFA5 60%, #1DE9B6 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.3rem 1.2rem;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,191,165,0.10);
}

/* How It Works */
.how-it-works {
  background: #F1F3F4;
  padding: 3rem 0;
}
.how-it-works h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}
.steps {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(26,35,126,0.06);
  padding: 2rem 1.5rem;
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  margin-bottom: 1.5rem;
}
.step-number {
  background: #00BFA5;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.step p {
  color: #283593;
}

/* Final CTA - Standout */
.final-cta {
  background: linear-gradient(120deg, #00BFA5 10%, #1A237E 100%);
  color: #fff;
  text-align: center;
  padding: 3.5rem 0 3rem 0;
}
.final-cta h2 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}
.final-cta .btn-primary {
  background: #00BFA5;
  color: #fff;
  font-size: 1.15rem;
  padding: 1rem 2.5rem;
}
.final-cta .btn-primary:hover {
  background: #009e88;
}
.final-cta-note {
  background: #fff;
  color: #1A237E;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,191,165,0.10);
  display: inline-block;
  margin-top: 1.2rem;
}

/* Footer */
.footer {
  background: #fff;
  color: #1A237E;
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  font-size: 1rem;
  border-top: 1px solid #F1F3F4;
}
.footer a {
  color: #00BFA5;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 900px) {
  .features-grid, .pricing-cards, .steps {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .nav-links {
    gap: 1.2rem;
  }
}
@media (max-width: 600px) {
  .container {
    width: 96%;
  }
  .navbar {
    padding: 0.7rem 0;
  }
  .logo {
    font-size: 1.1rem;
  }
  .hero {
    padding: 3rem 0 2rem 0;
  }
  .hero-content h1 {
    font-size: 1.3rem;
  }
  .features h2, .pricing h2, .how-it-works h2, .final-cta h2 {
    font-size: 1.2rem;
  }
  .btn, .btn-lg {
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
  }
} 

/* Demo Section - Main Feature */
.demo-section.main-feature {
  background: linear-gradient(120deg, #00BFA5 10%, #F1F3F4 100%);
  padding: 5rem 0 4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}
.main-feature-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 10px 48px rgba(0,191,165,0.18), 0 2px 12px rgba(26,35,126,0.10);
  padding: 3.5rem 2.5rem 3.5rem 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  border: 3px solid #00BFA5;
  position: relative;
  z-index: 2;
}
.main-feature-heading {
  font-size: 2.3rem;
  font-weight: 900;
  color: #1A237E;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
}
.main-feature-sub {
  font-size: 1.18rem;
  color: #00BFA5;
  font-weight: 600;
  margin-bottom: 2.1rem;
}
.main-feature-cta {
  margin-top: 2.2rem;
  font-size: 1.18rem;
  color: #1A237E;
  font-weight: 700;
  background: #e0f7fa;
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 2px 12px rgba(0,191,165,0.10);
  display: inline-block;
}
.chatbot-embed-placeholder {
  background: #F1F3F4;
  border: 2.5px dashed #00BFA5;
  border-radius: 18px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 2rem 0.5rem;
  box-shadow: 0 2px 12px rgba(0,191,165,0.07);
}

/* Enhanced Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 36px;
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 2px 12px rgba(0,191,165,0.10);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(90deg, #00BFA5 60%, #1DE9B6 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,191,165,0.13);
}
.btn-primary:hover {
  background: linear-gradient(90deg, #009e88 60%, #00BFA5 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,191,165,0.18);
}
.btn-secondary {
  background: linear-gradient(90deg, #1A237E 60%, #3949AB 100%);
  color: #fff;
}
.btn-secondary:hover {
  background: linear-gradient(90deg, #283593 60%, #1A237E 100%);
  transform: translateY(-2px) scale(1.03);
}
.btn-lg {
  font-size: 1.18rem;
  padding: 1.1rem 2.7rem;
}

/* Ensure buttons fit in cards */
.pricing-card .btn,
.feature-card .btn {
  width: 100%;
  margin-top: 1.2rem;
  margin-bottom: 0.2rem;
  box-sizing: border-box;
}

/* Enhanced Card Styles */
.feature-card, .pricing-card, .step {
  border-radius: 22px;
  box-shadow: 0 4px 20px rgba(26,35,126,0.09);
  border: 1.5px solid #e3e7fa;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover, .pricing-card:hover, .step:hover {
  box-shadow: 0 10px 32px rgba(26,35,126,0.13);
  transform: translateY(-4px) scale(1.025);
}

/* Pricing Card Popular Banner */
.pricing-card.popular {
  border: 2.5px solid #00BFA5;
  background: linear-gradient(120deg, #fff 80%, #e0f7fa 100%);
  z-index: 1;
  /* Remove transform: scale for equal sizing */
  box-shadow: 0 8px 32px rgba(0,191,165,0.13);
}
.popular-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #00BFA5 60%, #1DE9B6 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.3rem 1.2rem;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,191,165,0.10);
}

/* Add more spacing and polish */
.pricing-cards, .features-grid, .steps {
  gap: 2.5rem;
}
.pricing-card, .feature-card, .step {
  margin-bottom: 2rem;
}

/* Section Headings */
.features h2, .pricing h2, .how-it-works h2, .final-cta h2, .demo-card h2 {
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(26,35,126,0.04);
} 

/* About/Story & Pricing - Blend and Shrink */
.about-content, .pricing-card, .feature-card, .step {
  font-size: 0.97rem;
  padding: 1.7rem 1.1rem 1.7rem 1.1rem;
  background: #f7fafd;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(26,35,126,0.06);
  color: #1A237E;
}
.about-section h2, .about-section .about-subheadline {
  font-size: 1.25rem;
}
.pricing-card h3 {
  font-size: 1.1rem;
}
.pricing-best-for, .pricing-desc, .pricing-features, .pricing-investment {
  font-size: 0.97rem;
}
.pricing-card, .feature-card, .step {
  margin-bottom: 1.2rem;
  box-shadow: 0 1px 4px rgba(26,35,126,0.04);
  border: 1px solid #e3e7fa;
}

/* Pricing CTA Note */
.pricing-cta-note {
  background: #e0f7fa;
  color: #1A237E;
  font-size: 1.01rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  margin-top: 0.7rem;
  margin-bottom: 0.2rem;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0,191,165,0.07);
}

/* Responsive Tweaks for Main Feature */
@media (max-width: 900px) {
  .pricing-card.popular {
    /* Remove transform: scale for equal sizing on mobile */
  }
  .main-feature-card {
    padding: 1.2rem 0.2rem 1.2rem 0.2rem;
    max-width: 98vw;
  }
  .main-feature-heading {
    font-size: 1.5rem;
  }
}
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.3rem;
  }
  .main-feature-heading {
    font-size: 1.1rem;
  }
  .main-feature-card {
    padding: 1.2rem 0.2rem 1.2rem 0.2rem;
  }
  .final-cta h2 {
    font-size: 1.1rem;
  }
} 

/* Navbar Visual Enhancements */
.navbar {
  background: #fff;
  box-shadow: 0 4px 24px rgba(26,35,126,0.08);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-radius: 0 0 18px 18px;
  transition: box-shadow 0.2s;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-weight: 900;
  font-size: 1.7rem;
  color: #00BFA5;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px rgba(0,191,165,0.08);
  padding-right: 1.5rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: #1A237E;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 0.4rem 1.1rem;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.nav-links a:hover, .nav-links a:focus, .nav-links a.active {
  background: #e0f7fa;
  color: #00BFA5;
}
.nav-cta {
  margin-left: 1.5rem;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0,191,165,0.10);
}

/* Pricing Cards - Smaller & Compact */
.pricing-cards {
  gap: 1.2rem;
}
.pricing-card {
  max-width: 370px;
  min-width: 320px;
  padding: 1.5rem 1.2rem 1.5rem 1.2rem;
  font-size: 0.97rem;
}
.pricing-desc-list {
  margin: 0 0 0.8rem 0;
  padding: 0 0 0 1.1rem;
  list-style: disc;
  color: #1A237E;
  font-size: 1.01rem;
}
.pricing-desc-list li {
  margin-bottom: 0.4rem;
  line-height: 1.5;
}
.pricing-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}
.pricing-features {
  margin: 0 0 0.7rem 0;
  padding: 0 0 0 0.2rem;
}
.pricing-features li {
  margin-bottom: 0.4rem;
  font-size: 0.93rem;
  padding-left: 1.5rem;
}
.pricing-investment {
  font-size: 0.95rem;
  padding: 0.7rem 0.7rem;
  margin-bottom: 0.7rem;
  margin-top: 0.2rem;
}
.pricing-cta-note {
  margin-top: 0.3rem;
  margin-bottom: 0.1rem;
  padding: 0.5rem 0.5rem;
}
.pricing-cta-link {
  display: inline-block;
  background: linear-gradient(90deg, #00BFA5 60%, #1DE9B6 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 1.01rem;
  border-radius: 18px;
  padding: 0.6rem 1.3rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,191,165,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.pricing-cta-link:hover, .pricing-cta-link:focus {
  background: linear-gradient(90deg, #009e88 60%, #00BFA5 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,191,165,0.16);
}
@media (max-width: 900px) {
  .pricing-cards {
    flex-direction: column;
    gap: 2.2rem;
    margin-top: 2.2rem;
  }
  .pricing-card {
    max-width: 98vw;
    min-width: 0;
    padding: 1.1rem 0.3rem 1.1rem 0.3rem;
  }
} 

/* Most Popular Badge - Smaller & Refined */
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #00BFA5 60%, #1DE9B6 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0.22rem 0.9rem;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(0,191,165,0.13);
  letter-spacing: 0.03em;
  border: 2px solid #fff;
  z-index: 2;
}

/* Card Visual Enhancements */
.pricing-card, .feature-card, .step, .about-content {
  background: linear-gradient(120deg, #f7fafd 80%, #e0f7fa 100%);
  border: 1.5px solid #e0f7fa;
  box-shadow: 0 4px 18px rgba(0,191,165,0.07), 0 1.5px 6px rgba(26,35,126,0.04);
  transition: box-shadow 0.18s, transform 0.18s, border 0.18s;
}
.pricing-card:hover, .feature-card:hover, .step:hover {
  box-shadow: 0 10px 32px rgba(0,191,165,0.13), 0 2px 12px rgba(26,35,126,0.10);
  border: 1.5px solid #00BFA5;
  transform: translateY(-4px) scale(1.025);
}

/* Accent Dividers */
.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00BFA5 60%, #1A237E 100%);
  border-radius: 2px;
  margin: 1.5rem auto 2.2rem auto;
  box-shadow: 0 1px 6px rgba(0,191,165,0.10);
}

/* Section Headings - More Contrast */
.features h2, .pricing h2, .how-it-works h2, .final-cta h2, .demo-card h2, .about-section h2 {
  color: #1A237E;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(26,35,126,0.08);
  margin-bottom: 0.7rem;
}
.pricing h2, .features h2, .about-section h2 {
  margin-top: 0.5rem;
}

/* Add more color to feature icons */
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #00BFA5;
  background: #e0f7fa;
  border-radius: 50%;
  padding: 0.7rem;
  box-shadow: 0 2px 8px rgba(0,191,165,0.10);
  display: inline-block;
}

/* Add accent border to main-feature-card */
.main-feature-card {
  border: 3.5px solid #00BFA5;
  background: linear-gradient(120deg, #fff 80%, #e0f7fa 100%);
}

/* Add accent border to about-content */
.about-content {
  border: 2.5px solid #1A237E;
}

/* Add accent border to pricing-card.popular */
.pricing-card.popular {
  border: 2.5px solid #00BFA5;
  background: linear-gradient(120deg, #fff 80%, #e0f7fa 100%);
  z-index: 1;
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(0,191,165,0.13);
} 

/* Founder Section */
.founder-section {
  background: #fff;
  padding: 3.5rem 0 3rem 0;
}
.founder-grid {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.founder-photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0f7fa 60%, #00BFA5 100%);
  box-shadow: 0 2px 12px rgba(0,191,165,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  margin: 0 auto;
}
.founder-bio h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1A237E;
  margin-bottom: 0.7rem;
}
.founder-bio p {
  color: #283593;
  font-size: 1.08rem;
  margin-bottom: 0;
}
@media (max-width: 800px) {
  .founder-grid {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .founder-photo-placeholder {
    margin-bottom: 1.2rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  background: #F1F3F4;
  padding: 3rem 0 2.5rem 0;
  text-align: center;
}
.testimonials-section h2 {
  color: #1A237E;
  font-weight: 900;
  margin-bottom: 1.2rem;
}
.testimonial-placeholder {
  color: #283593;
  font-size: 1.08rem;
  background: #fff;
  border-radius: 14px;
  display: inline-block;
  padding: 1.2rem 2rem;
  box-shadow: 0 2px 8px rgba(26,35,126,0.06);
}

/* FAQ Section */
.faq-section {
  background: #fff;
  padding: 3.5rem 0 2.5rem 0;
}
.faq-section h2 {
  text-align: center;
  color: #1A237E;
  font-weight: 900;
  margin-bottom: 2.2rem;
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.faq-item {
  background: #F1F3F4;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,191,165,0.07);
  padding: 1.2rem 1.5rem;
}
.faq-q {
  color: #00BFA5;
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
}
.faq-a {
  color: #1A237E;
  font-size: 1.05rem;
}
@media (max-width: 600px) {
  .faq-item {
    padding: 1rem 0.7rem;
  }
} 