/* Hero Component Styles */
.hero-section {
  background: linear-gradient(135deg, var(--soft) 0%, #ffffff 100%);
}

.hero-title {
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.hero-title .text-primary {
  font-size: 1.15em;
  letter-spacing: -0.02em;
}

.hero-tagline {
  color: #2d3748;
  text-transform: none;
}

.hero-subtitle {
  color: #4a5568;
}

.btn-primary {
  background: var(--primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(70, 158, 131, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 15px 40px rgba(70, 158, 131, 0.4);
}

.btn-secondary {
  transition: all 0.3s ease;
  position: relative;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.btn-secondary:hover::after {
  width: 100%;
}