/* ============================================
   Stepper Block
   ============================================ */

.forzaco-stepper {
    position: relative;
    padding: 40px 80px 120px;
    max-width: 1000px;
    font-family: var(--fc-font, "Poppins", Helvetica, sans-serif);
    -webkit-font-smoothing: antialiased;
}

/* ── Vertical line ── */

.forzaco-stepper__line {
    position: absolute;
    z-index: 1;
    left: 107px;
    top: 0;
    height: 0;
    width: 2px;
    background: rgba(69, 69, 196, 0.1);
}

.forzaco-stepper__line-progress {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--fc-primary, #4545C4) 0%, var(--fc-secondary, #20FFC9) 100%);
}

/* ── Step row ── */

.forzaco-stepper__step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0 48px;
    margin-bottom: 56px;
    position: relative;
}

.forzaco-stepper__step:last-child {
    margin-bottom: 0;
}

/* ── Number bubble ── */

.forzaco-stepper__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--fc-primary, #4545C4);
    background: var(--fc-bg, #fdf8f4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--fc-primary, #4545C4);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin-top: 2px;
    opacity: 0;
    transition: background 0.4s, color 0.4s;
}

.forzaco-stepper__number.is-done {
    background: var(--fc-primary, #4545C4);
    color: white;
}

/* ── Card ── */

.forzaco-stepper__card {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(69, 69, 196, 0.1);
    box-shadow: 0 2px 24px rgba(69, 69, 196, 0.06);
    overflow: hidden;
    opacity: 0;
    transform: translateX(40px);
    will-change: transform, opacity;
}

/* ── Tag zones ── */

.forzaco-stepper__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 24px;
    background: rgba(69, 69, 196, 0.04);
    justify-content: flex-start;
}

.forzaco-stepper__tags--right {
    justify-content: flex-end;
}

.forzaco-stepper__tags-caption {
    font-size: 11px;
    font-style: italic;
    color: rgba(96, 96, 160, 0.5);
    align-self: center;
    margin-right: auto;
}

.forzaco-stepper__tags--top {
    border-bottom: 1px solid rgba(69, 69, 196, 0.08);
}

.forzaco-stepper__tags--bottom {
    border-top: 1px solid rgba(69, 69, 196, 0.08);
}

/* ── Badges ── */

.forzaco-stepper__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: white;
    border-radius: 100px;
    padding: 5px 12px 5px 9px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(69, 69, 196, 0.22);
    color: var(--fc-primary, #4545C4);
    opacity: 0;
    transform: translateY(6px);
}

.forzaco-stepper__badge--right {
    padding: 5px 9px 5px 12px;
    flex-direction: row-reverse;
}

.forzaco-stepper__badge-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    opacity: 0.55;
    color: var(--fc-primary, #4545C4);
}

.forzaco-stepper__badge-icon svg {
    display: block;
    width: 11px;
    height: 11px;
}

/* ── Card body ── */

.forzaco-stepper__body {
    padding: 28px 28px 26px;
}

.forzaco-stepper__step-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: var(--fc-black, #020617);
    margin: 0 0 12px;
    line-height: 1.3;
}

.forzaco-stepper__step-desc {
    font-size: 14px;
    line-height: 1.85;
    color: #6060a0;
    margin: 0;
}

.forzaco-stepper__step-desc p {
    margin: 0 0 8px;
}

.forzaco-stepper__step-desc p:last-child {
    margin-bottom: 0;
}

.forzaco-stepper__step-desc a {
    color: var(--fc-primary, #4545C4);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.forzaco-stepper__step-desc a:hover {
    opacity: 0.7;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
    .forzaco-stepper {
        padding-left: 0;
        padding-right: 0;
    }

    .forzaco-stepper__line {
        left: 28px;
    }
}

@media (max-width: 768px) {
    .forzaco-stepper {
        padding-left: 0;
        padding-right: 0;
    }

    .forzaco-stepper__line {
        display: none;
    }

    .forzaco-stepper__step {
        grid-template-columns: 1fr;
        margin-bottom: 32px;
    }

    .forzaco-stepper__number {
        margin-bottom: 12px;
    }

    .forzaco-stepper__card {
        transform: translateY(24px);
    }

    .forzaco-stepper__body {
        padding: 20px;
    }

    .forzaco-stepper__tags {
        padding: 12px 16px;
    }
}
