/* =========================================================
   JOURNEY RIBBON (COURAGE / CONFIDENCE / ACTION)
========================================================= */
.journey-ribbon {
    max-width: 1180px;
    margin: 1.1rem auto 0.6rem;
    padding: 0.35rem 1.5rem 0.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.9;
}

.journey-ribbon__steps {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 640px;
    justify-content: center;
}

.journey-ribbon__step {
    flex: 1 1 0;
}

.journey-ribbon__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: transparent;
    text-decoration: none;
    color: #4f5464;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.journey-ribbon__index {
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    background: #fff;
}

.journey-ribbon__label {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* active step */
.journey-ribbon__step--active .journey-ribbon__link {
    background: rgba(240, 150, 75, 0.09);
    border-color: rgba(240, 150, 75, 0.7);
    color: #0b1324;
    font-weight: 600;
}

.journey-ribbon__step--active .journey-ribbon__index {
    border-color: var(--lef-apricot);
}

/* mobile: allow horizontal scrolling if needed */
@media (max-width: 600px) {
    .journey-ribbon {
        padding-inline: 1rem;
    }
    .journey-ribbon__steps {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.25rem;
    }
    .journey-ribbon__step {
        flex: 0 0 auto;
    }
}

/* =========================================================
   JOURNEY HERO (COURAGE / CONFIDENCE / ACTION)
========================================================= */
.journey-hero {
    max-width: 1100px;
    margin: 0 auto 3rem;
    padding: 3.5rem 1.5rem 2.5rem;
}

.journey-hero-inner {
    position: relative;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(9, 14, 30, 0.08);
    padding: 2rem 2.25rem 2.25rem 2.5rem;
}

.journey-hero-spine {
    position: absolute;
    left: 1rem;
    top: 1.6rem;
    bottom: 1.6rem;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(
        to bottom,
        rgba(240, 150, 75, 0.2),
        var(--lef-apricot),
        rgba(240, 150, 75, 0.2)
    );
}

.journey-hero-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
}

.journey-hero-title {
    font-family: "Bebas Neue";
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    color: #060d1c;
    line-height: 1.05;
    margin: 0 0 0.9rem;
}

.journey-hero-quote {
    margin: 0 0 1rem;
    padding-left: 0.9rem;
    border-left: 2px solid rgba(240, 150, 75, 0.4);
    font-size: 1rem;
    font-style: italic;
    color: #111827;
}
.journey-hero-quote blockquote {
    margin: 0;
}

.journey-hero-intro,
.journey-hero-body {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 0.7rem;
}

.journey-hero-intro {
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: #111827;
}

.journey-hero-body {
    position: relative;
    color: #4b5563;
    margin-top: 0.65rem;
}

.journey-hero-body:last-child {
    margin-bottom: 0;
}

/* reuse existing eyebrow style but align to left */
.journey-hero .hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.72rem;
    color: #f0964b;
    opacity: 0.9;
    margin-bottom: 0.4rem;
    text-align: left;
}

/* responsive adjustments */
@media (max-width: 800px) {
    .journey-hero {
        padding: 2.6rem 1.25rem 2rem;
    }
    .journey-hero-inner {
        padding: 1.75rem 1.5rem 1.9rem 2.1rem;
    }
    .journey-hero-spine {
        left: 0.9rem;
    }
}
@media (max-width: 520px) {
    .journey-hero-inner {
        padding: 1.6rem 1.1rem 1.7rem 1.7rem;
    }
    .journey-hero-spine {
        left: 0.7rem;
    }
}

.journey-section {
    max-width: 1180px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
}
.journey-section-head {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 2rem;
}
.journey-section-head h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #0b1324;
}
.journey-section-head p {
    margin-top: 0.75rem;
    color: #4a4f63;
    line-height: 1.5;
}
.journey-section-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}
.journey-section-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff, #f5f7fb);
    border-radius: 1.5rem;
    box-shadow: 0 18px 40px rgba(6, 13, 28, 0.08);
    padding: 1.5rem;
    min-height: 220px;
    overflow: hidden;
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}
.journey-section-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #0b1324;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.journey-section-card p {
    margin: 0;
    line-height: 1.7;
    color: #3c4050;
    font-size: 0.95rem;
}

.journey-hero-body::before {
    content: "";
    display: block;
    width: 44px;
    height: 2px;
    border-radius: 999px;
    background: rgba(240, 150, 75, 0.8);
    margin-bottom: 0.55rem;
}

/* Ghosted number: 01 / 02 / 03 */
.journey-section-card::before {
    content: "01";
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.9rem;
    letter-spacing: 0.12em;
    color: rgba(11, 19, 36, 0.07);
    pointer-events: none;
}

.journey-section-cards .journey-section-card:nth-child(2)::before {
    content: "02";
}

.journey-section-cards .journey-section-card:nth-child(3)::before {
    content: "03";
}

/* subtle top glow */
.journey-section-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        to bottom,
        rgba(240, 150, 75, 0.12),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.journey-section-card:hover::after {
    opacity: 1;
}

/* hover lift */
.journey-section-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(6, 13, 28, 0.12);
}

/* =========================================================
   HERO BLOCKS & DIAGRAM
========================================================= */

.journey-hero-block {
    margin-bottom: 1.1rem;
}

.journey-hero-block:last-of-type {
    margin-bottom: 0.9rem;
}

/* tiny uppercase label for each block */
.journey-hero-block-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.65rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

/* diagram under text */
.journey-hero-diagram {
    margin-top: 0.8rem;
    display: flex;
    justify-content: flex-start;
}

.journey-hero-diagram svg {
    width: 180px;
    height: 36px;
    display: block;
}
/* card header with icon */
.journey-card-head {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.journey-card-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    color: #0b1324;
}
