/* =========================================
   Privacy Policy Page Styles
   ========================================= */

/* --- Hero Section --- */
.privacy-hero {
    position: relative;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    overflow: hidden;
    text-align: center;
}

.privacy-hero__grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.privacy-hero__float {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 8s infinite ease-in-out;
}

    .privacy-hero__float:nth-child(2) {
        width: 300px;
        height: 300px;
        background: #6366f1;
        top: -50px;
        right: -50px;
    }

    .privacy-hero__float:nth-child(3) {
        width: 400px;
        height: 400px;
        background: #ec4899;
        bottom: -100px;
        left: -100px;
        animation-delay: 4s;
    }

.privacy-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    font-size: 0.875rem;
    color: #c7d2fe;
    margin-bottom: 1.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.privacy-hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

    .privacy-hero__title .highlight {
        background: linear-gradient(135deg, #38bdf8, #6366f1);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.privacy-hero__subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.privacy-hero__meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    color: #64748b;
    font-size: 0.875rem;
}

    .privacy-hero__meta i {
        margin-inline-end: 0.5rem;
        color: #6366f1;
    }

/* --- Content & Accordion --- */
.privacy-content-section {
    padding: 5rem 0;
    background: #020617;
}

.privacy-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-section-header__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.privacy-section-header__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.privacy-section-header__desc {
    color: #94a3b8;
    font-size: 1rem;
}

.privacy-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.privacy-accordion__item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .privacy-accordion__item:hover {
        border-color: rgba(99, 102, 241, 0.3);
    }

    .privacy-accordion__item.active {
        border-color: rgba(99, 102, 241, 0.5);
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.1);
    }

.privacy-accordion__header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: #e2e8f0;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    text-align: start;
    transition: color 0.3s;
}

    .privacy-accordion__header:hover {
        color: #818cf8;
    }

.privacy-accordion__icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.privacy-accordion__header h3 {
    flex: 1;
    margin: 0;
}

.privacy-accordion__arrow {
    color: #64748b;
    transition: transform 0.3s ease;
}

.privacy-accordion__item.active .privacy-accordion__arrow {
    transform: rotate(180deg);
    color: #818cf8;
}

.privacy-accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.privacy-accordion__item.active .privacy-accordion__body {
    padding: 0 1.5rem 1.5rem;
}

.privacy-accordion__body p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-accordion__body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-accordion__body li {
    position: relative;
    padding-inline-start: 1.5rem;
    margin-bottom: 0.75rem;
    color: #94a3b8;
    line-height: 1.6;
}

    .privacy-accordion__body li::before {
        content: '•';
        color: #6366f1;
        font-weight: bold;
        position: absolute;
        inset-inline-start: 0;
    }

.privacy-accordion__body strong {
    color: #e2e8f0;
}

/* --- CTA Section --- */
.privacy-cta {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
    overflow: hidden;
    text-align: center;
}

.privacy-cta__grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
}

.privacy-cta__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.privacy-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    font-size: 0.875rem;
    color: #c7d2fe;
    margin-bottom: 1.5rem;
}

.privacy-cta__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.privacy-cta__desc {
    color: #94a3b8;
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.privacy-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.privacy-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-cta__btn--primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

    .privacy-cta__btn--primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(34, 197, 94, 0.4);
    }

.privacy-cta__btn--outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.05);
}

    .privacy-cta__btn--outline:hover {
        border-color: #6366f1;
        color: #818cf8;
        background: rgba(99, 102, 241, 0.1);
    }

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}
