/* Registration Flow Roadmap */
:root {
    --rfr-4c58-primary: #0A58CA;
    --rfr-4c58-bg: #f8fafd;
    --rfr-4c58-card-bg: #ffffff;
    --rfr-4c58-text: #4a5568;
    --rfr-4c58-heading: #1a202c;
}

.rfr-4c58-wrapper {
    position: relative;
    padding: 60px 20px;
    background-color: var(--rfr-4c58-bg);
    overflow: hidden;
}

.rfr-4c58-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.rfr-4c58-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rfr-4c58-heading);
    margin-bottom: 15px;
}

.rfr-4c58-subheading {
    font-size: 1.125rem;
    color: var(--rfr-4c58-text);
    margin: 0;
}

.rfr-4c58-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.rfr-4c58-path-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.rfr-4c58-path {
    fill: none;
    stroke: var(--rfr-4c58-primary);
    stroke-width: 4px;
    stroke-linecap: round;
    filter: drop-shadow(0 0 8px rgba(10, 88, 202, 0.4));
    stroke-dasharray: 10000;
    stroke-dashoffset: 10000;
    transition: stroke-dashoffset 0.1s linear;
}

.rfr-4c58-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.rfr-4c58-step {
    display: flex;
    align-items: center;
    width: 100%;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.rfr-4c58-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.rfr-4c58-step-left {
    flex-direction: row;
}

.rfr-4c58-step-right {
    flex-direction: row-reverse;
}

.rfr-4c58-content-wrap, .rfr-4c58-empty-wrap {
    width: 45%;
}

.rfr-4c58-center-wrap {
    width: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.rfr-4c58-dot {
    width: 28px;
    height: 28px;
    background: var(--rfr-4c58-card-bg);
    border: 4px solid var(--rfr-4c58-primary);
    border-radius: 50%;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(10, 88, 202, 0.3);
    transition: transform 0.3s ease;
}

.rfr-4c58-dot-inner {
    width: 8px;
    height: 8px;
    background: var(--rfr-4c58-primary);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.rfr-4c58-step.is-visible .rfr-4c58-dot-inner {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.4s;
}

.rfr-4c58-card {
    background: var(--rfr-4c58-card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255,255,255,0.8);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.rfr-4c58-card:hover, .rfr-4c58-card:focus {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(10, 88, 202, 0.1);
    outline: none;
}

.rfr-4c58-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
}

.rfr-4c58-card-header-main {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rfr-4c58-card-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--rfr-4c58-primary);
    opacity: 0.2;
}

.rfr-4c58-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--rfr-4c58-heading);
    margin: 0;
    transition: color 0.3s ease;
}

.rfr-4c58-card.is-active .rfr-4c58-card-title {
    color: var(--rfr-4c58-primary);
}

.rfr-4c58-card-icon-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rfr-4c58-card-icon {
    font-size: 1.5rem;
    color: var(--rfr-4c58-primary);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.rfr-4c58-card.is-active .rfr-4c58-card-icon {
    opacity: 1;
}

.rfr-4c58-card-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.rfr-4c58-toggle-icon {
    color: var(--rfr-4c58-text);
    transition: transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rfr-4c58-toggle-icon svg {
    width: 20px;
    height: 20px;
}

.rfr-4c58-card.is-active .rfr-4c58-toggle-icon {
    transform: rotate(180deg);
    color: var(--rfr-4c58-primary);
}

.rfr-4c58-card-body {
    padding: 0 30px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

.rfr-4c58-card.is-active .rfr-4c58-card-body {
    max-height: 200px;
    opacity: 1;
    padding: 0 30px 24px;
}

.rfr-4c58-card-desc {
    font-size: 0.95rem;
    color: var(--rfr-4c58-text);
    line-height: 1.6;
    margin: 0;
    border-top: 1px solid rgba(10, 88, 202, 0.1);
    padding-top: 15px;
}

@media (max-width: 767px) {
    .rfr-4c58-timeline {
        padding: 20px 0;
    }
    .rfr-4c58-step {
        flex-direction: row !important;
    }
    .rfr-4c58-center-wrap {
        width: 15%;
        justify-content: flex-start;
    }
    .rfr-4c58-content-wrap {
        width: 85%;
    }
    .rfr-4c58-empty-wrap {
        display: none;
    }
    .rfr-4c58-card-header {
        padding: 18px 20px;
    }
    .rfr-4c58-card-title {
        font-size: 1.05rem;
    }
    .rfr-4c58-card.is-active .rfr-4c58-card-body {
        padding: 0 20px 18px;
    }
}
