/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #ffffff;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: clamp(2rem, 8vw, 5.5rem);
  font-weight: 900;
  margin-bottom: 2rem;
  color: #0f0f0f;
  letter-spacing: -0.04em;
  line-height: 1.1;
  opacity: 0;
  animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: #525252;
  margin-bottom: 3rem;
  line-height: 1.6;
  opacity: 0;
  animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.btn-primary {
  background: #0f0f0f;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.005em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background: #f8f8f8;
  color: #525252;
  padding: 1rem 2.5rem;
  border: 1px solid #e5e5e5;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.005em;
}

.btn-secondary:hover {
  background: #f0f0f0;
  border-color: #d5d5d5;
  color: #0f0f0f;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
