.sts-hero {
  position: relative;
  background: var(--sts-bg-alt);
  padding: 40px 0 32px;
  overflow: hidden;
}

.sts-hero-img {
  position: absolute;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: 32%;
  object-fit: contain;
  object-position: bottom;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.sts-hero-img-left {
  left: 0;
}

.sts-hero-img-right {
  right: 0;
}

.sts-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.sts-hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
}

.sts-hero-subtitle {
  color: var(--sts-muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0;
}

.sts-hero .sts-btn {
  margin-top: 8px;
}

.sts-hero .sts-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  margin-top: 24px;
  text-align: left;
  max-width: 750px;
}

.sts-hero .sts-feature {
  display: flex;
  gap: 12px;
  align-items: center;
}

.sts-hero .sts-feature-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sts-hero .sts-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sts-hero .sts-feature-title {
  font-size: 14px;
  color: #fff;
  margin: 0 0 2px;
  font-weight: 600;
}

.sts-hero .sts-feature-text {
  font-size: 11px;
  color: var(--sts-muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .sts-hero {
    padding: 56px 0 64px;
  }
  .sts-hero-title {
    font-size: 42px;
  }
  .sts-hero-img {
    max-width: 28%;
    opacity: 0.55;
  }
}

@media (max-width: 720px) {
  .sts-hero {
    padding: 40px 0 220px;
  }
  .sts-hero-img {
    top: auto;
    bottom: 0;
    transform: none;
    height: 200px;
    max-width: 50%;
    opacity: 0.85;
  }
  .sts-hero-title {
    font-size: 30px;
  }
  .sts-hero-subtitle {
    font-size: 14px;
  }
  .sts-hero .sts-features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
