.smithtron-trust-strip-v2 {
    width: 100%;
    background: #F5F7FA;
    padding: 40px 20px;
    box-sizing: border-box;
}

.smithtron-trust-v2-container {
    max-width: 1200px;
    margin: 0 auto;
}

.smithtron-trust-v2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.smithtron-trust-v2-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    -webkit-tap-highlight-color: transparent;
}

.smithtron-trust-v2-icon {
    font-size: 28px;
    color: #0F2747;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.smithtron-trust-v2-icon svg {
    width: 28px;
    height: 28px;
    fill: #0F2747;
    transition: all 0.3s ease;
}

.smithtron-trust-v2-title {
    font-size: 16px;
    font-weight: 700;
    color: #0F2747;
    margin: 0 0 8px;
    line-height: 1.3;
}

.smithtron-trust-v2-text {
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

/* Hover for desktop only */
@media (hover: hover) and (pointer: fine) {
    .smithtron-trust-v2-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 20px -8px rgba(0, 0, 0, 0.15);
        border-color: #00A3A3;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .smithtron-trust-v2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .smithtron-trust-v2-card.is-touched {
        transform: translateY(-4px) !important;
        box-shadow: 0 18px 45px rgba(15, 39, 71, 0.16) !important;
        border-color: #00A3A3 !important;
    }
    
    .smithtron-trust-v2-card.is-touched .smithtron-trust-v2-icon {
        color: #00A3A3 !important;
    }
    
    .smithtron-trust-v2-card.is-touched .smithtron-trust-v2-icon svg {
        fill: #00A3A3 !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .smithtron-trust-strip-v2 {
        padding: 30px 16px;
    }
    
    .smithtron-trust-v2-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}