/* ═══════════════════════════════════════════
   RL Process Steps – Pixel-Perfect Styles
   ═══════════════════════════════════════════ */

.rl-process-container {
    position: relative;
    width: 100%;
    margin: 40px 0;
}

/* The Horizontal Connector Line */
.rl-process-line {
    position: absolute;
    top: 54px; /* Centered exactly behind the dots */
    left: 0%;
    right: 0%;
    height: 1px;
    background-color: #D4C9FB !important;
    z-index: 1;
}

/* Step Grid */
.rl-process-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Individual Step */
.rl-process-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

/* The Number Marker (01, 02, 03) */
.rl-process-marker {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 108px;
    width: 120px;
    background: transparent;
}

.rl-process-number {
    font-family: 'Gilroy Medium', sans-serif !important;
    font-size: 72px !important;
    font-weight: 800 !important;
    color: #D4C9FB !important;
    line-height: 1 !important;
    letter-spacing: -0.02em !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 3;
}

/* The Dark Purple Dot */
.rl-process-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background-color: #520054 !important;
    border-radius: 50%;
    border: 5px solid #FFF5FD !important; /* Cutout effect on section background */
    z-index: 4;
}

/* Titles */
.rl-process-title {
    color: #000000 !important;
    font-family: 'Gilroy Medium', sans-serif !important;
    font-weight: 800 !important;
    font-size: 24px !important;
    line-height: 1.2 !important;
    margin: 10px 0 5px 0 !important;
    letter-spacing: -0.01em !important;
}

/* Description Text */
.rl-process-description, 
.rl-process-description p {
    color: #333333 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    max-width: 280px;
    margin: 0 auto !important;
}

.rl-process-description strong {
    color: #000000 !important;
    font-weight: 700 !important;
}

/* Responsive Logic */
@media (max-width: 767px) {
    .rl-process-line {
        display: none;
    }
    .rl-process-grid {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
}
