/* Hero section styles */

main {
  scroll-margin-top: 88px;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  background: var(--neo-bg);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  padding: 80px 60px 80px 0px;
  max-width: 640px;
  margin-left: auto;
}

.hero-eyebrow {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #f59e0b;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  margin-top: 60px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--neo-text), #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 32px;
}

.hero-features {
  margin-bottom: 36px;
}

.feature-item {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 16px;
}

.feature-check-icon {
  color: var(--color-primary);
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text {
  font-size: 1rem;
  color: var(--neo-text);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(240,242,245,1) 0%, rgba(240,242,245,0) 20%);
  z-index: 1;
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 24px 24px 0;
}
