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

/* ── Language toggle ─────────────────────────────────────────────────── */
.lang-toggle {
    position: absolute;
    top: 16px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 100px;
    padding: 4px 6px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lang-toggle__btn {
    background: none;
    border: none;
    color: #111;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    letter-spacing: 0.04em;
}

.lang-toggle__btn.is-active {
    background: linear-gradient(120deg, #FF5642, #DE1994);
    color: #fff;
}

.lang-toggle__btn:not(.is-active):hover {
    color: #000;
}

.lang-toggle__sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.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: 620px;
    margin: 5px auto 12px;
    font-size: 62px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--color-dark);
}

.hero__subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #111;
    margin-bottom: 8px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

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

@keyframes ctaFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}

@keyframes ctaGlow {
    0%   { box-shadow: 0 0 0 6px rgba(255,86,66,0.25),  0 8px 32px rgba(222,25,148,0.40), 0 0 40px rgba(255,86,66,0.30); }
    50%  { box-shadow: 0 0 0 10px rgba(222,25,148,0.30), 0 12px 48px rgba(255,86,66,0.50), 0 0 60px rgba(222,25,148,0.40); }
    100% { box-shadow: 0 0 0 6px rgba(255,86,66,0.25),  0 8px 32px rgba(222,25,148,0.40), 0 0 40px rgba(255,86,66,0.30); }
}

@keyframes ctaGradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero__cta {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 27px;
    border: none;
    border-radius: 100px;
    background: linear-gradient(120deg, #FF5642, #DE1994, #FF5642, #ff8c42);
    background-size: 300% 300%;
    color: #ffffff;
    font-size: 24.7px;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    animation:
        ctaGlow     3s ease-in-out infinite,
        ctaGradient 4s ease infinite;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

/* ── CTA wrapper + animated cursor ──────────────────────────────────── */
.hero__cta-wrap {
    position: relative;
    display: inline-block;
    margin-top: 10px;
}

.hero__cta-wrap .hero__cta {
    margin-top: 0;
}

@keyframes cursorMove {
    /* start slightly below-right of button center */
    0%   { transform: translate(36px, 36px);  opacity: 0; }
    10%  { transform: translate(36px, 36px);  opacity: 1; }
    /* glide to button center */
    40%  { transform: translate(0px, 0px);    opacity: 1; }
    /* click press */
    50%  { transform: translate(0px, 0px) scale(0.82); opacity: 1; }
    /* click release */
    60%  { transform: translate(0px, 0px);    opacity: 1; }
    /* hold briefly */
    74%  { transform: translate(0px, 0px);    opacity: 1; }
    /* retreat and fade */
    90%  { transform: translate(36px, 36px);  opacity: 0; }
    100% { transform: translate(36px, 36px);  opacity: 0; }
}

@keyframes cursorClickRipple {
    0%   { transform: scale(0);   opacity: 0.7; }
    60%  { transform: scale(2.4); opacity: 0; }
    100% { transform: scale(2.4); opacity: 0; }
}

.hero__cursor {
    position: absolute;
    /* anchor tip at button center */
    top: 50%;
    left: 50%;
    pointer-events: none;
    animation: cursorMove 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45));
    z-index: 10;
}

.hero__cursor::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    animation: cursorClickRipple 3s ease-out infinite;
    animation-delay: 1.14s;
    pointer-events: none;
}

.hero__cta:hover {
    animation-play-state: paused;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 0 0 10px rgba(222,25,148,0.25), 0 16px 48px rgba(255,86,66,0.50);
}

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

@media (max-width: 768px) {
    .hero {
        padding-top: 56px;
    }

    .lang-toggle {
        top: 12px;
        right: 50%;
        transform: translateX(50%);
    }

    .hero__cta {
        font-size: 21px;
        padding: 13px 24px;
    }

    .hero__cta-icon {
        width: 32px;
        height: 32px;
    }

    .hero__cta-wrap {
        margin-bottom: 130px;
    }
}

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

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

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