.hero {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 9%;
}

.eyebrow-container {
    position: relative;
    margin-bottom: 1.2rem;
}
  
.eyebrow {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    padding-bottom: 10px;
    display: inline-block;
    margin-bottom: 2rem;
}
  
.eyebrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: width 0.3s ease;
}
  
.eyebrow-container:hover .eyebrow::after {
    width: 100%;
}
  
@media (max-width: 768px) {
    .eyebrow {
      font-size: 12px;
      letter-spacing: 1px;
    }
}

.main-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    letter-spacing: 0.5px;
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    max-width: 800px;
    margin: 2rem auto 4rem auto;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
}