/* ============================================
   PRIVACY POLICY - Liquid Noir
   ============================================ */

/* Hero Section */
.privacy-hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    text-align: center;
}

.privacy-hero-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 70%, rgba(201, 162, 39, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 70% 30%, rgba(184, 85, 110, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.privacy-hero-content {
    position: relative;
    z-index: 2;
}

.privacy-hero .section-tag {
    margin-bottom: 24px;
}

.privacy-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Content Section */
.privacy-content-section {
    padding: 80px 0 140px;
    position: relative;
}

.privacy-content-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.privacy-content {
    max-width: 760px;
    margin: 0 auto;
}

.policy-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
    font-weight: 300;
}

.policy-text a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
    transition: all 0.3s;
}

.policy-text a:hover {
    color: var(--text-primary);
    border-bottom-color: var(--text-primary);
}

.policy-text h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 48px 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.01em;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.policy-text h2 i {
    color: var(--accent);
    font-size: 1rem;
    opacity: 0.7;
}

.policy-text p {
    margin-bottom: 18px;
}

.policy-text ul {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 0;
}

.policy-text li {
    margin-bottom: 14px;
    position: relative;
    padding-left: 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.policy-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.5;
}

.policy-text strong {
    color: var(--text-primary);
    font-weight: 500;
}

.contact-privacy {
    margin-top: 60px;
    padding: 32px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.contact-privacy p {
    margin-bottom: 0;
    text-align: center;
    color: var(--text-secondary);
}

.contact-privacy a {
    color: var(--accent);
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.contact-privacy a:hover {
    color: var(--text-primary);
    border-bottom-color: var(--text-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-hero {
        padding: 140px 0 72px;
    }

    .privacy-title {
        font-size: 2rem;
    }

    .privacy-content-section {
        padding: 60px 0 100px;
    }

    .policy-text h2 {
        font-size: 1.15rem;
    }

    .contact-privacy {
        padding: 24px 20px;
    }
}
