/* Trust & Compliance Page Styles */

/* Hero Section */
.trust-hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.trust-hero h1 {
    color: white;
    margin-bottom: 1rem;
    font-size: 3rem;
}

.trust-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-item span {
    font-weight: 500;
}

/* Security Section */
.security-section {
    padding: 5rem 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.security-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.security-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.security-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--primary-blue);
}

.security-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.security-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Certifications Section */
.certifications-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cert-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.cert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cert-header h3 {
    color: var(--primary-blue);
    margin: 0;
}

.cert-badge {
    background: var(--success-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.cert-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.cert-card ul {
    list-style: none;
}

.cert-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.cert-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

/* Regulatory Section */
.regulatory-section {
    padding: 5rem 0;
}

.regulatory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.regulatory-item {
    padding: 2rem;
    border-left: 4px solid var(--primary-blue);
    background: linear-gradient(to right, rgba(30, 91, 168, 0.05), transparent);
}

.regulatory-item h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.regulatory-item p {
    color: var(--text-secondary);
}

/* Infrastructure Section */
.infrastructure-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.infra-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.infra-stats .stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.infra-stats p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.infra-features {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.infra-features h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.infra-features ul {
    list-style: none;
}

.infra-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.infra-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-teal);
    font-weight: bold;
}

/* Data Protection Section */
.data-section {
    padding: 5rem 0;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.data-card {
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.2s;
}

.data-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.data-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.data-card p {
    color: var(--text-secondary);
}

/* Best Practices Section */
.best-practices-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.practices-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.practice-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
}

.practice-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.practice-item ul {
    list-style: none;
}

.practice-item li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.practice-item li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-teal);
    font-size: 1.5rem;
    line-height: 1;
}

/* Trust CTA */
.trust-cta {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
}

.trust-cta h2 {
    color: white;
}

.trust-cta .cta-content {
    text-align: center;
}

.trust-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .trust-hero h1 {
        font-size: 2rem;
    }
    
    .trust-badges {
        gap: 1rem;
    }
    
    .badge-item {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .cert-grid,
    .regulatory-grid {
        grid-template-columns: 1fr;
    }
    
    .practices-content {
        grid-template-columns: 1fr;
    }
    
    .stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .trust-badges {
        flex-direction: column;
        align-items: stretch;
    }
    
    .badge-item {
        justify-content: center;
    }
}