/* ================================
   Journey Section
================================ */

.ke-journey-section{
    background:white;
    border:1px solid #e2e8f0;
    border-radius:30px;
    padding:36px;
    box-shadow:0 18px 45px rgba(15,23,42,.09);
    margin-bottom:24px;
}

.ke-journey-header{
    max-width:720px;
    margin-bottom:28px;
}

.ke-journey-header h2{
    margin:0 0 10px;
    color:#0f172a;
    font-size:34px;
    font-family:var(--font-heading);
}

.ke-journey-header p{
    margin:0;
    color:#64748b;
    line-height:1.7;
}

.ke-journey-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px;
}

.ke-journey-step{
    position:relative;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    border-radius:22px;
    padding:20px;
}

.ke-journey-step span{
    display:inline-grid;
    place-items:center;
    width:38px;
    height:38px;
    border-radius:14px;
    background:#2563eb;
    color:white;
    font-size:13px;
    font-weight:900;
    margin-bottom:16px;
}

.ke-journey-step strong{
    display:block;
    color:#0f172a;
    font-size:17px;
    margin-bottom:8px;
}

.ke-journey-step p{
    margin:0;
    color:#64748b;
    font-size:14px;
    line-height:1.6;
}

@media(max-width:1000px){
    .ke-journey-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:650px){
    .ke-journey-section{
        padding:24px;
        border-radius:24px;
    }

    .ke-journey-grid{
        grid-template-columns:1fr;
    }

    .ke-journey-header h2{
        font-size:28px;
    }
}