.qs-feature-highlights {
  padding: 80px 0;
  background: #030308;
  position: relative;
  overflow: hidden;
}

.qs-feature-highlights__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.qs-feature-highlights__header h2 {
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.qs-feature-highlights__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

@media (min-width: 768px) {
  .qs-feature-highlights__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.qs-feature-highlights__item {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(56, 189, 248, 0.1);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.qs-feature-highlights__item:hover {
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-5px);
  background: rgba(15, 23, 42, 0.6);
}

.qs-feature-highlights__icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(56, 189, 248, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #38bdf8;
}

.qs-feature-highlights__icon {
  width: 30px;
  height: 30px;
}

.qs-feature-highlights__item-title {
  font-family: var(--qs-font-display, "Space Grotesk", sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.qs-feature-highlights__item-desc {
  color: #94a3b8;
  line-height: 1.6;
  font-size: 0.95rem;
}
