.hero {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.hero__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.hero__subtitle {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
}

.hero__cta {
  display: inline-block;
  padding: 14px 28px;
  background-color: #009C8F;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
}

.hero__services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 60px;
}

.service-card {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}

.service-card:hover {
  border-color: #009C8F;
  color: #009C8F;
}

.hero__benefits,
.hero__usecases {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.hero__benefits li,
.hero__usecases li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
}

.hero__benefits li,
.hero__usecases li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  transition: transform 0.2s ease, color 0.2s ease;
}

.hero__benefits li i,
.hero__usecases li i {
  transition: color 0.2s ease;
}

.hero__benefits li:hover,
.hero__usecases li:hover {
  transform: scale(1.08);
  color: #009C8F;
}

.hero__benefits li:hover i,
.hero__usecases li:hover i {
  color: #009C8F;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 62px;
}

.hero__cta-outline {
  display: inline-block;
  padding: 14px 28px;
  background-color: transparent;
  color: #009C8F;
  font-weight: 600;
  border: 2px solid #009C8F;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero__cta-outline:hover {
  background-color: #009C8F;
  color: #fff;
}