/* [project]/src/app/components/HeroSection/HeroSection.module.css [app-client] (css) */
.HeroSection-module__1olGuq__heroContainer {
  text-align: center;
  background: linear-gradient(#f7fafc 0%, #fff 100%);
  min-height: 71vh;
  padding: 4rem 2rem;
}

.HeroSection-module__1olGuq__heading {
  color: #1a202c;
  font-size: 2.5rem;
  font-weight: 700;
}

.HeroSection-module__1olGuq__subText {
  color: #4a5568;
  max-width: 600px;
  margin: 1rem auto 2rem;
}

.HeroSection-module__1olGuq__inputContainer {
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  display: flex;
}

.HeroSection-module__1olGuq__dateInput {
  border: 1px solid #cbd5e0;
  border-radius: 8px;
  padding: .6rem 1rem;
}

.HeroSection-module__1olGuq__startButton {
  color: #fff;
  cursor: pointer;
  background: #3182ce;
  border: none;
  border-radius: 8px;
  padding: .6rem 1.2rem;
  font-weight: 600;
  transition: background .2s;
}

.HeroSection-module__1olGuq__startButton:disabled {
  cursor: not-allowed;
  background: #a0aec0;
}

.HeroSection-module__1olGuq__featureGrid {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  display: flex;
}

.HeroSection-module__1olGuq__featureCard {
  background: #fff;
  border-radius: 12px;
  width: 260px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}

.HeroSection-module__1olGuq__featureCardHighlight {
  border: 2px solid #3182ce;
}

.HeroSection-module__1olGuq__icon {
  font-size: 2rem;
}

.HeroSection-module__1olGuq__dots {
  margin-top: 2rem;
}

.HeroSection-module__1olGuq__dot, .HeroSection-module__1olGuq__dotActive {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  display: inline-block;
}

.HeroSection-module__1olGuq__dot {
  background: #cbd5e0;
}

.HeroSection-module__1olGuq__dotActive {
  background: #3182ce;
}

/* [project]/src/app/styles/FeaturesGrid.module.css [app-client] (css) */
.FeaturesGrid-module__Gh3czG__section {
  background: #fafafa;
  padding: 80px 20px;
}

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

.FeaturesGrid-module__Gh3czG__card {
  text-align: center;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 32px 24px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}

.FeaturesGrid-module__Gh3czG__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .1);
}

.FeaturesGrid-module__Gh3czG__iconBox {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
}

.FeaturesGrid-module__Gh3czG__icon {
  color: #fff;
  font-size: 28px;
}

.FeaturesGrid-module__Gh3czG__title {
  color: #111;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.FeaturesGrid-module__Gh3czG__desc {
  color: #555;
  max-width: 280px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .FeaturesGrid-module__Gh3czG__section {
    padding: 60px 16px;
  }

  .FeaturesGrid-module__Gh3czG__card {
    padding: 28px 20px;
  }

  .FeaturesGrid-module__Gh3czG__title {
    font-size: 17px;
  }

  .FeaturesGrid-module__Gh3czG__desc {
    font-size: 14px;
  }
}

/*# sourceMappingURL=src_app_368b8ade._.css.map*/