/* Hero section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  overflow: hidden;
  background: linear-gradient(135deg, 
    rgba(37, 99, 235, 0.1) 0%,
    rgba(14, 165, 233, 0.08) 25%,
    rgba(139, 92, 246, 0.1) 50%,
    rgba(14, 165, 233, 0.08) 75%,
    rgba(37, 99, 235, 0.1) 100%
  );
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%,
    rgba(139, 92, 246, 0.1) 0%,
    rgba(37, 99, 235, 0.1) 25%,
    rgba(14, 165, 233, 0.05) 50%,
    transparent 70%
  );
  z-index: 0;
}

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

.hero-title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  display: block;
  margin-top: var(--space-2);
  color: #ff6b00;
  background: linear-gradient(135deg, #ff6b00, #ff8800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--color-neutral-700);
  margin-bottom: var(--space-6);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-6);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  border: none;
  padding: var(--space-3) var(--space-5);
  font-size: var(--font-size-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent-light));
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-neutral-600);
  font-size: var(--font-size-sm);
  opacity: 0.7;
  cursor: pointer;
  z-index: 2;
}

.scroll-text {
  margin-bottom: var(--space-2);
  font-weight: var(--font-weight-medium);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: rotate(45deg);
}