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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

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

.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  color: #1e40af;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

.nav a:hover {
  color: #1e40af;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #1f2937;
  cursor: pointer;
  padding: 8px;
}

.btn-primary {
  background-color: #1e40af;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-primary:hover {
  background-color: #1e3a8a;
}

.btn-secondary {
  background-color: #ffffff;
  color: #1e40af;
  border: 2px solid #1e40af;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background-color: #1e40af;
  color: #ffffff;
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.hero {
  padding: 120px 0 100px;
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  color: #4b5563;
  margin-bottom: 36px;
  line-height: 1.7;
}

.features {
  padding: 100px 0;
  background-color: #ffffff;
}

.features h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 64px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  padding: 32px;
  background-color: #f9fafb;
  border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

.testimonials {
  padding: 100px 0;
  background-color: #f9fafb;
}

.testimonials h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 64px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 36px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.quote-icon {
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 24px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 16px;
  color: #111827;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 14px;
  color: #6b7280;
}

.pricing {
  padding: 100px 0;
  background-color: #ffffff;
}

.pricing h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 64px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background-color: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: #1e40af;
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.15);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1e40af;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.pricing-description {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 24px;
  min-height: 48px;
}

.price {
  margin-bottom: 32px;
}

.price .amount {
  font-size: 42px;
  font-weight: 700;
  color: #111827;
}

.price .currency {
  font-size: 16px;
  color: #6b7280;
  margin-left: 4px;
}

.features-list {
  list-style: none;
  margin-bottom: 32px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: #4b5563;
}

.pricing-card button {
  width: 100%;
}

.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta p {
  font-size: 18px;
  color: #e0e7ff;
  margin-bottom: 36px;
}

.cta .btn-primary {
  background-color: #ffffff;
  color: #1e40af;
}

.cta .btn-primary:hover {
  background-color: #f3f4f6;
}

.footer {
  background-color: #111827;
  padding: 64px 0 32px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
}

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

.footer-copyright p {
  color: #6b7280;
  font-size: 14px;
}

.legal-page {
  padding: 80px 0;
  background-color: #ffffff;
}

.legal-page h1 {
  font-size: 42px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 48px;
  text-align: center;
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.legal-section p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-section ul {
  list-style: disc;
  padding-left: 32px;
  margin-bottom: 16px;
}

.legal-section li {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    padding: 20px 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    gap: 16px;
  }

  .nav.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-content .btn-primary {
    display: none;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .features,
  .testimonials,
  .pricing,
  .cta {
    padding: 60px 0;
  }

  .features h2,
  .testimonials h2,
  .pricing h2,
  .cta h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    gap: 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .legal-page {
    padding: 60px 0;
  }

  .legal-page h1 {
    font-size: 32px;
  }

  .legal-section h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .features h2,
  .testimonials h2,
  .pricing h2,
  .cta h2 {
    font-size: 28px;
  }

  .feature-card,
  .testimonial-card,
  .pricing-card {
    padding: 24px;
  }
}
