/* ================== FEATURES NEO (CLEAN) ================== */
.features-neo {
    position: relative;
    overflow: hidden;
    padding: 92px 0 68px;
    background:
        radial-gradient(900px 520px at 12% 12%, rgba(255, 108, 43, .22), transparent 60%),
        radial-gradient(900px 520px at 55% 0%, rgba(144, 97, 255, .26), transparent 60%),
        radial-gradient(900px 520px at 85% 20%, rgba(115, 147, 167, .22), transparent 62%),
        linear-gradient(180deg, #06111E 0%, #06111E 55%, #0a1730 100%);
}

/* VISUAL */
.features-neo__visual {
    display: flex;
    justify-content: center;
    /* ← centrado real */
    align-items: center;
    min-height: 460px;
    text-align: center;
}

.orbit {
    position: relative;
    aspect-ratio: 1 / 1;
}

.orbit--xl {
    width: min(620px, 52vw);
}

.orbit::before {
    content: "";
    position: absolute;
    inset: -22%;
    background:
        radial-gradient(closest-side at 60% 40%, rgba(255, 108, 43, .22), transparent 65%),
        radial-gradient(closest-side at 40% 70%, rgba(144, 97, 255, .22), transparent 65%);
    filter: blur(22px);
    opacity: .9;
    pointer-events: none;
}

.orbit::after {
    content: "";
    position: absolute;
    inset: 6%;
    border-radius: 999px;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, .08), transparent 52%),
        repeating-radial-gradient(circle at center,
            rgba(255, 255, 255, .14) 0px,
            rgba(255, 255, 255, .14) 1px,
            transparent 1px,
            transparent 56px);
    opacity: .22;
}

.orbit__center {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 54%;
    height: 52%;
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* ← centrado */
    text-align: center;
    /* ← centrado */
    padding: 22px 24px;
    background: rgba(6, 17, 30, .52);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
    backdrop-filter: blur(10px);
}

.orbit__metric {
    font-weight: 900;
    color: #F8F8F8;
    letter-spacing: -0.03em;
    line-height: 1.02;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.orbit__metric--big {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    margin-top: 4px;
}

.orbit__label {
    margin-top: 12px;
    font-size: .95rem;
    color: rgba(248, 248, 248, .70);
}

/* ORBS */
.orb {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: #F8F8F8;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
    backdrop-filter: blur(10px);
    transform: translate(-50%, -50%);
    animation: floaty 6.5s ease-in-out infinite;
}

.orb i {
    font-size: 22px;
    opacity: .95;
}

.orb--1 {
    left: 16%;
    top: 34%;
    animation-delay: 0s;
}

.orb--2 {
    left: 76%;
    top: 22%;
    animation-delay: .8s;
}

.orb--3 {
    left: 86%;
    top: 68%;
    animation-delay: 1.4s;
}

.orb--4 {
    left: 28%;
    top: 80%;
    animation-delay: 2.1s;
}

.orb--5 {
    left: 50%;
    top: 16%;
    animation-delay: 2.8s;
}

@keyframes floaty {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

.clients {
    margin-top: 24px;
    text-align: center;
}

.clients__note {
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 700;
}

.clients__track {
    display: flex;
    justify-content: center;
    /* ← centrado */
    overflow: hidden;
    gap: 18px;
    mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.clients__row {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-shrink: 0;
    animation: marquee 26s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.client-logo {
    height: 108px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    opacity: .78;
    filter: grayscale(1) contrast(1.1) brightness(1.15);
    transition: .25s ease;
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0) contrast(1.08) brightness(1.1);
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .features-neo {
        padding: 78px 0 62px;
    }

    .features-neo__visual {
        justify-content: center;
        min-height: 380px;
    }

    .orbit--xl {
        width: min(560px, 92vw);
    }

    .orbit__center {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .features-neo__visual {
        min-height: 340px;
    }

    .client-logo {
        height: 60px;
        max-width: 130px;
    }
}