/* How It Works - Hero Section */
.how-hero {
  background-color: #F8FAFC;
  padding: 120px 0 100px;
  text-align: center;
}

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

.how-hero-text {
  flex: 1 1 480px;
  text-align: left;
}

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

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

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

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

/* Responsive */
@media (max-width: 768px) {
  .how-hero-text {
    text-align: center;
  }

  .how-hero-text h1 {
    font-size: 2rem;
  }

  .how-hero-content {
    flex-direction: column;
    text-align: center;
  }
}

.steps-section {
  background-color: #FFFFFF;
  padding: 100px 0;
}

.step-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.step-block.reverse {
  flex-direction: row-reverse;
}

.step-image {
  flex: 1 1 400px;
  text-align: center;
  height: 40vh;
  background-color: #F8FAFC;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

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

.step-text {
  flex: 1 1 480px;
}

.step-text h2 {
  font-size: 1.6rem;
  color: #373A40;
  margin-bottom: 16px;
}

.step-text p {
  font-size: 1rem;
  color: #686D76;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .step-block,
  .step-block.reverse {
    flex-direction: column;
    text-align: center;
  }

  .step-text {
    text-align: center;
  }
}


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

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

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

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

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

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

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

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

.feature-card p {
  font-size: 0.95rem;
  color: #686D76;
  line-height: 1.5;
}

.use-case-callout {
  background-color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
}

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

.use-case-callout .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-item {
  background-color: #F8FAFC;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

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

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

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

.use-case-item p {
  font-size: 0.95rem;
  color: #686D76;
  line-height: 1.5;
}

.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;
  text-decoration: none;
  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;
}


