/* ===============================
   PRIVACY / TERMS / COOKIES
================================ */

.privacy-hero{
    display:flex;
    justify-content:center;
    padding:40px 25px 60px;
}

.privacy-card{
    width:100%;
    max-width:1050px;
    background:var(--card-bg);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:45px;
    backdrop-filter:blur(18px);
    box-shadow:0 20px 60px rgba(0,0,0,.18);
}

.privacy-card h1{
    text-align:center;
    font-size:40px;
    font-weight:700;
    margin-bottom:18px;
}

.hero-line{
    width:90px;
    height:4px;
    margin:0 auto 28px;
    border-radius:10px;
    background:linear-gradient(90deg,#d4af37,#ffd978);
}

.privacy-description{
    max-width:800px;
    margin:0 auto;
    text-align:center;
    line-height:1.8;
    font-size:17px;
    color:var(--text-secondary);
}

.update-date{
    margin:35px auto 45px;
    width:max-content;
    background:rgba(212,175,55,.12);
    border:1px solid rgba(212,175,55,.25);
    padding:12px 22px;
    border-radius:30px;
    color:#d4af37;
    font-size:15px;
    font-weight:600;
}

.privacy-content{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.privacy-section{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.06);
    border-radius:20px;
    padding:28px;
    transition:.3s;
}

.privacy-section:hover{
    transform:translateY(-3px);
    border-color:rgba(212,175,55,.35);
    box-shadow:0 10px 35px rgba(0,0,0,.12);
}

.privacy-section h2{
    color:#d4af37;
    margin-bottom:18px;
    font-size:24px;
}

.privacy-section p{
    line-height:1.9;
    margin-bottom:16px;
    color:var(--text-color);
}

.privacy-section ul{
    margin:18px 0;
    padding-left:28px;
}

.privacy-section li{
    margin-bottom:12px;
    line-height:1.8;
    color:var(--text-color);
}

.documents-box{
    margin-top:20px;
    padding:35px;
    border-radius:22px;
    text-align:center;
    background:linear-gradient(
        135deg,
        rgba(212,175,55,.10),
        rgba(255,255,255,.03)
    );
    border:1px solid rgba(212,175,55,.18);
}

.documents-box h2{
    color:#d4af37;
    margin-bottom:15px;
}

.documents-box p{
    color:var(--text-secondary);
    margin-bottom:30px;
}

.documents-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:22px;
}

.document-card{
    text-decoration:none;
    color:inherit;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:30px 20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:16px;
    transition:.3s;
}

.document-card:hover{
    transform:translateY(-5px);
    border-color:#d4af37;
    box-shadow:0 15px 35px rgba(212,175,55,.18);
}

.document-card{
    font-size:42px;
}

.document-card span{
    font-size:17px;
    font-weight:600;
}

@media(max-width:900px){

    .privacy-card{
        padding:30px;
    }

    .privacy-card h1{
        font-size:32px;
    }

}

@media(max-width:600px){

    .privacy-card{
        padding:22px;
    }

    .privacy-card h1{
        font-size:27px;
    }

    .privacy-section{
        padding:22px;
    }

    .privacy-section h2{
        font-size:21px;
    }

    .documents-grid{
        grid-template-columns:1fr;
    }

}
/* ===============================
        EFFECTS & ANIMATIONS
================================ */

.privacy-card{
    animation:fadeUp .7s ease;
}

.privacy-section{
    position:relative;
    overflow:hidden;
}

.privacy-section::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(212,175,55,.06),
        transparent
    );

    transition:.8s;

}

.privacy-section:hover::before{

    left:100%;

}

.document-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:18px;

    border:1px solid transparent;

    background:
        linear-gradient(
            135deg,
            rgba(212,175,55,.45),
            transparent
        ) border-box;

    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

            mask-composite:exclude;

    opacity:0;

    transition:.35s;

}

.document-card{

    position:relative;

    overflow:hidden;

}

.document-card:hover::before{

    opacity:1;

}

.document-card:hover{

    background:rgba(212,175,55,.08);

}

.document-card span{

    transition:.3s;

}

.document-card:hover span{

    color:#d4af37;

}

.privacy-section strong{

    color:#d4af37;

    font-weight:600;

}

.privacy-section a{

    color:#d4af37;

    text-decoration:none;

}

.privacy-section a:hover{

    text-decoration:underline;

}

.privacy-section ul li::marker{

    color:#d4af37;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(25px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@media (max-width:768px){

    .privacy-description{

        font-size:16px;

        line-height:1.7;

    }

    .update-date{

        width:100%;

        text-align:center;

    }

    .documents-box{

        padding:25px;

    }

}

@media (max-width:480px){

    .privacy-card{

        border-radius:18px;

    }

    .privacy-section{

        border-radius:16px;

    }

    .documents-box{

        border-radius:18px;

    }

    .document-card{

        padding:24px;

    }

}