/* Hero Section */
.hero {
  /* Subtract header height for a perfect full-screen fit */
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 0;
}

.hero-content {
  text-align: center;
  width: 100%;
  max-width: 85rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1.1;
  margin-bottom: 2rem;
  background: linear-gradient(to right, #fff, var(--color-primary));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-group {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
