.eic-stepper-text {
    --stepper-color: #0067ed;
    --stepper-gap: 36px;
    --stepper-dot-size: 14px;
    --stepper-dot-half: 7px;
    --stepper-dot-offset: 4px;
    max-width: 800px;
}

.eic-stepper-text .stepper-text-title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #0b1b3a;
    margin: 0 0 24px 0;
}

.eic-stepper-text .stepper-text-steps {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
    display: grid;
    gap: 0;
}

.eic-stepper-text .stepper-text-step {
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: 16px;
    align-items: stretch;
    padding-bottom: var(--stepper-gap);
    position: relative;
}

.eic-stepper-text .stepper-text-step:last-child {
    padding-bottom: 0;
}

.eic-stepper-text .stepper-text-marker {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 24px;
    height: 100%;
}

.eic-stepper-text .stepper-text-dot {
    position: relative;
    width: var(--stepper-dot-size);
    height: var(--stepper-dot-size);
    border-radius: 50%;
    background: var(--stepper-color);
    margin-top: var(--stepper-dot-offset);
}

.eic-stepper-text .stepper-text-dot::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: var(--stepper-color);
    opacity: 0.12;
    z-index: -1;
    animation: eic-stepper-pulse 2.4s ease-in-out infinite;
}

.eic-stepper-text .stepper-text-line {
    position: absolute;
    top: calc(var(--stepper-dot-offset) + var(--stepper-dot-half));
    width: 2px;
    height: auto;
    bottom: calc(-1 * var(--stepper-gap) + var(--stepper-dot-offset) + var(--stepper-dot-half) - 18px);
    background: var(--stepper-color);
    opacity: 0.35;
}

@keyframes eic-stepper-pulse {
    0% {
        transform: scale(1);
        opacity: 0.14;
    }
    50% {
        transform: scale(1.12);
        opacity: 0.26;
    }
    100% {
        transform: scale(1);
        opacity: 0.14;
    }
}

@media (prefers-reduced-motion: reduce) {
    .eic-stepper-text .stepper-text-dot::after {
        animation: none;
    }
}

.eic-stepper-text .stepper-text-step-title {
    font-size: 18px;
    font-weight: 700;
    color: #0b1b3a;
    margin-bottom: 6px;
}

.eic-stepper-text .stepper-text-step-text {
    font-size: 16px;
    line-height: 1.6;
    color: #3b4a63;
}

.eic-stepper-text .stepper-text-paragraph {
    font-size: 16px;
    line-height: 1.7;
    color: #3b4a63;
    margin: 0 0 28px 0;
}

.eic-stepper-text .stepper-text-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0067ed, #0049a8);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 103, 237, 0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.eic-stepper-text .stepper-text-cta i {
    margin-right: 10px;
    font-size: 0.9em;
}

.eic-stepper-text .stepper-text-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 103, 237, 0.3);
}

.eic-stepper-text .stepper-text-cta:focus-visible {
    outline: 2px solid #0067ed;
    outline-offset: 3px;
}

@media (max-width: 768px) {
    .eic-stepper-text {
        max-width: 100%;
    }

    .eic-stepper-text .stepper-text-title {
        font-size: 26px;
    }

    .eic-stepper-text .stepper-text-step {
        grid-template-columns: 24px 1fr;
    }
}
