/* ================================
   Tech Trust Section
   ================================ */

.tech-trust-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Section Header */
.tech-trust-header {
    margin-bottom: 60px;
}

.tech-trust-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(38, 211, 0, 0.1);
    border: 1px solid rgba(38, 211, 0, 0.2);
    border-radius: 30px;
    margin-bottom: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #26d300;
}

.tech-trust-subtitle i {
    font-size: 8px;
}

.tech-trust-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.tech-trust-title span {
    color: #26d300;
}

.tech-trust-desc {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
}

/* Stats Row */
.tech-trust-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.tech-stat-item {
    text-align: left;
}

.tech-stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #26d300;
    line-height: 1;
    margin-bottom: 8px;
}

.tech-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Grid */
.tech-trust-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Feature Card */
.tech-feature-card {
    position: relative;
    background: rgba(23, 23, 23, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.tech-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(38, 211, 0, 0.05) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-feature-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 17px;
    background: linear-gradient(135deg, 
        rgba(38, 211, 0, 0.3) 0%, 
        transparent 50%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-feature-card:hover {
    transform: translateX(10px);
    border-color: rgba(38, 211, 0, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.tech-feature-card:hover::before,
.tech-feature-card:hover::after {
    opacity: 1;
}

.tech-feature-card.active {
    border-color: rgba(38, 211, 0, 0.3);
    background: rgba(38, 211, 0, 0.05);
}

.tech-feature-card.active::after {
    opacity: 1;
}

/* Feature Header */
.tech-feature-header {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Feature Icon */
.tech-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: rgba(38, 211, 0, 0.1);
    border: 1px solid rgba(38, 211, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.tech-feature-icon i {
    font-size: 20px;
    color: #26d300;
    transition: all 0.4s ease;
}

.tech-feature-card:hover .tech-feature-icon,
.tech-feature-card.active .tech-feature-icon {
    background: rgba(38, 211, 0, 0.15);
    border-color: rgba(38, 211, 0, 0.4);
    box-shadow: 0 0 25px rgba(38, 211, 0, 0.2);
}

.tech-feature-card:hover .tech-feature-icon i,
.tech-feature-card.active .tech-feature-icon i {
    text-shadow: 0 0 15px rgba(38, 211, 0, 0.5);
}

/* Feature Title */
.tech-feature-title {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    transition: color 0.3s ease;
}

.tech-feature-card:hover .tech-feature-title {
    color: #fff;
}

/* Feature Arrow */
.tech-feature-arrow {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.tech-feature-arrow i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
    transform: rotate(0deg);
}

.tech-feature-card:hover .tech-feature-arrow,
.tech-feature-card.active .tech-feature-arrow {
    background: rgba(38, 211, 0, 0.1);
    border-color: rgba(38, 211, 0, 0.3);
}

.tech-feature-card:hover .tech-feature-arrow i,
.tech-feature-card.active .tech-feature-arrow i {
    color: #26d300;
}

.tech-feature-card.active .tech-feature-arrow i {
    transform: rotate(180deg);
}

/* Feature Body */
.tech-feature-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    position: relative;
    z-index: 1;
}

.tech-feature-card.active .tech-feature-body {
    max-height: 200px;
    padding-top: 20px;
}

.tech-feature-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    padding-left: 70px;
}

/* Corner decorations */
.tech-feature-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-feature-corner::before,
.tech-feature-corner::after {
    content: '';
    position: absolute;
    background: rgba(38, 211, 0, 0.4);
}

.tech-feature-corner.top-right {
    top: 10px;
    right: 10px;
}

.tech-feature-corner.top-right::before {
    top: 0;
    right: 0;
    width: 12px;
    height: 2px;
}

.tech-feature-corner.top-right::after {
    top: 0;
    right: 0;
    width: 2px;
    height: 12px;
}

.tech-feature-card:hover .tech-feature-corner,
.tech-feature-card.active .tech-feature-corner {
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .tech-trust-section {
        padding: 80px 0;
    }
    
    .tech-trust-title {
        font-size: 36px;
    }
    
    .tech-trust-header {
        margin-bottom: 40px;
    }
    
    .tech-trust-stats {
        gap: 30px;
    }
    
    .tech-stat-number {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .tech-trust-title {
        font-size: 28px;
    }
    
    .tech-trust-desc {
        font-size: 16px;
    }
    
    .tech-trust-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .tech-stat-item {
        min-width: 100px;
    }
    
    .tech-feature-card {
        padding: 20px;
    }
    
    .tech-feature-card:hover {
        transform: translateX(0);
    }
    
    .tech-feature-title {
        font-size: 16px;
    }
    
    .tech-feature-text {
        padding-left: 0;
    }
    
    .tech-feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .tech-feature-icon i {
        font-size: 18px;
    }
}
