.skills {
    padding: 90px 0;
    background: var(--c-bg);
    color: var(--c-text);
    font-family: "Poppins", sans-serif;
}

.stages-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 28px;
    align-items: center;
}

.stages-left {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stages-left::before {
    content: "";
    position: absolute;
    width: 576px;
    height: 576px;
    border-radius: 50%;
    border: 3px solid rgba(254, 254, 255, 0.12);
    opacity: 0.55;
}

.stages-circle {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border: 8px solid rgba(254, 254, 255, 0.08);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.45);
}

.stages-circle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(94, 23, 235, 0.55) 0%,
            rgba(14, 15, 21, 0.55) 60%,
            rgba(0, 0, 0, 0.5) 100%);
}

/* Lista derecha */
.stages-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.stage-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 16px;
    align-items: center;
    padding: 14px 14px;
    border-radius: 12px;
    background: rgba(34, 34, 34, 0.7);
    border: 1px solid rgba(254, 254, 255, 0.08);
}

.stage-badge {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--c-text);
    background: var(--c-primary);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.stage-item:nth-child(2) .stage-badge {
    background: var(--c-tertiary);
}

.stage-item:nth-child(3) .stage-badge {
    background: rgba(254, 254, 255, 0.14);
    border: 2px solid rgba(254, 254, 255, 0.16);
}

.stage-item:nth-child(4) .stage-badge {
    background: var(--c-secondary);
    color: #000;
}

.stage-item:nth-child(5) .stage-badge {
    background: rgba(254, 254, 255, 0.16);
    border: 2px solid rgba(254, 254, 255, 0.16);
}

.stage-item:nth-child(6) .stage-badge {
    background: var(--c-primary);
}

.stage-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--c-text);
}

.stage-desc {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(254, 254, 255, 0.88);
}

.stage-item:hover {
    border-color: rgba(94, 23, 235, 0.35);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* Responsive */
@media (max-width: 947px) {
    .stages-wrap {
        grid-template-columns: 1fr;
    }

    .stages-left {
        min-height: 420px;
    }

    .stages-left::before {
        width: 520px;
        height: 520px;
    }

    .stages-circle {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 500px) {
    .stages-left::before {
        width: 420px;
        height: 420px;
    }

    .stage-item {
        grid-template-columns: 54px 1fr;
    }

    .stage-badge {
        width: 52px;
        height: 52px;
    }
}