.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(
    135deg,
    rgba(204, 251, 241, 0.4) 0%,
    rgba(255, 249, 242, 0.8) 50%,
    rgba(153, 246, 228, 0.3) 100%
  );
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1562751362-404243c2eea3?crop=entropy&cs=srgb&fm=jpg&ixid=M3w3NDk1ODF8MHwxfHNlYXJjaHwxfHx3ZWxsbmVzc3xlbnwwfHx8fDE3NjIyNzkyNTF8MA&ixlib=rb-4.1.0&q=85');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--accent-teal-200);
  border-radius: 2rem;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-teal-600);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-badge svg {
  color: var(--accent-teal-500);
}

.text-accent {
  color: var(--accent-teal-600);
  position: relative;
}

.hero-subtitle {
  max-width: 700px;
  margin: 1.5rem auto 2.5rem;
  color: var(--text-secondary);
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
  min-height: 3.5rem;
}

.hero-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s ease;
}

.hero-feature-item:hover {
  transform: translateY(-4px);
}

.feature-icon {
  color: var(--accent-teal-500);
  flex-shrink: 0;
}

.feature-title {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.feature-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 7rem 1rem 3rem;
    min-height: 90vh;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-large {
    width: 100%;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-feature-item {
    justify-content: flex-start;
  }
}
