.hero {
    position: relative;
    z-index: 5;
    padding: 32px 20px 10px;
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 8px 10px;

 background-color: white;
    border: 1px solid #e92f77;
    border-radius: var(--radius-pill);

 

    box-shadow: var(--shadow-sm);
}

.hero__badge-text {
    font-size: 11.49px;
    font-weight: 500;
    color: var(--color-dark);
    white-space: nowrap;
}

.hero__badge-star {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.hero__title {
    max-width: 520px;
    margin: 5px auto 12px;
    font-size: 62px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--color-dark);
}

.hero__subtitle {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(to right, #FF5642, #DE1994);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.hero__text {
    font-size: 18px;
    font-weight: 500;
    color: black;
    margin-bottom: 26px;
}

.hero__cta {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;

    padding: 15px 27px;
    border: none;
    border-radius: 100px;
    background: linear-gradient(to right, #FF5642, #DE1994);
    color: #ffffff;
    font-size: 24.7px;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 0 0 6px rgba(255, 86, 66, 0.2), 0 8px 32px rgba(222, 25, 148, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero__cta-icon {
    width: 40px;
    height: 40px;

}

.hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 0 8px rgba(222, 25, 148, 0.22), 0 16px 40px rgba(255, 86, 66, 0.42);
}

.hero__cta:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .hero__title {
        font-size: 30px;
    }

    .hero__subtitle {
        font-size: 18px;
        font-weight: 800;
    }

    .hero__text {
        font-size: 12px;
    }
}
