/* Extracted from app/Views/frontend/pages/privacy-policy.php during CSS refactor. */

:root {
        --g: #28a745;
        --gd: #1a7a30;
        --gl: rgba(40, 167, 69, 0.12);
        --black: #0f0f0f;
        --white: #ffffff;
        --gray: rgba(255, 255, 255, 0.45);
    }

    .privacy-page {
        font-family: 'Montserrat', sans-serif;
        background: var(--black);
        min-height: 100vh;
        padding: 60px 20px 100px;
        overflow-x: hidden;
        position: relative;
    }

    .privacy-page::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image:
            linear-gradient(rgba(40, 167, 69, 0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(40, 167, 69, 0.04) 1px, transparent 1px);
        background-size: 48px 48px;
        pointer-events: none;
    }

    .orb {
        position: fixed;
        border-radius: 50%;
        pointer-events: none;
        filter: blur(80px);
        animation: drift 12s ease-in-out infinite alternate;
    }

    .orb-1 {
        width: 500px;
        height: 500px;
        background: rgba(40, 167, 69, 0.1);
        top: -100px;
        left: -100px;
    }

    .orb-2 {
        width: 350px;
        height: 350px;
        background: rgba(40, 167, 69, 0.06);
        bottom: -80px;
        right: -80px;
        animation-delay: -6s;
    }

    .privacy-wrap {
        max-width: 860px;
        width: 100%;
        margin: 0 auto;
        position: relative;
        z-index: 10;
    }

    .top-label {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--g);
        margin-bottom: 20px;
        opacity: 0;
        animation: slideIn 0.5s ease 0.1s forwards;
    }

    .top-label-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--g);
        animation: pulse 2s infinite;
    }

    .privacy-heading {
        font-size: clamp(36px, 6.5vw, 76px);
        font-weight: 900;
        line-height: 1.0;
        letter-spacing: -3px;
        color: var(--white);
        margin-bottom: 24px;
        opacity: 0;
        animation: slideIn 0.5s ease 0.2s forwards;
    }

    .privacy-heading span {
        color: var(--g);
    }

    .privacy-intro {
        font-size: 16px;
        font-weight: 500;
        color: var(--gray);
        line-height: 1.7;
        max-width: 560px;
        margin-bottom: 56px;
        opacity: 0;
        animation: slideIn 0.5s ease 0.3s forwards;
    }

    .privacy-accordion {
        display: flex;
        flex-direction: column;
        gap: 0;
        opacity: 0;
        animation: slideIn 0.5s ease 0.4s forwards;
    }

    .pa-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .pa-item:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .pa-head {
        width: 100%;
        background: transparent;
        border: none;
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 22px 0;
        cursor: pointer;
        text-align: left;
    }

    .pa-head:hover .pa-title {
        color: var(--white);
    }

    .pa-head:hover .pa-num {
        color: var(--g);
    }

    .pa-num {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1px;
        color: rgba(40, 167, 69, 0.4);
        min-width: 28px;
        transition: color 0.2s ease;
        font-family: 'Montserrat', monospace;
    }

    .pa-title {
        font-size: clamp(16px, 2.2vw, 20px);
        font-weight: 700;
        color: rgba(255, 255, 255, 0.7);
        flex: 1;
        transition: color 0.2s ease;
    }

    .pa-arrow {
        font-size: 18px;
        color: rgba(40, 167, 69, 0.5);
        transition: transform 0.35s ease, color 0.2s ease;
        display: inline-block;
        line-height: 1;
    }

    .pa-item.open .pa-arrow {
        transform: rotate(180deg);
        color: var(--g);
    }

    .pa-item.open .pa-title {
        color: var(--white);
    }

    .pa-item.open .pa-num {
        color: var(--g);
    }

    .pa-body {
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.4s ease, padding 0.3s ease;
        padding: 0 0 0 48px;
    }

    .pa-item.open .pa-body {
        max-height: 400px;
        padding: 0 0 24px 48px;
    }

    .pa-body p {
        font-size: 15px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.8;
        margin: 0;
    }

    .pa-list {
        list-style: none;
        padding: 12px 0 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .pa-list li {
        font-size: 14px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.4);
        padding-left: 20px;
        position: relative;
        line-height: 1.6;
    }

    .pa-list li::before {
        content: '—';
        position: absolute;
        left: 0;
        color: var(--g);
        font-weight: 700;
    }

    .pa-link {
        color: var(--g);
        text-decoration: none;
        border-bottom: 1px solid rgba(40, 167, 69, 0.3);
        transition: border-color 0.2s ease;
    }

    .pa-link:hover {
        border-color: var(--g);
    }

    .privacy-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 56px;
        padding-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        opacity: 0;
        animation: slideIn 0.5s ease 0.55s forwards;
    }

    .privacy-date {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        color: rgba(255, 255, 255, 0.2);
        text-transform: uppercase;
    }

    .privacy-cta {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: var(--g);
        color: #fff;
        text-decoration: none;
        padding: 16px 36px;
        border-radius: 100px;
        font-size: 14px;
        font-weight: 800;
        letter-spacing: -0.2px;
        transition: all 0.25s ease;
    }

    .privacy-cta:hover {
        background: var(--gd);
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(40, 167, 69, 0.4);
        color: #fff;
        text-decoration: none;
    }

    .cta-arrow {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }

    @media (max-width: 600px) {
        .privacy-footer {
            flex-direction: column;
            align-items: flex-start;
        }

        .pa-body {
            padding-left: 28px;
        }

        .pa-item.open .pa-body {
            padding-left: 28px;
        }
    }

    @keyframes drift {
        from { transform: translate(0, 0); }
        to { transform: translate(40px, 30px); }
    }

    @keyframes pulse {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: .4; transform: scale(1.5); }
    }

    @keyframes slideIn {
        to { opacity: 1; transform: translateY(0); }
    }

.pa-note-top {
    margin-top: 12px;
}