/* ===== WARUM TM24 ===== */
.why-tm24-section {
    padding: 50px 0 40px;
    background: #fff;
}
.why-tm24-section h2 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 32px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.why-card {
    text-align: center;
    padding: 30px 24px;
    background: #f8f9ff;
    border-radius: 16px;
    border: 1px solid #eef0fb;
    transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(46, 43, 203, 0.1);
}
.why-card i {
    font-size: 32px;
    color: #2e2bcb;
    margin-bottom: 16px;
    display: block;
}
.why-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}
.why-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

