/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, Roboto, Helvetica, sans-serif;
  background-color: #fff;
  color: #0d0d0d;
  line-height: 1.5;
}

/* Container Styles */
.landing-page {
  max-width: 100%;
  overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
  background-color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 0 70px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-image {
  height: 50px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #0d0d0d;
}

.logo-subtitle {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 13px;
  color: #0d0d0d;
}

.main-nav {
  display: flex;
  gap: 20px;
}

.nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #808080;
  text-decoration: none;
  padding: 8px 12px;
}

.nav-link.active {
  color: #3328bf;
}

.auth-buttons {
  display: flex;
  align-items: center;
  gap: 22px;
}

.login-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3328bf;
  text-decoration: none;
}

.signup-button {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: white;
  background-color: #3328bf;
  padding: 14px 16px;
  border-radius: 6px;
  text-decoration: none;
}

/* Hero Section */
/* Hero Section */
.hero-section {
  padding: 64px 80px;
  display: flex;
  justify-content: center;
}

.hero-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  align-items: center;
}

.hero-content {
  flex: 1;
}

.hero-text {
  margin-bottom: 32px;
}

.hero-title {
  font-size: 72px;
  font-weight: 600;
  line-height: 90px;
  letter-spacing: -1.44px;
  margin-bottom: 20px;
  color: #0d0d0d;
}

.hero-description {
  font-size: 16px;
  line-height: 24px;
  color: #808080;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 32px;
}

.hero-images {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.hero-image-container {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-image-overlay {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.hero-image-stack {
  position: relative;
  width: 100%;
  min-height: 300px;
}

.hero-image-background {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image-foreground {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero-section {
    padding: 64px 20px;
  }
  
  .hero-container {
    flex-direction: column;
  }
  
  .hero-title {
    font-size: 40px;
    line-height: 55px;
  }
  
  .hero-images {
    margin-top: 40px;
    gap: 20px;
  }
  
  .hero-image-stack {
    min-height: 200px;
  }
}
.primary-button, .secondary-button {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.primary-button {
  background-color: #3328bf;
  color: white;
  border: 1px solid #3328bf;
}

.secondary-button {
  background-color: white;
  color: #0d0d0d;
  border: 1px solid #d6d6d6;
}

.button-icon {
  width: 20px;
  height: 20px;
}


/* About Section */
.about-section {
  background-color: #e9e9e9;
  padding: 100px 15px;
  text-align: center;
}

.about-container {
  max-width: 1120px;
  margin: 0 auto;
}

.section-title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.96px;
  margin-bottom: 30px;
  color: #0d0d0d;
}

.section-description {
  font-size: 16px;
  line-height: 24px;
  color: #808080;
  max-width: 800px;
  margin: 0 auto;
}

/* Services Section */
.services-section {
  background-color: #e9e9e9;
  padding: 60px 15px;
}

.services-row {
  display: flex;
  gap: 20px;
  max-width: 1221px;
  margin: 0 auto 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  background-color: white;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
  flex: 1;
  min-width: 250px;
  max-width: 280px;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 23px;
}

.service-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 19px;
  color: #0d0d0d;
}

.service-description {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #4b5563;
  line-height: 2;
  margin-bottom: 22px;
}

.service-link {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #3328bf;
  text-decoration: none;
}

/* Demo Section */
.demo-section {
  padding: 46px 80px 77px;
  text-align: center;
  background-color: white;
}

.demo-container {
  max-width: 947px;
  margin: 0 auto;
}

.demo-title {
  font-size: 31px;
  font-weight: 700;
  margin-bottom: 26px;
}

.demo-description {
  font-size: 14px;
  color: #4b5563;
  line-height: 2;
  margin-bottom: 50px;
}

.demo-image {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

/* Metrics Section */
.metrics-section {
  background-color: #e9e9e9;
  padding: 100px 15px 63px;
  margin-top: 61px;
}

.metrics-container {
  max-width: 1120px;
  margin: 0 auto;
}

.metrics-header {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.metrics-title-container {
  flex: 1;
}

.metrics-title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.96px;
  line-height: 60px;
  color: #0d0d0d;
}

.metrics-description-container {
  flex: 1;
}

.metrics-description {
  font-size: 16px;
  line-height: 24px;
  color: #808080;
}

.metrics-counters {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.metric-card {
  background-color: white;
  border-radius: 20px;
  padding: 20px 35px;
  min-width: 240px;
  text-align: center;
}

.metric-number {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.96px;
  color: #0d0d0d;
}

.metric-label {
  font-size: 20px;
  color: #808080;
}

/* Testimonial Section */
.testimonial-section {
  background-color: #e9e9e9;
  padding-bottom: 40px;
}

.testimonial-header {
  padding: 100px 15px;
  text-align: center;
}

.testimonial-label {
  font-size: 14px;
  font-weight: 500;
  color: #3328bf;
  margin-bottom: 4px;
}

.testimonial-title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.96px;
  color: #0d0d0d;
}

.testimonial-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 94px;
  max-width: 1120px;
  margin: 0 auto;
}

.slider-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #3328bf;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: white;
}

.slider-button.next {
  background-color: #3328bf;
}

.slider-icon {
  width: 20px;
  height: 20px;
}

.testimonial-card {
  max-width: 827px;
  width: 100%;
}

.testimonial-content {
  background-color: #f9f9fb;
  border-radius: 20px;
  padding: 40px 30px 24px;
  position: relative;
  text-align: center;
}

.quote-icon {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #d6d6d6;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-image {
  width: 20px;
  height: 20px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 24px;
  color: #808080;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.author-image {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.author-name {
  font-size: 16px;
  font-weight: 500;
  color: #0d0d0d;
}

.author-title {
  font-size: 12px;
  color: #808080;
}

/* Pricing Section */
.pricing-section {
  background-color: #e9e9e9;
  padding: 80px 15px 40px;
  text-align: center;
}

.pricing-title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.96px;
  margin-bottom: 48px;
  color: #0d0d0d;
}

.pricing-container {
  display: flex;
  gap: 78px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-end;
}

.pricing-card {
  background-color: white;
  border-radius: 35px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  width: 350px;
  position: relative;
}

.pricing-card.popular {
  margin-bottom: -20px;
}

.popular-badge {
  background-color: black;
  color: white;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  padding: 17px 36px 63px;
  border-radius: 35px 35px 0 0;
}

.pricing-content {
  background-color: white;
  border-radius: 35px;
  padding: 30px;
  margin-top: -38px;
}

.pricing-header {
  padding: 30px;
}

.plan-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1.3px;
  margin-bottom: 20px;
}

.price-container {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.price {
  font-size: 46px;
  font-weight: 700;
}

.price-period {
  font-size: 30px;
  font-weight: 500;
}

.features-list {
  padding: 28px 30px;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.feature-icon {
  width: 22px;
  height: 22px;
  margin-top: 2px;
}

.feature-text {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 24px;
}

.plan-button {
  display: block;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  margin: 47px 30px 0;
}

.already-using {
  border: 1px solid #3328bf;
  color: #3328bf;
  background-color: white;
}

.get-now {
  background-color: #3328bf;
  color: white;
  border: 1px solid #3328bf;
}

/* FAQ Section */
.faq-section {
  padding: 24px 80px;
  background-color: white;
}

.faq-container {
  max-width: 1148px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 49px;
}

.faq-title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.96px;
  margin-bottom: 20px;
  color: #0d0d0d;
}

.faq-description {
  font-size: 16px;
  line-height: 24px;
  color: #808080;
  max-width: 563px;
  margin: 0 auto;
}

.faq-content {
  display: flex;
  gap: 20px;
}

.faq-questions {
  flex: 1;
}

.faq-item {
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  padding: 26px 30px;
  margin-bottom: 24px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.question-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: #0d0d0d;
}

.expand-icon {
  width: 32px;
  height: 32px;
}

.faq-image-container {
  flex: 1;
}

.faq-image {
  width: 100%;
  border-radius: 20px;
}

.contact-prompt {
  background-color: #efeff3;
  border: 1px solid #d6d6d6;
  border-radius: 20px;
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 21px;
}

.prompt-text {
  flex: 1;
}

.prompt-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #0d0d0d;
}

.prompt-description {
  font-size: 16px;
  color: #808080;
}

.contact-button {
  padding: 10px 14px;
  border: 1px solid #3328bf;
  border-radius: 8px;
  background-color: white;
  color: #3328bf;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* Footer */
.footer {
  background-color: #efeff3;
}

.footer-container {
  max-width: 1214px;
  margin: 0 auto;
  padding: 64px 15px 0;
}

.footer-content {
  display: flex;
  gap: 20px;
}

.footer-column {
  flex: 1;
}

.brand-column {
  flex: 0 0 22%;
}

.footer-logo {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 13px;
}

.footer-tagline {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 13px;
  margin-bottom: 25px;
}

.footer-description {
  font-size: 12px;
  line-height: 2;
  margin-bottom: 31px;
}

.social-icons {
  width: 70px;
  height: 20px;
}

.links-column {
  flex: 0 0 38%;
}

.footer-links-container {
  display: flex;
  gap: 20px;
}

.quick-links-column {
  flex: 1;
}

.links-title, .contact-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 22px;
}

.link-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.link-item a {
  color: #0d0d0d;
  text-decoration: none;
}

.bullet {
  color: #0d0d0d;
}

.footer-link {
  display: block;
  color: #0d0d0d;
  text-decoration: none;
  margin-bottom: 22px;
}

.contact-column {
  flex: 1;
}

.contact-info {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 19px;
}

.cta-column {
  flex: 0 0 40%;
}

.cta-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: -0.96px;
  margin-bottom: 45px;
}

.cta-button {
  display: block;
  padding: 10px 16px;
  background-color: #3328bf;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.footer-divider {
  border-top: 1px solid #1f2937;
  margin-top: 35px;
  width: 100%;
}

.copyright {
  background-color: #0d0d0d;
  color: white;
  font-size: 18px;
  line-height: 2;
  text-align: center;
  padding: 15px 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .navbar {
    padding: 0 20px;
  }
  
  .hero-section {
    padding: 64px 20px;
  }
  
  .hero-container {
    flex-direction: column;
  }
  
  .hero-title {
    font-size: 40px;
    line-height: 55px;
  }
  
  .hero-images {
    margin-top: 40px;
  }
  
  .section-title, .metrics-title, .testimonial-title, .pricing-title, .faq-title {
    font-size: 40px;
  }
  
  .services-row {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card {
    max-width: 100%;
    width: 100%;
  }
  
  .demo-section {
    padding: 46px 20px 77px;
  }
  
  .metrics-header {
    flex-direction: column;
  }
  
  .pricing-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .pricing-card {
    width: 350px;
  }
  
  .pricing-card.popular {
    order: 2;
    margin-bottom: 0;
  }
  
  .pricing-card.free {
    order: 1;
  }
  
  .pricing-card.premium {
    order: 3;
  }
  
  .faq-section {
    padding: 24px 20px;
  }
  
  .faq-content {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .brand-column, .links-column, .cta-column {
    width: 100%;
  }
  
  .cta-title {
    font-size: 40px;
    line-height: 56px;
  }
}