/* ***************** */
/* JOURNEY SECTION */
/* ***************** */
.journey-section {
    overflow: hidden;
}


.journey-wrap {
    position: relative;
    width: 100%;
}

.journey-pin-spacer {
    max-height: 5050px;
}

@media (min-width: 992px) {

    .journey-pin-spacer {
        max-height: 3900px;
    }
}

.journey-heading {
    position: absolute;
    top: -120px;
}



/* ── SVGs ── */
.journey-svg {
    pointer-events: none;
}

.journey-svg--desktop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: none;
}


.journey-svg--mobile {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    display: block;
}

@media (min-width: 992px) {
    .journey-svg--desktop { display: block; }
    .journey-svg--mobile  { display: none;  }
}


.j-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #c026d3;
    transform: translate(-50%, -50%);
    display: none;
}


.j-step {
    position: absolute;
    width: 350px;
}

@media (min-width: 992px) {
    .j-left   { left: 8%; }
    .j-center { left: 63%; } 
}

/* ── Number ── */
.j-num {
    display: block;
    font-size: clamp(80px, 28vw, 180px);
    font-weight: 700;
    color: #d8d8e0;
    line-height: 1;
    margin-bottom: -4px;
}

@media (min-width: 992px) {
    .j-num {
        font-size: 180px;
        margin-bottom: -6px;
    }
}

@media (min-width: 992px) {
    .journey-wrap { height: 150vh; }
    .j-step       { width: clamp(220px, 28vw, 350px); }
    .j-num        { font-size: clamp(80px, 11vw, 180px); margin-bottom: -6px; }
}


/* ── CTA ── */
.j-cta {
    position: absolute;
    bottom: 1%;        
    left: 60px !important;
    transform: translateX(0) !important;
}

@media (min-width: 992px) {
    .j-cta {
        position: absolute;
        bottom: 1%;        
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
}

.j-cta a {
    display: inline-block;
    padding: 12px 28px;
    background: #e53935;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .journery-desc {
        max-width: 280px !important;
        margin: 0 auto;
    }
}