.loan-products-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.loan-products-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.loan-product-item {
    background: #fff;
    border: 1px solid #d9e3f0;
    border-radius: 14px;
    padding: 18px 26px;
    font-size: 18px;
    font-weight: 600;
    color: #1f49d8;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.loan-product-item:hover {
    background: #2868D8;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(40, 104, 216, 0.18);
}

@media (max-width: 991px) {
    .loan-product-item {
        font-size: 16px;
        padding: 16px 22px;
    }
}

@media (max-width: 767px) {
    .loan-products-wrap {
        gap: 12px;
    }

    .loan-product-item {
        width: 100%;
        text-align: center;
        font-size: 15px;
        padding: 15px 18px;
    }
}






/* === Build Process Section === */
.build-process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}
@media (max-width: 1199.98px) {
    .build-process__grid { grid-template-columns: repeat(3, 1fr); }
    .build-process__step:nth-child(3) { border-right: none; }
    .build-process__step:nth-child(4),
    .build-process__step:nth-child(5),
    .build-process__step:nth-child(6) { border-top: 1px solid #e2e8f0; }
    .build-process__step:nth-child(6) { grid-column: span 3; border-right: none; }
}
@media (max-width: 767.98px) {
    .build-process__grid { grid-template-columns: repeat(2, 1fr); }
    .build-process__step { border-top: 1px solid #e2e8f0; }
    .build-process__step:nth-child(1),
    .build-process__step:nth-child(2) { border-top: none; }
    .build-process__step:nth-child(even) { border-right: none; }
    .build-process__step--last { grid-column: span 2; border-right: none; }
}
.build-process__step {
    padding: 28px 22px;
    border-right: 1px solid #e2e8f0;
    position: relative;
    background: #fff;
}
.build-process__step:last-child { border-right: none; }
.build-process__step-number {
    position: static;
    top: 16px;
    right: 16px;
    font-size: 40px;
    font-weight: 800;
    color: #e8edf5;
    line-height: 1;
}
.build-process__step-week {
    font-size: 11.5px;
    font-weight: 700;
    color: #00A0EA;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    display: block;
}
.build-process__step-title {
    font-size: 15px;
    font-weight: 700;
    color: #0A165E;
    margin-bottom: 10px;
}
.build-process__step-desc {
    font-size: 13.5px;
    color: #585b6f;
    line-height: 1.65;
    margin-bottom: 0;
}
.build-process__testimonial {
    background: #f0f9ff;
    border-left: 4px solid #00A0EA;
    border-radius: 0 12px 12px 0;
    padding: 28px 36px;
}
.build-process__testimonial blockquote {
    margin: 0; padding: 0;
    border: none; background: none; border-radius: 0;
}
.build-process__testimonial blockquote::before { display: none; }
.build-process__testimonial blockquote p {
    font-style: italic;
    font-size: 15px;
    color: #334155;
    line-height: 1.75;
    margin-bottom: 12px;
    font-weight: 500;
}
.build-process__testimonial cite {
    font-style: normal;
    font-size: 13px;
    font-weight: 600;
    color: #00A0EA;
}
