/* ===== HERO TRUST SIGNALI ===== */
.gariful-hero-trust {
    display: flex;
    align-items: center;
    gap: 0;
}

.ght-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 28px;
}

.ght-item:first-child {
    padding-left: 0;
}

.ght-num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
}

.ght-lbl {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.ght-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .gariful-hero-trust {
        gap: 0;
    }
    .ght-item {
        padding: 0 16px;
    }
    .ght-num {
        font-size: 20px;
    }
    .ght-lbl {
        font-size: 10px;
    }
}