.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 7%;
    min-height: 100vh;
    background-color: var(--color-white);
    gap: 5rem;
}

.hero__content {
    flex: 1;
    color: var(--color-purple-950);
}

.hero__tagline {
    font-size: 1.5rem;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--color-purple-600);
    margin-bottom: 0.5rem;
}

.hero__heading {
    font-size: 6.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1.2rem 0;
}

.hero__heading .highlight {
    font-style: italic;
    color: transparent;
    -webkit-text-stroke: 2px var(--color-purple-600);
    animation: glowPulse 2s infinite ease-in-out;
}

.hero__heading .highlight::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-purple-600);
    text-shadow: 0 0 6px var(--color-majorelle-blue);
    animation: glowPulse 3s infinite ease-in-out;
    pointer-events: none;
}

.hero__subheading {
    font-size: 1.6rem;
    color: var(--color-purple-800);
    margin-bottom: 2rem;
    max-width: 800px;
}

.hero__cta {
    display: inline-block;
    background-color: var(--color-majorelle-blue);
    color: white;
    padding: 0.9rem 1.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(105, 60, 235, 0.3);
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero__cta:hover {
    background-color: var(--color-purple-600);
    transform: translateY(-2px);
}

.hero__image {
    flex: 1;
    text-align: center;
}

.hero__image img {
    width: 100%;
    max-width: 700px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(10px);
    }

    50% {
        transform: translateY(-14px);
    }
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 5%;
    }

    .hero__content,
    .hero__image {
        width: 100%;
    }

    .hero__heading {
        font-size: 2.4rem;
    }
}