/* === PRIVACY PAGE STYLES === */
.privacy-hero {
    background: linear-gradient(135deg, var(--bg-body) 0%, rgba(124, 58, 237, 0.1) 100%);
    padding: 5rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.privacy-hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.last-update {
    display: inline-block;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.privacy-content {
    padding: 4rem 0;
    background: var(--bg-body);
}

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

.privacy-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.privacy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.privacy-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.1);
}

.privacy-card:hover::before {
    opacity: 1;
}

.privacy-card.highlight {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-color: var(--primary-color);
    grid-column: 1 / -1;
}

.privacy-card.highlight::before {
    opacity: 1;
}

.privacy-card.contact {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-color: rgba(139, 92, 246, 0.5);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.privacy-card h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.privacy-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

.privacy-card p {
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.emphasis {
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(124, 58, 237, 0.1);
    padding: 1rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary-color);
    margin-top: 1.5rem;
}

.contact-email {
    margin-top: 1.5rem;
    text-align: center;
}

.email-link {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.email-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: white;
    text-decoration: none;
}

.privacy-signature {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.signature-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 0 auto 1rem;
    border-radius: 1px;
}

.signature-text {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 4rem 0 3rem;
    }
    
    .privacy-hero h1 {
        font-size: 2rem;
    }

    .privacy-subtitle {
        font-size: 1rem;
    }
    
    .privacy-content {
        padding: 3rem 0;
    }
    
    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .privacy-card {
        padding: 1.5rem;
    }
    
    .privacy-card.highlight {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .privacy-hero {
        padding: 3rem 0 2rem;
    }
    
    .privacy-hero h1 {
        font-size: 1.5rem;
    }

    .privacy-subtitle {
        font-size: 0.95rem;
    }
    
    .privacy-card {
        padding: 1.25rem;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .email-link {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}
