body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
}

.homepage-main {
  width: 100%;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 150ms ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}
.btn--primary {
  background: linear-gradient(90deg, #ff66b3, #8a2be2);
  color: #ffe6fb;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(138, 43, 226, 0.3);
}
.btn--secondary {
  background: #ffffff;
  color: #8a2be2;
  border-color: #8a2be2;
}
.btn--secondary:hover {
  background: #fdf6ff;
  transform: translateY(-2px);
}
.btn--large {
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #fdf6ff, #f8f0ff);
  text-align: center;
  padding: 6rem 1.5rem 8rem;
}
.hero__content {
  max-width: 1100px;
  margin: 0 auto;
}
.hero__title {
  font-size: 3rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: 700;
}
.hero__subtitle {
  font-size: 1.25rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.hero__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Features Section */
.features {
  padding: 5rem 1.5rem;
  background: #ffffff;
  text-align: center;
}
.features__title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #333;
}
.features__subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.feature-card__icon {
  font-size: 3rem;
  background: linear-gradient(90deg, #ff66b3, #8a2be2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  display: inline-block;
}
.feature-card__title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #333;
}
.feature-card__text {
  font-size: 1rem;
  color: #666;
}

/* Final CTA Section */
.final-cta {
  padding: 6rem 1.5rem;
  text-align: center;
  background: #f9f9f9;
}
.final-cta__title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.final-cta__text {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer-main {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: #2b2b2b;
  color: #f4f4f4;
  font-size: 0.9rem;
}
.site-footer-main p {
  margin: 0;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .features__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 4rem 1.5rem 5rem;
  }
  .hero__title {
    font-size: 2.25rem;
  }
  .hero__subtitle {
    font-size: 1.1rem;
  }
  .hero__cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .hero__cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .features {
    padding: 4rem 1.5rem;
  }
  .features__grid {
    grid-template-columns: 1fr;
  }
  .features__title,
  .final-cta__title {
    font-size: 2rem;
  }
  .final-cta {
    padding: 4rem 1.5rem 5rem;
  }
}/*# sourceMappingURL=style.css.map */