.btn-group {
    display: flex;
    flex-direction: row; /* force horizontal */
    gap: 16px;
    width: 100%;
    flex-wrap: nowrap; /* prevent wrapping */
}

.tf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 15px;
    background-color: #29b6f6;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease;
}

    .tf-btn:hover {
        background-color: #0399d4;
        color: #fff;
    }

@media (max-width: 768px) {
    .btn-group {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .tf-btn {
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .tf-btn {
        padding: 11px 16px;
        font-size: 13px;
    }
}

/* =========================================
   5-POINT TRUST STRIP
   ========================================= */
.section-trust-strip {
    background: var(--dark-2, #142125);
    padding: 26px 0;
    position: relative;
}

.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 13px;
    flex: 1;
    padding: 8px 18px;
    transition: transform 0.25s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
}

.trust-item:hover .trust-icon {
    background: rgba(67, 186, 255, 0.2);
    border-color: rgba(67, 186, 255, 0.6);
    box-shadow: 0 0 16px rgba(67, 186, 255, 0.25);
}

.trust-icon {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(67, 186, 255, 0.1);
    border: 1.5px solid rgba(67, 186, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.trust-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary, #43BAFF);
    transition: all 0.25s ease;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-label {
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    white-space: nowrap;
}

.trust-sub {
    font-size: 11.5px;
    font-weight: 400;
    color: rgba(225, 242, 242, 0.6);
    line-height: 1.4;
    white-space: nowrap;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(67, 186, 255, 0.25), transparent);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .trust-label {
        font-size: 12.5px;
    }

    .trust-sub {
        font-size: 11px;
    }

    .trust-item {
        padding: 8px 12px;
        gap: 10px;
    }

    .trust-icon {
        width: 40px;
        height: 40px;
    }

    .trust-icon svg {
        width: 19px;
        height: 19px;
    }
}

@media (max-width: 992px) {
    .trust-strip-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .trust-divider {
        display: none;
    }

    .trust-item {
        flex: 0 0 calc(50% - 8px);
        padding: 12px 14px;
        background: rgba(67, 186, 255, 0.04);
        border-radius: 10px;
        border: 1px solid rgba(67, 186, 255, 0.1);
    }

    .trust-label,
    .trust-sub {
        white-space: normal;
    }
}

@media (max-width: 576px) {
    .section-trust-strip {
        padding: 18px 0;
    }

    .trust-item {
        flex: 0 0 100%;
        padding: 10px 12px;
        gap: 11px;
    }

    .trust-icon {
        width: 38px;
        height: 38px;
    }

    .trust-icon svg {
        width: 18px;
        height: 18px;
    }

    .trust-label {
        font-size: 13px;
    }

    .trust-sub {
        font-size: 11px;
    }
}