/* =====================================================
   PRIVACY POLICY PAGE
   ===================================================== */

.lp-privacy {
    background: #F8F8FB;
}

/* ?? Hero ?? */
.privacy-hero {
    position: relative;
    background: linear-gradient(135deg, #191919 0%, #4a0a2e 50%, #890147 100%);
    padding: clamp(100px, 12vw, 160px) 0 clamp(48px, 6vw, 80px);
    text-align: center;
    overflow: hidden;
}

.privacy-hero::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: #F8F8FB;
    clip-path: ellipse(55% 100% at 50% 100%);
}

.privacy-hero__title {
    font-family: "Chivo", system-ui, sans-serif !important;
    font-weight: 800 !important;
    font-size: clamp(2rem, 4.5vw, 3.2rem) !important;
    color: #fff !important;
    margin: 0 0 0.5rem !important;
    line-height: 1.2 !important;
}

.privacy-hero__subtitle {
    font-family: "Inter", system-ui, sans-serif !important;
    font-weight: 500 !important;
    font-size: clamp(0.95rem, 1.4vw, 1.15rem) !important;
    color: rgba(255, 255, 255, 0.75) !important;
    margin: 0 !important;
}

/* ?? Body ?? */
.privacy-body {
    padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 7vw, 96px);
}

.privacy-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ?? Section card ?? */
.privacy-section {
    background: #fff;
    border-radius: 12px;
    padding: clamp(24px, 3vw, 40px) clamp(24px, 4vw, 48px);
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease;
}

.privacy-section:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.privacy-section__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #890147;
    color: #fff;
    font-family: "Chivo", system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.privacy-section__title {
    font-family: "Chivo", system-ui, sans-serif !important;
    font-weight: 700 !important;
    font-size: clamp(1.1rem, 1.6vw, 1.35rem) !important;
    color: #191919 !important;
    margin: 0 0 16px !important;
    line-height: 1.3 !important;
}

.privacy-section p {
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.75;
    color: #444;
    margin: 0 0 12px;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-section strong,
.privacy-section b {
    color: #191919;
    font-weight: 700;
}

/* ?? Rights list items ?? */
.privacy-right-item {
    padding-left: 16px;
    border-left: 3px solid #890147;
    margin-bottom: 16px;
}

.privacy-right-item:last-child {
    margin-bottom: 0;
}

/* ?? Footer meta ?? */
.privacy-footer {
    text-align: center;
    padding: 32px 24px 0;
}

.privacy-footer__updated {
    font-family: "Inter", system-ui, sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

/* ?? Responsive ?? */
@media (max-width: 768px) {
    .privacy-section {
        padding: 20px;
        margin-bottom: 16px;
    }

    .privacy-hero {
        padding: 100px 20px 48px;
    }

    .privacy-hero::after {
        height: 30px;
    }
}
