/* =========================
   PRIVACY POLICY PAGE
========================= */

.privacy-page {
    background: #ffffff;
    color: #050505;
    overflow-x: hidden;
}

.privacy-page * {
    box-sizing: border-box;
}

/* same alignment for hero + content */
.privacy-wrap,
.privacy-content-wrap {
    width: min(980px, calc(100% - 80px));
    margin: 0 auto;
    position: relative;
}

/* =========================
   HERO
========================= */

.privacy-hero {
    position: relative;
    padding: 185px 0 95px;
    background: #ffffff;
    overflow: hidden;
}

.privacy-hero::after {
    content: "";
    position: absolute;
    right: 8%;
    top: 22%;

    width: 430px;
    height: 430px;
    border-radius: 50%;

    background: radial-gradient(circle, rgba(20, 226, 122, 0.16), transparent 62%);
    filter: blur(22px);
    pointer-events: none;
}

.privacy-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #14e27a;
}

.privacy-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: #14e27a;
}

.privacy-hero h1 {
    margin: 24px 0 0;
    max-width: 980px;

    font-size: clamp(48px, 5.4vw, 60px);
    line-height: 0.96;
    letter-spacing: -2px;
    font-weight: 500;
    color: #050505;
}

.privacy-hero-line {
    width: 100%;
    margin-top: 52px;
    padding-top: 34px;
    border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.privacy-hero-line p {
    margin: 0;
    max-width: 760px;

    font-size: 21px;
    line-height: 1.52;
    letter-spacing: -0.45px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.62);
}

/* =========================
   CONTENT
========================= */

.privacy-content {
    padding: 0 0 130px;
    background: #ffffff;
}

.privacy-policy-card {
    position: relative;
    padding: 54px 58px;

    border-radius: 26px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(0, 0, 0, 0.08);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.045),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.privacy-policy-card::before {
    content: "";
    position: absolute;
    left: 58px;
    top: 0;

    width: 92px;
    height: 3px;
    border-radius: 999px;

    background: #14e27a;
}

.privacy-policy-card h2 {
    margin: 0 0 30px;

    font-size: 34px;
    line-height: 1;
    letter-spacing: -1px;
    font-weight: 650;
    color: #050505;
}

.privacy-policy-card p {
    margin: 0 0 24px;

    font-size: 18px;
    line-height: 1.78;
    /* letter-spacing: -0.25px; */
    font-weight: 400;
    color: rgba(0, 0, 0, 0.68);
}

.privacy-policy-card p:last-child {
    margin-bottom: 0;
}

/* =========================
   CONTACT CARD
========================= */

.privacy-contact-card {
    position: relative;

    margin-top: 44px;
    padding: 52px 58px;

    border-radius: 26px;
    background: #050505;
    color: #fff;
    overflow: hidden;

    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.12);
}

.privacy-contact-card::after {
    content: "";
    position: absolute;
    right: -110px;
    top: -120px;

    width: 300px;
    height: 300px;
    border-radius: 50%;

    background: radial-gradient(circle, rgba(20, 226, 122, 0.26), transparent 62%);
    filter: blur(18px);
    pointer-events: none;
}

.privacy-contact-card h2 {
    position: relative;
    z-index: 2;

    margin: 0 0 24px;

    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.8px;
    font-weight: 700;
    color: #fff;
}

.privacy-contact-card p {
    position: relative;
    z-index: 2;

    margin: 0;
    max-width: 760px;

    font-size: 17px;
    line-height: 1.7;
    /* letter-spacing: -0.25px; */
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
}

.privacy-contact-info {
    position: relative;
    z-index: 2;

    margin-top: 28px;
    display: grid;
    gap: 10px;
}

.privacy-contact-info strong {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
}

.privacy-contact-info a {
    width: fit-content;

    color: #14e27a;
    text-decoration: none;

    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
}

.privacy-contact-info a:hover {
    text-decoration: underline;
}



/* =========================
   PRIVACY RESPONSIVE FIX
========================= */

/* Laptop / small desktop */
@media (max-width: 1200px) {

    .privacy-wrap,
    .privacy-content-wrap {
        width: min(920px, calc(100% - 72px));
    }

    .privacy-hero {
        padding: 160px 0 80px;
    }

    .privacy-hero h1 {
        font-size: 56px;
        line-height: 1;
        letter-spacing: -2.2px;
        max-width: 850px;
    }

    .privacy-hero-line {
        margin-top: 42px;
        padding-top: 28px;
    }

    .privacy-hero-line p {
        font-size: 20px;
        max-width: 720px;
    }
}


/* Tablet */
@media (max-width: 991px) {

    .privacy-wrap,
    .privacy-content-wrap {
        width: calc(100% - 56px);
    }

    .privacy-hero {
        padding: 145px 0 72px;
    }

    .privacy-hero::after {
        right: -90px;
        top: 26%;
        width: 340px;
        height: 340px;
        opacity: 0.85;
    }

    .privacy-hero h1 {
        font-size: 50px;
        line-height: 1.02;
        letter-spacing: -2px;
        max-width: 780px;
    }

    .privacy-hero-line p {
        font-size: 19px;
        line-height: 1.5;
    }

    .privacy-policy-card {
        padding: 44px 42px;
        border-radius: 22px;
    }

    .privacy-policy-card::before {
        left: 42px;
        width: 80px;
    }

    .privacy-policy-card h2 {
        font-size: 30px;
    }

    .privacy-policy-card p {
        font-size: 16px;
        line-height: 1.72;
    }

    .privacy-contact-card {
        padding: 44px 42px;
        border-radius: 22px;
    }
}


/* Mobile */
@media (max-width: 767px) {

    .privacy-wrap,
    .privacy-content-wrap {
        width: calc(100% - 32px);
    }

    .privacy-hero {
        padding: 122px 0 58px;
    }

    .privacy-hero::after {
        right: -150px;
        top: 18%;
        width: 300px;
        height: 300px;
        opacity: 0.65;
    }

    .privacy-eyebrow {
        font-size: 10px;
        letter-spacing: 2.2px;
        gap: 10px;
    }

    .privacy-eyebrow::before {
        width: 22px;
    }

    .privacy-hero h1 {
        margin-top: 18px;
        font-size: 38px;
        line-height: 1.04;
        letter-spacing: -1.5px;
        max-width: 100%;
    }

    .privacy-hero-line {
        margin-top: 30px;
        padding-top: 22px;
    }

    .privacy-hero-line p {
        max-width: 100%;
        font-size: 18px;
        line-height: 1.55;
        /* letter-spacing: -0.2px; */
    }

    .privacy-content {
        padding: 0 0 80px;
    }

    .privacy-policy-card {
        padding: 34px 24px;
        border-radius: 18px;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.04);
    }

    .privacy-policy-card::before {
        left: 24px;
        width: 68px;
        height: 3px;
    }

    .privacy-policy-card h2 {
        margin-bottom: 24px;
        font-size: 26px;
        line-height: 1.05;
        letter-spacing: -0.6px;
    }

    .privacy-policy-card p {
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 1.68;
        /* letter-spacing: -0.15px; */
    }

    .privacy-contact-card {
        margin-top: 30px;
        padding: 34px 24px;
        border-radius: 18px;
    }

    .privacy-contact-card::after {
        right: -140px;
        top: -120px;
        width: 260px;
        height: 260px;
    }

    .privacy-contact-card h2 {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .privacy-contact-card p {
        font-size: 18px;
        line-height: 1.6;
    }

    .privacy-contact-info {
        margin-top: 24px;
        gap: 9px;
    }

    .privacy-contact-info strong {
        font-size: 16px;
    }

    .privacy-contact-info a {
        font-size: 15px;
        word-break: break-word;
    }
}


/* Small mobile */
@media (max-width: 420px) {

    .privacy-hero h1 {
        font-size: 34px;
        /* letter-spacing: -1.2px; */
    }

    .privacy-policy-card,
    .privacy-contact-card {
        padding: 30px 20px;
    }

    .privacy-policy-card::before {
        left: 20px;
    }

    .privacy-policy-card h2 {
        font-size: 24px;
    }

    .privacy-policy-card p {
        font-size: 14.5px;
    }
}