/* <!-- Row 2 : Redesigned Feature Cards (style inspired by assets-logistics.html & loan-co-lending.html) --> */

.r2s-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.r2s-feature-card {
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 2px 10px rgba(20, 30, 60, .04);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
}

.r2s-feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3b6fe0, #63c7ff);
    opacity: 0;
    transition: opacity .25s ease;
}

.r2s-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(20, 30, 60, .10);
    border-color: #dbe6ff;
}

.r2s-feature-card:hover::before {
    opacity: 1;
}

.r2s-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eaf1ff, #f4f9ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.r2s-icon-wrap img {
    width: 30px;
    height: 30px;
}

.r2s-icon-wrap svg {
    width: 28px;
    height: 28px;
    stroke: #3b6fe0;
    fill: none;
    stroke-width: 1.8;
}

.r2s-feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1c2b4a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.r2s-feature-card p {
    font-size: 14.5px;
    color: #5c6779;
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: left;
}

.r2s-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.r2s-tags span {
    font-size: 12px;
    font-weight: 600;
    color: #3b6fe0;
    background: #eef3ff;
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
}