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

body {
  font-family: "Noto Sans Display", -apple-system, BlinkMacSystemFont,
    "SF Pro Display", system-ui, sans-serif;
  background-color: #f1f0ff;
  min-height: 100vh;
}

a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

/* Header Styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #f1f0ff;
  max-width: 1200px;
  margin: 1rem auto;
}

/* Main Content Styles */

#cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

#feature-highlight {
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  margin: 0 auto;
}

#feature-highlight > h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-align: center;
}

#feature-highlight > p {
  font-size: 1.25rem;
  color: #cccbd9;
  line-height: 1.6;
  margin-bottom: 4rem;
  max-width: 540px;
  text-align: center;
}

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

.main-heading {
  font-size: 3.75rem;
  font-weight: 800;
  color: #000;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.main-description {
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* FAQ Section Styles */
.faq-section {
  background-color: #f1f0ff;
  padding: 5rem 1.5rem;
}

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

.faq-section h2 {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000000;
}

.faq-answer {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.9);
}

/* Pricing Section Styles */
.pricing-section {
  background-color: #f1f0ff;
  padding: 5rem 1.5rem;
  text-align: left;
}

.pricing-container {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-section h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #000;
  text-align: center;
}

.pricing-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: left;
}

.pricing-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #000;
}

.pricing-card .description {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  position: relative;
  color: #374151;
}

.pricing-note {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 2rem;
  font-style: italic;
  text-align: center;
}

.final-cta-section {
  background: #000;
  color: white;
  padding: 5rem 1.5rem;
  text-align: center;
  margin: 0;
}

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

.final-cta-section h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
}

.final-cta-subtitle {
  margin-bottom: 3rem;
  opacity: 0.9;
  font-size: 1.25rem;
  line-height: 1.6;
}

.final-cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2rem;
}

.final-cta-text {
  text-align: left;
  flex: 1;
  max-width: 400px;
}

.final-cta-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.final-cta-text p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.final-cta-buttons .cta-button:hover {
  background-color: transparent;
  color: white;
}

.qr-code-container {
  text-align: center;
}

.qr-code-container p {
  font-size: 1rem;
  opacity: 0.8;
  margin-top: 1rem;
}

.app-store-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* Footer Styles */
.footer {
  background-color: #f1f0ff;
  padding: 2rem 1.5rem;
  margin: 80px 0;
}

.footer-content {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.footer p {
  color: #6b7280;
  font-size: 0.875rem;
}

.footer a {
  color: #000;
}

.magenta {
  color: #e19fff;
}

.green {
  color: #19b496;
}

.blue {
  color: #86baff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  #cta {
    flex-direction: column;
    text-align: center;
  }

  .content-left {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .main-heading {
    font-size: 3rem;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .final-cta-content {
    flex-direction: column;
    gap: 2rem;
  }

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

  .final-cta-buttons {
    justify-content: center;
  }

  .app-store-badges {
    flex-direction: column;
    align-items: center;
  }

  #feature-highlight {
    overflow-x: hidden;
  }
}

@media (max-width: 640px) {
  .header {
    padding: 1rem;
  }

  #cta {
    padding: 2rem 1rem 3rem;
  }

  .main-heading {
    font-size: 2.5rem;
  }

  .main-description {
    font-size: 1.125rem;
  }

  .faq-section h2,
  .pricing-section h2 {
    font-size: 2.25rem;
  }

  .final-cta-section h2 {
    font-size: 2.25rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }
}
