
/* Hero Section */
.hero {
  padding: 140px 0 80px;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(270deg,
    #E4E9F2,
    #D8E5FF,
    #B1BEFF,
    #FFAE70,
    #E4E9F2
  );
  background-size: 600% 600%;
  animation: gradientFlow 18s ease infinite;
}
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #373A40;
}

.hero-text p {
  font-size: 1.1rem;
  color: #686D76;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}


/* How It Works Section */
.how-it-works {
  background-color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  background-image: url("../media/howItWorksBG.svg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.section-title {
  font-size: 2rem;
  color: #373A40;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: #686D76;
  margin-bottom: 60px;
}

.steps-wrapper {
  display: flex;
  justify-content: center;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 40px 2%;
  max-width: 1000px;
}

.step {
  width: 30%;
  background-color: #FFFFFF;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 35px 5px rgba(0, 0, 0, 0.05);
}

.step:hover {
  transform: translateY(-5px);
}

.media-placeholder {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: #B7BCC7;
  border-radius: 12px;
  opacity: 0.3;
}

.step h3 {
  font-size: 1.2rem;
  color: #373A40;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.95rem;
  color: #686D76;
}


.features {
  background-color: #F8FAFC;
  padding: 100px 0;
  text-align: center;
}

.features .section-title {
  font-size: 2rem;
  color: #373A40;
  margin-bottom: 10px;
}

.features .section-subtitle {
  font-size: 1rem;
  color: #686D76;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 40px;
  justify-content: center;
}

.feature-box {
  background-color: #FFFFFF;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-box:hover {
  transform: translateY(-6px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #D8E5FF; /* Light Auxiliary color */
  border-radius: 12px;
  margin-bottom: 20px;
  opacity: 0.7;
}
.feature-box h3 {
  font-size: 1.1rem;
  color: #373A40;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 0.95rem;
  color: #686D76;
}


.testimonials {
  background-color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials .section-title {
  font-size: 2rem;
  color: #373A40;
  margin-bottom: 10px;
}

.testimonials .section-subtitle {
  font-size: 1rem;
  color: #686D76;
  margin-bottom: 60px;
}

.testimonial-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 40px 30px;
  background-color: #F8FAFC;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-card .quote {
  font-size: 1.1rem;
  color: #373A40;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .user {
  font-weight: 500;
  color: #686D76;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #D8E5FF;
  color: #373A40;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  transition: background-color 0.3s ease;
}

.slider-btn:hover {
  background-color: #B1BEFF;
}

.slider-btn.prev {
  left: -20px;
}

.slider-btn.next {
  right: -20px;
}

@media (max-width: 768px) {
  .slider-btn.prev {
    left: 10px;
  }

  .slider-btn.next {
    right: 10px;
  }

  .testimonial-card {
    padding: 30px 20px;
  }
}


.pricing-teaser {
  background-color: #E4E9F2;
  padding: 80px 0;
  text-align: center;
}

.teaser-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  gap: 30px;
  text-align: center;
}

.teaser-text h2 {
  font-size: 1.8rem;
  color: #373A40;
  margin-bottom: 10px;
}

.teaser-text p {
  font-size: 1rem;
  color: #686D76;
  max-width: 700px;
  margin: 0 auto;
}

.teaser-button .btn {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 8px;
  font-weight: 500;
}

/* Optional: Slight wave-like shadow for separation */
.pricing-teaser::before {
  content: "";
  display: block;
  height: 20px;
  width: 100%;
  background: linear-gradient(to right, transparent 0%, #D8E5FF 50%, transparent 100%);
  opacity: 0.3;
  margin-bottom: -20px;
}


.use-cases {
  background-color: #F8FAFC;
  padding: 100px 0;
  text-align: center;
}

.use-cases .section-title {
  font-size: 2rem;
  color: #373A40;
  margin-bottom: 10px;
}

.use-cases .section-subtitle {
  font-size: 1rem;
  color: #686D76;
  margin-bottom: 60px;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  justify-content: center;
}

.use-case-box {
  background-color: #FFFFFF;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.use-case-box:hover {
  transform: translateY(-5px);
}

.use-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: #B7BCC7;
  border-radius: 12px;
  opacity: 0.3;
}

.use-case-box h3 {
  font-size: 1.2rem;
  color: #373A40;
  margin-bottom: 10px;
}

.use-case-box p {
  font-size: 0.95rem;
  color: #686D76;
}



.final-cta {
  background-color: #F8FAFC;
  padding: 100px 0;
  text-align: center;
}

.final-cta .cta-headline {
  font-size: 2rem;
  color: #373A40;
  margin-bottom: 25px;
}

.final-cta .cta-button {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  background-color: #3572EF;
  color: #FFFFFF;
  transition: background-color 0.3s ease;
}

.final-cta .cta-button:hover {
  background-color: #4D82BF;
}

.final-cta .cta-subtext {
  font-size: 0.95rem;
  color: #686D76;
  margin-top: 15px;
}


