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

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", sans-serif;
  line-height: 1.6;
  color: #111111;
  background-color: #ffffff;
}

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

/* Header */
.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #c70039;
  text-decoration: none;
}

.nav-links {
  display: none;
  gap: 1.5rem;
}

.nav-link {
  color: #111111;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  color: #c70039;
}

.nav-right {
  display: flex;
  gap: 1rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
}

.btn-primary {
  background-color: #c70039;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #a50030;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: #111111;
  border: 1px solid #e5e5e5;
}

.btn-outline:hover {
  background-color: #fafafa;
  border-color: #c70039;
  color: #c70039;
}

.btn-large {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.full-width {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 5rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #111111;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #c70039;
  margin-bottom: 2rem;
  font-weight: 600;
}

.hero-description {
  font-size: 1.125rem;
  color: #666666;
  margin-bottom: 3rem;
  line-height: 1.7;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

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

  .hero-subtitle {
    font-size: 2rem;
  }
}

/* Sections */
.section {
  padding: 4rem 1rem;
}

.bg-light {
  background-color: #fafafa;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #111111;
}

.section-title.center {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #666666;
  margin-bottom: 2rem;
}

.section-subtitle.center {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.section-description {
  font-size: 1.125rem;
  color: #666666;
  line-height: 1.7;
}

.section-description.center {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

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

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

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

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.card {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: #c70039;
  box-shadow: 0 4px 12px rgba(199, 0, 57, 0.1);
  transform: translateY(-2px);
}

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

.card-icon {
  font-size: 2rem;
  line-height: 1;
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: #111111;
}

.card-description {
  color: #666666;
  line-height: 1.6;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

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

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

.pricing-card {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: #c70039;
  box-shadow: 0 4px 12px rgba(199, 0, 57, 0.1);
  transform: translateY(-2px);
}

.pricing-card.featured {
  border-color: #c70039;
  box-shadow: 0 4px 12px rgba(199, 0, 57, 0.15);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #c70039;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-header {
  flex: 1;
  margin-bottom: 1.5rem;
}

.pricing-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111111;
}

.pricing-price {
  margin-bottom: 1rem;
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: #c70039;
}

.period {
  color: #666666;
}

.pricing-description {
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.5;
}

/* Included Features */
.included-features {
  max-width: 64rem;
  margin: 0 auto;
}

.features-title {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #111111;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

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

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #111111;
  font-weight: 500;
}

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

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.testimonial {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.testimonial:hover {
  border-color: #c70039;
  box-shadow: 0 4px 12px rgba(199, 0, 57, 0.1);
}

.stars {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.testimonial-text {
  color: #666666;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: #111111;
}

/* FAQ */
.faq-list {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #c70039;
  box-shadow: 0 2px 8px rgba(199, 0, 57, 0.1);
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #111111;
}

.faq-answer {
  color: #666666;
  line-height: 1.6;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

.benefit {
  text-align: center;
  padding: 1rem;
}

.benefit-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}

.benefit-title {
  font-weight: 600;
  font-size: 1rem;
  color: #111111;
}

/* Final CTA */
.final-cta {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

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

/* Footer */
.footer {
  background-color: #111111;
  color: #ffffff;
  padding: 3rem 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.footer-main {
  max-width: 24rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #c70039;
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}

.footer-description {
  color: #cccccc;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-contact {
  font-size: 0.875rem;
  color: #cccccc;
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

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

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

/* Text Links */
.text-link {
  color: #c70039;
  text-decoration: none;
  font-weight: 500;
}

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

/* Icons */
.icon {
  display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .nav-right {
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .section {
    padding: 2rem 1rem;
  }

  .hero {
    padding: 3rem 1rem;
  }
}

/* Smooth transitions and animations */
* {
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}

/* Accessibility improvements */
.btn:focus,
.nav-link:focus,
.text-link:focus {
  outline: 2px solid #c70039;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .header,
  .footer,
  .btn {
    display: none !important;
  }

  body {
    color: #000000 !important;
    background: #ffffff !important;
  }
}
