/* =========================================
   PRIVACY POLICY PAGE
========================================= */

.privacy-hero {
    position: relative;

    min-height: 390px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(5,10,18,0.58),
            rgba(8,20,35,0.56)
        ),
        url('/assets/images/privacy-hero.webp') 70% center / cover;
}

.privacy-hero::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8,20,35,0.50) 0%,
            rgba(8,20,35,0.42) 45%,
            rgba(8,20,35,0.10) 100%
        );
}

.privacy-hero .container {
    position: relative;

    z-index: 2;
}

.privacy-hero-content {
    max-width: 700px;

    padding: 50px 0 90px;
}

.privacy-hero-eyebrow {
    display: inline-flex;

    align-items: center;

    padding: 14px 22px;

    border-radius: 999px;

    background: rgba(255,255,255,0.08);

    border:
        1px solid rgba(255,255,255,0.08);

    color: #f0bb57;

    font-size: 0.85rem;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 26px;

    backdrop-filter: blur(8px);
}

.privacy-hero h1 {
    color: #ffffff;

    font-size: clamp(3.2rem, 6vw, 5.4rem);

    line-height: 0.95;

    margin-bottom: 28px;
}

.privacy-hero p {
    color: rgba(255,255,255,0.92);

    font-size: 1.25rem;

    line-height: 1.7;

    max-width: 680px;
}

/* =========================================
   MAIN CONTENT
========================================= */

.privacy-main {
    padding: 110px 0;

    background: #f4f4f2;
}

.privacy-layout {
    display: grid;

    grid-template-columns: 0.32fr 1fr;

    gap: 44px;

    align-items: start;
}

/* =========================================
   SIDE CARD
========================================= */

.privacy-side-card {
    position: sticky;

    top: 120px;

    padding: 40px 30px;

    border-radius: 34px;

    background:
        linear-gradient(
            135deg,
            #071729,
            #0d2442
        );

    color: #ffffff;

    text-align: center;

    box-shadow:
        0 18px 42px rgba(0,0,0,0.18);
}

.privacy-side-icon {
    width: 72px;
    height: 72px;

    margin: 0 auto 26px;

    border-radius: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(240,187,87,0.12),
            rgba(240,187,87,0.04)
        );

    border:
        1px solid rgba(240,187,87,0.18);
}


.privacy-side-icon i {
    font-size: 1.65rem;

    color: #f0bb57;
}

.privacy-side-card h2 {
    font-size: 2rem;

    line-height: 1.15;

    margin-bottom: 22px;

    color: #ffffff;
}

.privacy-side-card p {
    color: rgba(255,255,255,0.82);

    line-height: 1.75;

    font-size: =.95rem;

    margin: 0;
}
.privacy-side-card h2 {
    font-size: 1.65rem;
    line-height: 1.18;
    margin-bottom: 20px;
}

/* =========================================
   POLICY CARDS
========================================= */

.privacy-policy-wrapper {
    display: flex;

    flex-direction: column;

    gap: 34px;
}

.privacy-card {
    background: #ffffff;

    border-radius: 36px;

    padding: 52px;

    box-shadow:
        0 12px 34px rgba(0,0,0,0.04);
}

.privacy-card h2 {
    position: relative;

    font-size: 2rem;

    line-height: 1.1;

    margin-bottom: 30px;

    padding-bottom: 18px;

    color: #111111;
}

.privacy-card h2::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 90px;
    height: 4px;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            #e0b35a,
            #f0c978
        );
}

.privacy-card p {
    color: #525252;

    line-height: 1.95;

    margin-bottom: 22px;

    font-size: 1.05rem;
}

.privacy-card p:last-child {
    margin-bottom: 0;
}

.privacy-card strong {
    color: #111111;
}

/* =========================================
   CONTACT CTA
========================================= */

.privacy-contact-card {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 34px;

    padding: 50px;

    border-radius: 36px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #fbfbfa
        );

    box-shadow:
        0 12px 34px rgba(0,0,0,0.04);
}

.privacy-contact-card h2 {
    font-size: 2.5rem;

    line-height: 1.05;

    margin-bottom: 16px;
}

.privacy-contact-card p {
    color: #616161;

    line-height: 1.8;

    margin: 0;
}

.privacy-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 190px;

    height: 62px;

    padding: 0 34px;

    border-radius: 999px;

    background:
        linear-gradient(
            135deg,
            #f0bb57,
            #d8a63f
        );

    color: #111111;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 10px 22px rgba(216,166,63,0.28);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.privacy-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 28px rgba(216,166,63,0.35);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .privacy-layout {
        grid-template-columns: 1fr;
    }

    .privacy-side-card {
        position: relative;

        top: auto;
    }

}

@media (max-width: 768px) {

    .privacy-main {
        padding: 80px 0;
    }

    .privacy-card,
    .privacy-contact-card,
    .privacy-side-card {
        padding: 34px 28px;
    }

    .privacy-contact-card {
        flex-direction: column;

        align-items: flex-start;
    }

    .privacy-btn {
        width: 100%;
    }

    .privacy-hero {
        min-height: 360px;
    }

    .privacy-hero-content {
        padding: 70px 0;
    }

    .privacy-hero h1 {
        font-size: 3.2rem;
    }

}