
.smart-value-section {
    width:100%;
    background:#ffffff;
    padding:70px 30px;
}
.smart-value-section .container {
    max-width:1500px;
    margin:0 auto;
}
.smart-value-section .main-title {
    text-align:center;
    font-size:46px;
    color:#222;
    margin-bottom:50px;
    opacity:0;
    animation:smart-titleAnim 1.4s ease forwards;
}
.smart-value-section .item-row {
    display:flex;
    align-items:center;
    gap:24px;
    background:#f3f3f3;
    padding:32px 30px;
    margin-bottom:28px;
    opacity:0;
    transform:translateY(40px);
    animation:smart-itemUp 1s ease forwards;
}
.smart-value-section .item-row:nth-of-type(1){animation-delay:0.2s;}
.smart-value-section .item-row:nth-of-type(2){animation-delay:0.4s;}
.smart-value-section .item-row:nth-of-type(3){animation-delay:0.6s;}
.smart-value-section .icon-img {
    width:85px;
    height:85px;
    object-fit:contain;
}
.smart-value-section .text-box h3 {
    font-size:24px;
    color:#222;
    margin-bottom:12px;
    line-height:1.35;
}
.smart-value-section .text-box p {
    font-size:15px;
    color:#333;
    line-height:1.7;
    letter-spacing:0.15px;
}

@keyframes smart-titleAnim {
    0%{opacity:0;letter-spacing:-3px;transform:translateY(10px);}
    100%{opacity:1;letter-spacing:0;transform:translateY(0);}
}
@keyframes smart-itemUp {
    to{opacity:1;transform:translateY(0);}
}
