/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #374151;
}

/* Utility Classes */
.min-h-screen {
  min-height: 100vh;
}

.bg-white {
  background-color: #ffffff;
}

.text-emerald-600 {
  color: #059669;
}

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

.font-bold {
  font-weight: 700;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.italic {
  font-style: italic;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

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

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 50%, #ecfeff 100%);
  overflow: hidden;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 6rem 0;
  }
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.05;
}

.hero-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background-color: #d1fae5;
  border-radius: 9999px;
  color: #047857;
  font-size: 0.875rem;
  font-weight: 600;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-description {
  font-size: 1.25rem;
  color: #4b5563;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.btn-primary {
  padding: 1rem 2rem;
  background-color: #059669;
  color: white;
  font-weight: 600;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: all 0.2s;
  transform: translateY(0);
}

.btn-primary:hover {
  background-color: #047857;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

.btn-secondary {
  padding: 1rem 2rem;
  background-color: white;
  color: #059669;
  font-weight: 600;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 2px solid #059669;
  text-decoration: none;
  transition: all 0.2s;
  transform: translateY(0);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background-color: #f9fafb;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
}

.qr-section {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 2rem;
  max-width: 28rem;
  margin: 0 auto;
}

.qr-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.qr-container {
  background-color: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.qr-code {
  width: 12rem;
  height: 12rem;
  margin: 0 auto;
  background-color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-code img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.25rem;
}

.qr-text {
  color: #4b5563;
  margin-top: 1rem;
  font-weight: 500;
}

.phone-link {
  color: #059669;
  text-decoration: none;
}

.phone-link:hover {
  text-decoration: underline;
}

/* Section Styles */
.benefits-section,
.comparison-section,
.testimonials-section,
.policy-section {
  padding: 4rem 0;
  background-color: white;
}

@media (min-width: 768px) {
  .benefits-section,
  .comparison-section,
  .testimonials-section,
  .policy-section {
    padding: 6rem 0;
  }
}

.pricing-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

@media (min-width: 768px) {
  .pricing-section {
    padding: 6rem 0;
  }
}

.process-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ecfdf5 0%, #ecfeff 100%);
}

@media (min-width: 768px) {
  .process-section {
    padding: 6rem 0;
  }
}

.faq-section {
  padding: 4rem 0;
  background-color: #f9fafb;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 6rem 0;
  }
}

.final-cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #059669 0%, #0891b2 100%);
}

@media (min-width: 768px) {
  .final-cta-section {
    padding: 6rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 32rem;
  margin: 0 auto;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 100%);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}

.benefit-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.benefit-card:nth-child(2) {
  background: linear-gradient(135deg, #ecfeff 0%, #ffffff 100%);
}

.benefit-card:nth-child(3) {
  background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.benefit-icon {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #d1fae5;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.benefit-card:nth-child(2) .benefit-icon {
  background-color: #cffafe;
}

.benefit-card:nth-child(3) .benefit-icon {
  background-color: #fef3c7;
}

.benefit-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #059669;
}

.benefit-card:nth-child(2) .benefit-icon svg {
  color: #0891b2;
}

.benefit-card:nth-child(3) .benefit-icon svg {
  color: #d97706;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: #4b5563;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  border: 2px solid #e5e7eb;
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pricing-card.premium {
  background: linear-gradient(135deg, #059669 0%, #0891b2 100%);
  border: 2px solid #10b981;
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fbbf24;
  color: #111827;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

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

.premium h3 {
  color: white;
}

.price {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #111827;
}

.premium .price-amount {
  color: white;
}

.price-period {
  color: #4b5563;
  font-weight: 500;
}

.premium .price-period {
  color: #a7f3d0;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #059669;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.premium .check-icon {
  color: #fbbf24;
}

.feature-item span {
  color: #374151;
}

.premium .feature-item span {
  color: white;
  font-weight: 500;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  background-color: #111827;
  color: white;
  font-weight: 600;
  border-radius: 0.5rem;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s;
}

.pricing-btn:hover {
  background-color: #1f2937;
}

.premium-btn {
  background-color: white;
  color: #059669;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.premium-btn:hover {
  background-color: #f9fafb;
}

/* Comparison Table */
.comparison-table-container {
  max-width: 64rem;
  margin: 0 auto;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.comparison-table thead {
  background-color: #f9fafb;
}

.comparison-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table th:not(:first-child) {
  text-align: center;
}

.premium-col {
  color: #059669;
}

.comparison-table tbody {
  border-top: 1px solid #e5e7eb;
}

.comparison-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table td {
  padding: 1rem 1.5rem;
  color: #374151;
  font-weight: 500;
}

.comparison-table td:first-child {
  font-weight: 500;
  color: #111827;
}

.comparison-table td:not(:first-child) {
  text-align: center;
}

.premium-text {
  color: #059669;
  font-weight: 600;
}

.price-row {
  background-color: #f9fafb;
}

.price-row td {
  font-weight: 700;
}

.price-row td:first-child {
  color: #111827;
}

.price-row td:not(:first-child) {
  font-size: 1.25rem;
}

.price-row .premium-text {
  color: #059669;
}

.x-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af;
  margin: 0 auto;
}

/* Process Grid */
.process-grid {
  display: grid;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-step {
  position: relative;
}

.process-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.3s;
}

.process-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.step-number {
  width: 4rem;
  height: 4rem;
  background-color: #059669;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.process-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.process-card p {
  color: #4b5563;
}

.arrow {
  display: none;
  position: absolute;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #86efac;
}

@media (min-width: 768px) {
  .arrow {
    display: block;
  }
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 100%);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.testimonial-card:nth-child(2) {
  background: linear-gradient(135deg, #ecfeff 0%, #ffffff 100%);
}

.testimonial-card:nth-child(3) {
  background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  color: #fbbf24;
  font-size: 1.25rem;
}

.testimonial-text {
  color: #374151;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  background-color: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #047857;
  font-weight: 700;
}

.testimonial-card:nth-child(2) .author-avatar {
  background-color: #cffafe;
  color: #0891b2;
}

.testimonial-card:nth-child(3) .author-avatar {
  background-color: #fef3c7;
  color: #d97706;
}

.author-name {
  font-weight: 600;
  color: #111827;
}

.author-title {
  font-size: 0.875rem;
  color: #4b5563;
}

/* FAQ Styles */
.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 1rem;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background-color: #f9fafb;
}

.faq-question span {
  font-weight: 600;
  color: #111827;
  padding-right: 1rem;
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #059669;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  color: #4b5563;
  line-height: 1.625;
}

/* Policy Section */
.policy-card {
  max-width: 64rem;
  margin: 0 auto;
  background-color: #fffbeb;
  border: 2px solid #fde68a;
  border-radius: 1rem;
  padding: 2rem;
}

.policy-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.policy-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: #d97706;
}

.policy-content {
  color: #374151;
}

.policy-item {
  margin-bottom: 1.5rem;
}

.policy-item h3 {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.policy-item ul {
  list-style-type: disc;
  list-style-position: inside;
  margin-left: 0.5rem;
}

.policy-item li {
  margin-bottom: 0.25rem;
}

.disclaimer {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 2px solid #fbbf24;
}

.disclaimer-title {
  font-weight: 600;
  color: #92400e;
  margin-bottom: 0.5rem;
}

.disclaimer-text {
  color: #374151;
  line-height: 1.625;
}

/* Final CTA Section */
.final-cta-section {
  text-align: center;
}

.final-cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .final-cta-title {
    font-size: 3rem;
  }
}

.final-cta-description {
  font-size: 1.25rem;
  color: #a7f3d0;
  margin-bottom: 2rem;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .final-cta-buttons {
    flex-direction: row;
  }
}

.final-btn-primary {
  padding: 1.25rem 2.5rem;
  background-color: white;
  color: #059669;
  font-weight: 700;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: all 0.2s;
  transform: translateY(0);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.125rem;
}

.final-btn-primary:hover {
  background-color: #f9fafb;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.final-btn-secondary {
  padding: 1.25rem 2.5rem;
  background-color: #047857;
  color: white;
  font-weight: 700;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 2px solid white;
  text-decoration: none;
  transition: all 0.2s;
  transform: translateY(0);
  font-size: 1.125rem;
}

.final-btn-secondary:hover {
  background-color: #065f46;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

/* Footer */
.footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-column h3 {
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-column p {
  font-size: 0.875rem;
  line-height: 1.625;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 640px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .section-title {
    font-size: 1.875rem;
  }
  
  .pricing-card.premium {
    transform: none;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .arrow {
    display: none;
  }
}
