/* =========================================================
   BWEIN / CLOUTÉ — PRIVACY POLICY
   Feminine Premium Legal Page
   Colors: Black • Silver • Pink • Light Blue
   ========================================================= */


/* =========================================================
   COLOR SYSTEM
   ========================================================= */

:root {
    --black: #07070a;
    --black-soft: #0d0d12;
    --black-card: #111118;

    --white: #f8f8fb;
    --silver: #c9c9d2;
    --silver-soft: #9696a3;
    --muted: #888894;

    --pink: #f472b6;
    --pink-soft: #f9a8d4;
    --pink-deep: #ec4899;

    --blue: #7dd3fc;
    --blue-soft: #bae6fd;
    --blue-deep: #38bdf8;

    --border: rgba(255, 255, 255, 0.10);

    --pink-border: rgba(244, 114, 182, 0.24);
    --blue-border: rgba(125, 211, 252, 0.20);

    --container: 900px;

    --shadow:
        0 30px 80px rgba(0, 0, 0, 0.45);
}


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(244, 114, 182, 0.10),
            transparent 32%
        ),
        radial-gradient(
            circle at 92% 30%,
            rgba(125, 211, 252, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at 50% 100%,
            rgba(244, 114, 182, 0.05),
            transparent 35%
        ),
        var(--black);

    color: var(--white);

    font-family: "DM Sans", sans-serif;

    line-height: 1.7;

    overflow-x: hidden;

    position: relative;
}


/* =========================================================
   BACKGROUND DECORATION
   ========================================================= */

body::before {
    content: "";

    position: fixed;

    width: 420px;
    height: 420px;

    left: -240px;
    top: 25%;

    border-radius: 50%;

    background: rgba(244, 114, 182, 0.10);

    filter: blur(110px);

    pointer-events: none;

    z-index: 0;
}

body::after {
    content: "";

    position: fixed;

    width: 400px;
    height: 400px;

    right: -220px;
    bottom: 10%;

    border-radius: 50%;

    background: rgba(125, 211, 252, 0.09);

    filter: blur(110px);

    pointer-events: none;

    z-index: 0;
}


/* =========================================================
   MAIN
   ========================================================= */

main {
    position: relative;

    z-index: 1;

    min-height: 100vh;
}


/* =========================================================
   LEGAL WRAPPER
   ========================================================= */

.legal-wrap {
    width: min(
        var(--container),
        calc(100% - 40px)
    );

    margin: 0 auto;

    padding:
        90px
        0
        80px;
}


/* =========================================================
   HEADER
   ========================================================= */

.legal-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    font-family: "Rajdhani", sans-serif;

    font-size: 0.72rem;

    font-weight: 600;

    letter-spacing: 0.38em;

    text-transform: uppercase;

    color: var(--pink);
}

.legal-eyebrow::before {
    content: "";

    width: 28px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--pink),
            var(--blue)
        );
}


/* =========================================================
   TITLE
   ========================================================= */

.legal-title {
    font-family: "Cormorant Garamond", serif;

    font-size:
        clamp(
            3.2rem,
            7vw,
            5.8rem
        );

    font-weight: 300;

    line-height: 0.95;

    letter-spacing: -0.025em;

    color: var(--white);

    margin-bottom: 18px;
}

.legal-title em {
    font-style: italic;

    color: var(--pink);

    text-shadow:
        0 0 30px rgba(244, 114, 182, 0.18);
}


/* =========================================================
   META
   ========================================================= */

.legal-meta {
    display: block;

    font-family: "Rajdhani", sans-serif;

    font-size: 0.70rem;

    font-weight: 500;

    letter-spacing: 0.17em;

    text-transform: uppercase;

    color: var(--silver-soft);

    line-height: 1.8;
}


/* =========================================================
   DIVIDER
   ========================================================= */

.legal-divider {
    width: 100%;

    height: 1px;

    margin:
        34px
        0
        38px;

    background:
        linear-gradient(
            90deg,
            var(--pink),
            var(--blue),
            rgba(255,255,255,0.05),
            transparent
        );
}


/* =========================================================
   INTRO
   ========================================================= */

.legal-intro {
    max-width: 820px;

    margin-bottom: 42px;

    color: var(--silver);

    font-size: 1rem;

    font-weight: 300;

    line-height: 1.95;
}

.legal-intro strong {
    color: var(--white);
}


/* =========================================================
   LEGAL SECTIONS
   ========================================================= */

.legal-section {
    margin-bottom: 46px;
}


/* =========================================================
   SECTION HEADER
   ========================================================= */

.legal-section-title {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 18px;

    padding-bottom: 13px;

    border-bottom:
        1px solid
        rgba(255,255,255,0.08);
}

.legal-section-title::after {
    content: "";

    width: 55px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--pink),
            var(--blue)
        );
}


/* NUMBER */

.legal-num {
    width: 42px;

    flex-shrink: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 1.8rem;

    font-weight: 300;

    line-height: 1;

    color: var(--pink);

    opacity: 0.65;
}


/* TITLE */

.legal-section-title h2 {
    margin: 0;

    font-family: "Rajdhani", sans-serif;

    font-size: 1rem;

    font-weight: 700;

    letter-spacing: 0.11em;

    text-transform: uppercase;

    color: var(--white);

    line-height: 1.4;
}


/* =========================================================
   LEGAL BODY
   ========================================================= */

.legal-body {
    padding-left: 60px;

    color: var(--silver-soft);

    font-size: 0.92rem;

    font-weight: 300;

    line-height: 1.95;
}

.legal-body p {
    margin-bottom: 14px;
}

.legal-body strong {
    color: var(--silver);
    font-weight: 500;
}


/* =========================================================
   LINKS
   ========================================================= */

.legal-body a {
    color: var(--pink-soft);

    text-decoration: none;

    border-bottom:
        1px solid
        rgba(244,114,182,0.25);

    transition:
        color 0.25s ease,
        border-color 0.25s ease;
}

.legal-body a:hover {
    color: var(--blue);

    border-color: var(--blue);
}


/* =========================================================
   LISTS
   ========================================================= */

.legal-body ul {
    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 12px;

    margin:
        18px
        0
        20px;
}

.legal-body li {
    position: relative;

    padding-left: 22px;
}

.legal-body li::before {
    content: "✦";

    position: absolute;

    left: 0;
    top: 1px;

    color: var(--pink);

    font-size: 0.7rem;
}


/* =========================================================
   DATA TABLE
   ========================================================= */

.table-wrap {
    width: 100%;

    margin-top: 28px;

    overflow-x: auto;

    border:
        1px solid
        rgba(255,255,255,0.09);

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(244,114,182,0.035),
            rgba(125,211,252,0.025)
        );

    box-shadow:
        0 20px 50px rgba(0,0,0,0.25);
}


/* TABLE */

table {
    width: 100%;

    min-width: 650px;

    border-collapse: collapse;
}


/* HEADER */

thead {
    background:
        linear-gradient(
            90deg,
            rgba(244,114,182,0.10),
            rgba(125,211,252,0.07)
        );
}

th {
    padding:
        16px
        18px;

    text-align: left;

    font-family: "Rajdhani", sans-serif;

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    color: var(--white);

    border-bottom:
        1px solid
        rgba(255,255,255,0.10);
}


/* CELLS */

td {
    padding:
        17px
        18px;

    vertical-align: top;

    color: var(--silver-soft);

    font-size: 0.84rem;

    line-height: 1.75;

    border-bottom:
        1px solid
        rgba(255,255,255,0.06);
}

td:first-child {
    width: 30%;

    color: var(--pink-soft);

    font-weight: 500;
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr {
    transition:
        background 0.25s ease;
}

tbody tr:hover {
    background:
        rgba(255,255,255,0.025);
}


/* =========================================================
   CONTACT CARD
   ========================================================= */

.legal-contact-card {
    position: relative;

    margin-top: 60px;

    padding:
        28px
        32px;

    display: flex;

    align-items: center;

    gap: 20px;

    border:
        1px solid
        rgba(244,114,182,0.20);

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            rgba(244,114,182,0.075),
            rgba(125,211,252,0.055)
        );

    box-shadow: var(--shadow);

    overflow: hidden;
}

.legal-contact-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--pink),
            var(--blue),
            transparent
        );
}

.legal-contact-card i {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid
        rgba(244,114,182,0.25);

    background:
        rgba(244,114,182,0.08);

    color: var(--pink);

    font-size: 1rem;
}

.legal-contact-card p {
    margin: 0;

    color: var(--silver-soft);

    font-size: 0.88rem;

    line-height: 1.8;
}

.legal-contact-card a {
    color: var(--blue-soft);

    text-decoration: none;
}

.legal-contact-card a:hover {
    color: var(--pink-soft);
}


/* =========================================================
   SELECTION
   ========================================================= */

::selection {
    background: rgba(244,114,182,0.30);

    color: #ffffff;
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background:
        linear-gradient(
            var(--pink),
            var(--blue)
        );

    border-radius: 20px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .legal-wrap {
        width:
            calc(100% - 32px);

        padding:
            65px
            0
            55px;
    }

    .legal-title {
        font-size:
            clamp(
                3rem,
                15vw,
                4.5rem
            );
    }

    .legal-meta {
        font-size: 0.62rem;

        letter-spacing: 0.11em;
    }

    .legal-divider {
        margin:
            28px
            0
            32px;
    }

    .legal-intro {
        font-size: 0.92rem;

        line-height: 1.85;
    }

    .legal-section {
        margin-bottom: 38px;
    }

    .legal-section-title {
        gap: 12px;

        align-items: flex-start;
    }

    .legal-section-title::after {
        display: none;
    }

    .legal-num {
        width: 34px;

        font-size: 1.5rem;
    }

    .legal-section-title h2 {
        font-size: 0.86rem;

        letter-spacing: 0.08em;
    }

    .legal-body {
        padding-left: 0;

        font-size: 0.86rem;

        line-height: 1.85;
    }

    .table-wrap {
        margin-left: 0;

        border-radius: 10px;
    }

    .legal-contact-card {
        flex-direction: column;

        align-items: flex-start;

        padding: 22px;

        margin-top: 45px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .legal-wrap {
        width:
            calc(100% - 24px);

        padding:
            50px
            0
            40px;
    }

    .legal-eyebrow {
        font-size: 0.62rem;

        letter-spacing: 0.28em;
    }

    .legal-title {
        font-size: 2.9rem;
    }

    .legal-meta {
        font-size: 0.58rem;

        line-height: 1.8;
    }

    .legal-intro {
        font-size: 0.88rem;
    }

    .legal-section-title {
        gap: 9px;
    }

    .legal-num {
        width: 29px;

        font-size: 1.3rem;
    }

    .legal-section-title h2 {
        font-size: 0.76rem;

        line-height: 1.5;
    }

    .legal-body {
        font-size: 0.83rem;
    }

    .legal-contact-card {
        padding: 20px;
    }

    .legal-contact-card i {
        width: 42px;
        height: 42px;
    }
}