/* Privacy & Security Section Styles */
/* Section spacing handled by common.css */
.privacy-security-section {
    /* Background defined in section-backgrounds.css */
    position: relative;
}

.privacy-security-section .section-header {
    text-align: center;
    margin-bottom: 36px;
}

.privacy-security-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray-700);
    margin: 0;
}

.section-subtitle strong {
    color: var(--primary);
}

.privacy-hero {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-hero h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

/* Privacy Features Image */
.privacy-features-image {
    text-align: center;
    margin-bottom: 48px;
}

.privacy-features-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Security CTA */
.security-cta {
    text-align: center;
    margin-bottom: 60px;
}

.security-cta a {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    font-weight: 600;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.security-cta a:hover {
    background: var(--primary);
    color: white;
    transform: translateX(4px);
}

/* Advantage Message */
.advantage-message {
    text-align: center;
    margin-bottom: 48px;
}

.advantage-message h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

/* Risk Comparison */
.risk-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto 60px;
    background: white;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-column h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.risks h4 {
    color: var(--danger);
}

.solutions h4 {
    color: var(--success);
}

.comparison-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-column li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 16px;
}

.comparison-column li:last-child {
    border-bottom: none;
}

.risks li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-700);
}

.risk-title {
    flex: 1;
}

.risk-arrow {
    color: var(--gray-400);
    margin: 0 16px;
}

.solutions li {
    color: var(--gray-700);
    padding-left: 24px;
    position: relative;
}

.solutions li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

/* Animation Classes */
.privacy-feature,
.badge-item,
.risk-comparison {
    opacity: 0;
    transform: translateY(20px);
}

.privacy-feature.animate-in,
.badge-item.animate-in,
.risk-comparison.animate-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Highlight effect for risk/solution pairs */
.solutions li.highlight {
    background: var(--primary-light);
    transition: background 0.3s ease;
    border-radius: 8px;
    margin: 0 -8px;
    padding-left: 32px;
    padding-right: 8px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.badge-item span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

/* Responsive Design */
@media (max-width: 968px) {
    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .risk-comparison {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }
    
    .privacy-security-section .section-header h2 {
        font-size: 28px;
    }
    
    .privacy-hero h3 {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .privacy-security-section {
        padding: 60px 0;
    }
    
    .privacy-security-section .section-header h2 {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .privacy-hero h3 {
        font-size: 20px;
    }
    
    .privacy-feature {
        padding: 24px;
    }
    
    .feature-icon {
        font-size: 36px;
    }
    
    .privacy-feature h3 {
        font-size: 20px;
    }
    
    .risk-comparison {
        padding: 24px;
    }
    
    .trust-badges {
        gap: 24px;
    }
    
    .badge-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}