.hero {
    --gradient-primary: linear-gradient(135deg, #00f5d4 0%, #00bbf9 100%);
    --gradient-secondary: linear-gradient(135deg, #9d4edd 0%, #00f5d4 100%);

    position: relative;
    padding-top: 120px;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

.hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.hero__content {
    max-width: 850px;
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 20px;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: textGradient 8s infinite alternate;
}

@keyframes textGradient {
    0% {
        background: var(--gradient-primary);
        background-clip: text;
        -webkit-background-clip: text;
    }

    100% {
        background: var(--gradient-secondary);
        background-clip: text;
        -webkit-background-clip: text;
    }
}

.hero__subtitle {
    font-size: 1.5rem;
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.hero .btn {
    padding: 16px 40px;
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .hero__title {
        font-size: 3rem;
    }

    .hero__subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }

    .hero .btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
}