.hero {
  padding: 80px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-title {
  font-size: 64px;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 800px;
}
.hero-subtitle {
  font-size: 20px;
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 80px;
}
.hero-image-container {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: auto;
  position: relative;
}
.hero-img-full {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
