/* ==========================================================================
   CSS CHO ROI SECTION (assets/roi-style.css)
   ========================================================================== */



.t-roi-title {
    font-size: 2rem; /* Chỉnh size */
    font-weight: 700;
    color: var(--t-secondary-color);
    text-align: center;
    margin-bottom: 10px;
    letter-spacing:0.5px;
 
}

.t-roi-brand {
    font-size: 1rem; /* Chỉnh size */
    display: block;
    text-align: center;
    color: var(--t-secondary-color);
    margin-bottom: 40px; /* Tăng margin */
    letter-spacing: 0.5px;
    font-weight: 500; /* Giảm weight */
    opacity: 0.9;
}
.t-roi-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.t-roi-card {
    background: var(--t-light-color);
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0,0,0,0.05); /* Giảm shadow */
    flex: 1 1 300px; /* Điều chỉnh flex-basis */
    max-width: 380px; /* Giảm max-width */
    min-width: 280px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out; /* Tinh chỉnh transition */
    border: 1px solid var(--t-grey-dark); /* Viền mỏng hơn */
    position: relative;
    align-items: center !important;
}
.t-roi-card:hover {
    transform: translateY(-4px); /* Giảm hiệu ứng */
    /*border-color: var(--t-primary-color);*/
    box-shadow: 0 5px 25px rgba(224,94,26,0.15); /* Shadow rõ hơn khi hover */
       
}
.t-roi-card .t-roi-icon {
    font-size: 2.2rem; /* Giảm size icon */
    line-height: 1;
    color: var(--t-primary-color);
    margin-bottom: 15px;
    width: 50px; /* Thêm nền cho icon */
    height: 50px;
    background-color: rgba(224, 94, 26, 0.08);
    border-radius: 50%;
    display: flex!important;
    align-items: center!important;
    justify-content: center!important;
    text-align: center!important;
}


.t-roi-card .t-roi-option-title {
    font-size: 1.1rem; /* Chỉnh size */
    font-weight: 600; /* Chỉnh weight */
    margin-bottom: 12px;
    color: var(--t-secondary-color);
    letter-spacing: 0;
}
.t-roi-key-metric {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 1rem; /* Chỉnh size */
    color: var(--t-text-color); /* Đổi màu */
    gap: 8px; /* Giảm gap */
    margin-top: 5px;
}
.t-roi-key-metric i { /* Icon trong key metric */
    color: var(--t-primary-color);
    font-size: 1.1em;
}

.t-roi-key-metric span {
    font-weight: 700;
    color: var(--t-primary-color); /* Đổi màu span */
    font-size: 1.1rem; /* Tăng size span */
}
.t-roi-card .t-roi-desc {
    font-size: 0.95rem; /* Chỉnh size */
    margin: 10px 0 15px 0; /* Chỉnh margin */
    color: #555;
    line-height: 1.6;
}
.t-roi-taglist {
    margin-bottom: 15px; /* Tăng margin */
    margin-top: auto; /* Đẩy taglist xuống dưới nếu muốn */
    padding-top: 10px; /* Khoảng cách với nội dung trên */
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* Giảm gap */
}
.t-roi-tag {
    font-size: 0.8rem; /* Giảm font */
    background: var(--t-primary-light);
    color: var(--t-light-color);
    border-radius: 3px; /* Đổi kiểu bo góc */
    padding: 3px 10px; /* Chỉnh padding */
    letter-spacing: 0;
}
.t-roi-bar-bg {
    width:100%;
    height: 10px; /* Giảm chiều cao */
    background: var(--t-grey-dark);
    border-radius:10px;
    margin: 15px 0 5px 0; /* Chỉnh margin */
    position: relative;
    overflow:hidden;
}
.t-roi-bar-inner {
    height: 100%; /* Luôn bằng chiều cao cha */
    border-radius:10px; /* Bo đều */
    /* background: linear-gradient(90deg, var(--t-primary-color), var(--t-primary-light)); // Bỏ gradient nếu dùng inline */
    width:0; /* Bắt đầu từ 0 */
    transition: width 1.2s ease-out; /* Tăng thời gian hiệu ứng */
    position:absolute;
    left:0;top:0;
}
.t-roi-bar-label {
    font-size:.9rem; /* Chỉnh size */
    color: var(--t-secondary-color);
    font-weight: 500; /* Chỉnh weight */
    letter-spacing: 0;
    margin-left: 0; /* Bỏ margin */
    margin-top: 2px; /* Thêm margin top nhẹ */
}
.t-roi-result-points {
    margin: 15px 0 0 0; /* Chỉnh margin */
    padding-left: 0;
    list-style: none;
    color: #444;
    font-size: 0.9rem; /* Chỉnh size */
}
.t-roi-result-points li {
    margin-bottom: 8px; /* Tăng khoảng cách */
    display: flex;
    align-items: flex-start;
    gap: 8px; /* Giảm gap */
    line-height: 1.5;
}
.t-roi-result-points .bi {
    font-size: 0.9em; /* Giảm size icon */
    color: var(--t-primary-color);
    margin-top: 4px; /* Chỉnh vị trí dọc */
    flex-shrink:0;

}

/* Responsive ROI Section */
@media (max-width: 900px) {
    .t-roi-card-container { flex-direction: column; align-items: center;}
    .t-roi-card { max-width: 100%; } /* Tăng max-width khi xếp dọc */
}
@media (max-width: 600px) {
    .t-roi-main-container { padding: 25px 15px 40px 15px; margin: 30px auto;} /* Chỉnh padding, margin */
    .t-roi-title { font-size: 1.6rem;} /* Chỉnh size */
    .t-roi-brand { margin-bottom: 25px; font-size: 0.9rem;}
    .t-roi-card {padding: 20px 15px;}
    .t-roi-option-title { font-size: 1.05rem;}
    .t-roi-key-metric { font-size: 0.95rem; }
    .t-roi-key-metric span { font-size: 1rem; }
    .t-roi-card .t-roi-desc { font-size: 0.9rem; }
    .t-roi-result-points { font-size: 0.85rem; }
}

/* ==========================================================================
   Kết thúc CSS cho ROI Section
   ========================================================================== */