/* Privacy Policy Page */
.privacy-hero {
    position: relative;
    overflow: hidden;
    margin-top: -6rem;
    padding-top: 6rem;
    background: var(--background);
}

.privacy-hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--background);
    opacity: 0.6;
    pointer-events: none;
}

.privacy-hero-gradient-h {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--background), var(--background), transparent);
    pointer-events: none;
}

.privacy-hero-gradient-v {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, transparent, var(--background));
    pointer-events: none;
}

.privacy-hero-content {
    position: relative;
    max-width: var(--container-7xl);
    margin: 0 auto;
    padding: 3rem 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .privacy-hero-content {
        padding-top: 5rem;
    }
}

.privacy-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: var(--text-xs);
    color: var(--muted-foreground);
    margin-bottom: 1.25rem;
}

.privacy-breadcrumb a,
.privacy-breadcrumb a:visited,
.privacy-breadcrumb a:link,
.privacy-breadcrumb a:active {
    color: var(--muted-foreground) !important;
    text-decoration: none;
    transition: color 0.2s var(--ease-in-out);
}

.privacy-breadcrumb a:hover,
.privacy-breadcrumb a:focus {
    color: var(--gold) !important;
}

.privacy-breadcrumb-sep {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.privacy-breadcrumb-sep svg {
    width: 0.75rem;
    height: 0.75rem;
    color: var(--gold);
}

.privacy-breadcrumb-sep span {
    color: var(--foreground);
}

.privacy-breadcrumb-sep {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.privacy-breadcrumb-sep svg {
    width: 0.75rem;
    height: 0.75rem;
    color: var(--gold);
}

.privacy-breadcrumb-sep span {
    color: var(--foreground);
}

.privacy-breadcrumb-sep svg {
    width: 0.75rem;
    height: 0.75rem;
    color: var(--gold);
}

.privacy-breadcrumb-sep span {
    color: var(--foreground);
}

.privacy-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.privacy-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    line-height: 1.02;
    max-width: var(--container-4xl);
}

@media (min-width: 768px) {
    .privacy-title {
        font-size: var(--text-6xl);
    }
}

@media (min-width: 1024px) {
    .privacy-title {
        font-size: var(--text-7xl);
    }
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.6s var(--ease-in-out), transform 0.6s var(--ease-in-out);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

/* Privacy Content Section */
.privacy-section {
    background: var(--background);
    padding: 8rem 0;
}

.privacy-content {
    max-width: var(--container-3xl);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.privacy-meta {
    font-size: var(--text-sm);
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.privacy-gold {
    color: var(--gold);
    font-weight: var(--font-weight-medium);
}

.privacy-text {
    color: var(--muted-foreground);
    line-height: var(--leading-relaxed);
    margin-bottom: 2rem;
}

.privacy-text p + p {
    margin-top: 1.25rem;
}

/* Privacy Accordion Cards */
.privacy-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.privacy-card {
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--border);
    padding: 1.5rem;
    transition: box-shadow 0.3s var(--ease-in-out);
}

.privacy-card:hover {
    box-shadow: var(--shadow-soft);
}

.privacy-card-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    line-height: var(--leading-tight);
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .privacy-card-title {
        font-size: var(--text-3xl);
    }
}

.privacy-card-text {
    color: var(--muted-foreground);
    line-height: var(--leading-relaxed);
    margin-bottom: 0.75rem;
}

.privacy-card-text:last-child {
    margin-bottom: 0;
}

/* Privacy List */
.privacy-list {
    list-style: none;
    margin: 0.75rem 0 0 0;
    padding: 0;
}

.privacy-list li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--muted-foreground);
    line-height: var(--leading-relaxed);
    margin-bottom: 0.5rem;
}

.privacy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.375rem;
    height: 0.375rem;
    background: var(--gold);
    border-radius: 9999px;
}

/* Dark mode adjustments */
.dark .privacy-hero {
    background: var(--background);
}

.dark .privacy-card {
    background: var(--card);
    border-color: var(--border);
}

.dark .privacy-card-title {
    color: var(--foreground);
}

.dark .privacy-list li::before {
    background: var(--gold);
}

.dark .privacy-breadcrumb-link:hover {
    color: var(--gold);
}