/* ============================================================
   TRUST SECTION - PREMIUM MODERN UI
   ============================================================ */

.why-section {
    position: relative;
    background: #0f172a;
    overflow: hidden;
    padding: 60px 0 !important; /* Reduced padding */
}

/* Mesh Gradient Background */
.why-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 45, 141, 0.15) 0%, transparent 70%);
    z-index: 1;
    filter: blur(80px);
}

.why-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(161, 0, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
    filter: blur(80px);
}

.why-section .container {
    position: relative;
    z-index: 2;
}

/* Section Header Spacing */
.why-section .section-header {
    margin-bottom: 40px !important; /* Reduced from 60px */
}

.why-section .section-title {
    color: #ffffff !important;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.why-section .section-desc {
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 700px;
    margin: 0 auto;
}

/* Feature Cards */
.trust-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    padding: 30px 25px; /* More compact */
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    height: 100%;
}

.trust-feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 45, 141, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.trust-icon-box {
    width: 60px; /* Smaller from 80px */
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 45, 141, 0.15) 0%, rgba(255, 45, 141, 0.05) 100%);
    color: #ff2d8d;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    transition: 0.3s;
    border: 1px solid rgba(255, 45, 141, 0.1);
}

.trust-feature-card:hover .trust-icon-box {
    transform: rotate(10deg) scale(1.1);
    background: linear-gradient(135deg, #ff2d8d 0%, #ff5ca8 100%);
    color: #fff;
}

.trust-feature-card h3 {
    color: #fff;
    font-size: 1.2rem; /* Compact */
    font-weight: 700;
    margin-bottom: 12px;
}

.trust-feature-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Stats Section */
.trust-stats-section {
    margin-top: 50px; /* Reduced from 100px */
    padding-top: 40px; /* Reduced from 80px */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card {
    padding: 10px;
}

.stat-number {
    font-size: 3rem; /* Reduced from 3.8rem */
    font-weight: 900;
    background: linear-gradient(to bottom, #fff 30%, #ff2d8d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 800;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.8rem;
    }
}
