.trust-section {
    width: 100%;
    display: flex;
    justify-content: center;
    background: transparent;
}


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

.trust-card {
    background: rgba(255, 255, 255, 0.03);
    border: none !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 40px;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.trust-card:active {
    background: rgba(255, 255, 255, 0.03) !important;
    transform: scale(0.98);
    transition: all 0.1s;
}

/* Removed radial gradient brightening effect per user request */

.trust-card:hover {
    background: rgba(255, 255, 255, 0.03) !important;
    border: none !important;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Removed hover brightening */

.icon-3d {
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
    33% { transform: translateY(-10px) rotateX(5deg) rotateY(-5deg); }
    66% { transform: translateY(-5px) rotateX(-5deg) rotateY(10deg); }
}

.trust-card:hover .icon-3d {
    transform: scale(1.2) rotateY(20deg) rotateX(-15deg);
    animation-play-state: paused;
}

.trust-card-icon {
    height: 120px;
    width: 120px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.icon-mesh-bg {
    fill: url(#mesh-grad);
    filter: blur(2px);
}

.trust-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: none;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.trust-card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-section {
        padding: 6rem 1.5rem;
    }
    
    .trust-card {
        padding: 2.5rem 1.5rem;
    }
}

/* Metallic CTA Button Styles */
.metallic-button-wrapper {
    width: 100%;
    display: flex !important;
    justify-content: center !important;
    margin: 3rem 0 !important;
    clear: both;
}

.trust-cta-card {
    width: 100%;
    background: transparent;                 /* normal page background */
    border: none !important;
    border-radius: 0;
    padding: 5rem 4rem;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

/* no hover lift — card is edge-to-edge */


.trust-cta-content {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;   /* center children */
    text-align: center;
}

.trust-cta-content .card-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.15;
    max-width: 900px;
    white-space: nowrap;   /* force single line */
}

.trust-cta-content .card-description {
    font-size: 1.1rem;
    opacity: 0.6;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.65;
}

.metallic-button {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.75rem;
    border-radius: 9999px;
    background-color: #000000;
    color: #FFFFFF !important;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    gap: 0.75rem;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.metallic-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250%;
    height: 250%;
    /* Mirroring announcement logic but with metallic grey */
    background: conic-gradient(from 0deg, transparent 0deg, #FFFFFF 60deg, transparent 120deg);
    animation: rotate-bg 4s linear infinite;
    z-index: -2;
    pointer-events: none;
}

.metallic-button::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: #000000;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 12px,
        rgba(255, 255, 255, 0.1) 12px,
        rgba(255, 255, 255, 0.1) 24px
    );
    border-radius: inherit;
    z-index: -1;
}

/* Diagonal Striped Pattern Layer */
.metallic-button .metallic-grain {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 15px,
        rgba(255, 255, 255, 0.1) 15px,
        rgba(255, 255, 255, 0.1) 30px
    );
    pointer-events: none;
    z-index: 1;
}

.metallic-button span, .metallic-button i {
    position: relative;
    z-index: 5;
}

.metallic-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 1);
}

.metallic-button i {
    font-size: 1.2rem;
}
