/* =========================================================
   BWEIN — TERMS OF SERVICE
   Feminine Luxury / Black / Silver / Pink / Ice Blue
   ========================================================= */


/* =========================================================
   VARIABLES
   ========================================================= */

:root {

    --black: #050507;
    --black-soft: #0b0b10;
    --surface: #101016;
    --surface-light: #15151d;

    --white: #ffffff;
    --silver: #d8d8df;
    --silver-soft: #9999a6;

    --pink: #ff5fa2;
    --pink-soft: #ff8fc2;
    --pink-glow: rgba(255, 95, 162, 0.18);

    --blue: #9edcff;
    --blue-soft: #c8edff;
    --blue-glow: rgba(158, 220, 255, 0.15);

    --border: rgba(255, 255, 255, 0.11);
    --border-pink: rgba(255, 95, 162, 0.28);

    --text: #f7f7fa;
    --muted: #a6a6b2;

    --container: 980px;

    --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 15% 5%,
            rgba(255, 95, 162, 0.09),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 35%,
            rgba(158, 220, 255, 0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #050507 0%,
            #09090e 45%,
            #050507 100%
        );

    color: var(--text);

    font-family: "DM Sans", sans-serif;

    line-height: 1.7;

    overflow-x: hidden;
}

a {
    color: inherit;
}


/* =========================================================
   BACKGROUND GLOWS
   ========================================================= */

.bg-glow {
    position: fixed;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    filter: blur(120px);

    pointer-events: none;

    z-index: 0;
}

.glow-pink {
    top: -180px;
    left: -160px;

    background: var(--pink);

    opacity: 0.12;
}

.glow-blue {
    right: -180px;
    bottom: 5%;

    background: var(--blue);

    opacity: 0.10;
}

.silver-orb {
    position: fixed;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    right: 10%;
    top: 45%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.08),
            transparent 70%
        );

    filter: blur(20px);

    pointer-events: none;

    z-index: 0;
}


/* =========================================================
   PAGE
   ========================================================= */

.terms-page {
    width: 100%;

    max-width: var(--container);

    margin: 0 auto;

    padding:
        2rem
        2rem
        5rem;

    position: relative;

    z-index: 2;
}


/* =========================================================
   HEADER
   ========================================================= */

.terms-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 2rem;

    border-bottom: 1px solid var(--border);
}


/* Brand */

.brand {

    display: inline-flex;

    align-items: center;

    gap: 0.7rem;

    text-decoration: none;
}

.brand-icon {

    width: 36px;
    height: 36px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            var(--pink),
            var(--blue)
        );

    color: #050507;

    font-size: 0.85rem;

    box-shadow:
        0 0 25px rgba(255, 95, 162, 0.25);
}

.brand-name {

    font-family: "Rajdhani", sans-serif;

    font-size: 1.25rem;

    font-weight: 700;

    letter-spacing: 0.18em;

    color: var(--white);
}


/* Back button */

.back-home {

    display: inline-flex;

    align-items: center;

    gap: 0.6rem;

    padding: 0.65rem 1rem;

    border: 1px solid var(--border);

    border-radius: 999px;

    color: var(--silver);

    font-family: "Rajdhani", sans-serif;

    font-size: 0.7rem;

    font-weight: 600;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    text-decoration: none;

    transition: 0.3s ease;
}

.back-home:hover {

    color: var(--white);

    border-color: var(--pink);

    transform: translateY(-2px);

    box-shadow:
        0 8px 25px rgba(255, 95, 162, 0.12);
}


/* =========================================================
   HERO
   ========================================================= */

.terms-hero {

    text-align: center;

    padding:
        7rem
        1rem
        4rem;
}


/* Eyebrow */

.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 0.8rem;

    font-family: "Rajdhani", sans-serif;

    font-size: 0.7rem;

    font-weight: 600;

    letter-spacing: 0.45em;

    text-transform: uppercase;

    color: var(--pink-soft);

    margin-bottom: 1.5rem;
}

.eyebrow span {

    width: 28px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--pink)
        );
}

.eyebrow span:last-child {

    background:
        linear-gradient(
            90deg,
            var(--blue),
            transparent
        );
}


/* Title */

.terms-hero h1 {

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(
        4rem,
        9vw,
        7rem
    );

    font-weight: 300;

    line-height: 0.85;

    letter-spacing: -0.03em;

    color: var(--white);

    margin-bottom: 2rem;
}

.terms-hero h1 em {

    display: block;

    font-style: italic;

    background:
        linear-gradient(
            100deg,
            var(--pink-soft),
            var(--white),
            var(--blue)
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


/* Description */

.hero-description {

    max-width: 590px;

    margin: 0 auto 1.5rem;

    color: var(--silver-soft);

    font-size: 0.95rem;

    line-height: 1.9;

    font-weight: 300;
}


/* Updated */

.updated {

    display: inline-flex;

    align-items: center;

    gap: 0.55rem;

    color: var(--silver);

    font-family: "Rajdhani", sans-serif;

    font-size: 0.68rem;

    letter-spacing: 0.15em;

    text-transform: uppercase;
}

.updated i {

    color: var(--blue);
}


/* =========================================================
   DIVIDER
   ========================================================= */

.gradient-divider {

    height: 1px;

    width: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--pink),
            var(--silver),
            var(--blue),
            transparent
        );

    opacity: 0.6;

    margin-bottom: 4rem;
}


/* =========================================================
   CONTENT
   ========================================================= */

.terms-content {

    max-width: 900px;

    margin: auto;
}


/* =========================================================
   INTRO CARD
   ========================================================= */

.intro-card {

    display: grid;

    grid-template-columns: 58px 1fr;

    gap: 1.5rem;

    padding: 2rem;

    margin-bottom: 4rem;

    border: 1px solid var(--border-pink);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 95, 162, 0.07),
            rgba(158, 220, 255, 0.035)
        );

    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.3);
}

.card-icon {

    width: 52px;
    height: 52px;

    border-radius: 15px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(255, 95, 162, 0.15),
            rgba(158, 220, 255, 0.12)
        );

    border: 1px solid rgba(255,255,255,0.12);

    color: var(--pink-soft);

    font-size: 1.1rem;
}

.intro-card h3 {

    font-family: "Cormorant Garamond", serif;

    font-size: 1.8rem;

    font-weight: 400;

    margin-bottom: 0.5rem;

    color: var(--white);
}

.intro-card p {

    color: var(--muted);

    font-size: 0.9rem;

    line-height: 1.8;

    margin-bottom: 0.5rem;
}


/* =========================================================
   TERMS SECTIONS
   ========================================================= */

.terms-section {

    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 1.5rem;

    padding:
        0
        0
        3rem;

    margin-bottom: 3rem;

    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.section-number {

    font-family: "Cormorant Garamond", serif;

    font-size: 2rem;

    font-weight: 300;

    color: var(--pink);

    opacity: 0.7;

    line-height: 1;
}

.section-content h2 {

    font-family: "Rajdhani", sans-serif;

    font-size: 1.05rem;

    font-weight: 700;

    letter-spacing: 0.13em;

    text-transform: uppercase;

    color: var(--white);

    margin-bottom: 1.1rem;

    position: relative;
}

.section-content h2::after {

    content: "";

    display: block;

    width: 38px;
    height: 1px;

    margin-top: 0.65rem;

    background:
        linear-gradient(
            90deg,
            var(--pink),
            var(--blue)
        );
}

.section-content p {

    color: var(--muted);

    font-size: 0.9rem;

    line-height: 1.95;

    margin-bottom: 0.9rem;
}


/* Links */

.section-content a {

    color: var(--pink-soft);

    text-decoration: none;

    border-bottom: 1px solid rgba(255,95,162,0.3);

    transition: 0.25s ease;
}

.section-content a:hover {

    color: var(--blue-soft);

    border-color: var(--blue);
}


/* =========================================================
   LIST
   ========================================================= */

.section-content ul {

    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 0.75rem;

    margin-top: 1rem;
}

.section-content li {

    display: flex;

    align-items: flex-start;

    gap: 0.7rem;

    color: var(--muted);

    font-size: 0.88rem;

    line-height: 1.7;
}

.section-content li i {

    color: var(--pink);

    font-size: 0.55rem;

    margin-top: 0.6rem;

    flex-shrink: 0;
}


/* =========================================================
   CONTACT LINK
   ========================================================= */

.contact-link {

    display: inline-flex;

    align-items: center;

    gap: 0.6rem;

    margin-top: 0.7rem;

    padding: 0.75rem 1.1rem;

    border: 1px solid var(--border-pink) !important;

    border-radius: 999px;

    color: var(--white) !important;

    background:
        linear-gradient(
            135deg,
            rgba(255,95,162,0.10),
            rgba(158,220,255,0.06)
        );

    border-bottom: 1px solid var(--border-pink) !important;

    font-family: "Rajdhani", sans-serif;

    font-size: 0.68rem;

    font-weight: 600;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    transition: 0.3s ease;
}

.contact-link:hover {

    transform: translateY(-2px);

    border-color: var(--pink) !important;

    box-shadow:
        0 10px 30px rgba(255,95,162,0.12);
}


/* =========================================================
   FINAL CONTACT CARD
   ========================================================= */

.terms-footer-card {

    display: grid;

    grid-template-columns: 55px 1fr auto;

    align-items: center;

    gap: 1.3rem;

    padding: 1.8rem 2rem;

    margin-top: 4rem;

    border: 1px solid rgba(158,220,255,0.18);

    border-radius: 18px;

    background:
        linear-gradient(
            110deg,
            rgba(255,95,162,0.07),
            rgba(158,220,255,0.06)
        );
}

.footer-card-icon {

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(255,95,162,0.13),
            rgba(158,220,255,0.13)
        );

    color: var(--blue-soft);

    border: 1px solid rgba(255,255,255,0.1);
}

.terms-footer-card span {

    color: var(--muted);

    font-size: 0.72rem;

    text-transform: uppercase;

    letter-spacing: 0.12em;
}

.terms-footer-card h3 {

    font-family: "Cormorant Garamond", serif;

    font-size: 1.5rem;

    font-weight: 400;

    color: var(--white);
}

.terms-footer-card > a {

    display: inline-flex;

    align-items: center;

    gap: 0.6rem;

    padding: 0.75rem 1.1rem;

    border-radius: 999px;

    background:
        linear-gradient(
            100deg,
            var(--pink),
            #c8a8ff
        );

    color: #09090d;

    font-family: "Rajdhani", sans-serif;

    font-size: 0.68rem;

    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    text-decoration: none;

    transition: 0.3s ease;
}

.terms-footer-card > a:hover {

    transform: translateY(-2px);

    box-shadow:
        0 12px 35px rgba(255,95,162,0.2);
}


/* =========================================================
   FOOTER
   ========================================================= */

.terms-footer {

    max-width: var(--container);

    margin: 0 auto;

    padding:
        2rem;

    border-top: 1px solid var(--border);

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 2rem;

    position: relative;

    z-index: 2;
}

.footer-brand {

    display: flex;

    align-items: center;

    gap: 0.6rem;

    font-family: "Rajdhani", sans-serif;

    font-weight: 700;

    letter-spacing: 0.15em;
}

.footer-icon {

    color: var(--pink);
}

.terms-footer p {

    color: var(--silver-soft);

    font-family: "Rajdhani", sans-serif;

    font-size: 0.65rem;

    letter-spacing: 0.08em;

    text-align: center;
}

.footer-links {

    display: flex;

    justify-content: flex-end;

    gap: 1.2rem;
}

.footer-links a {

    color: var(--silver-soft);

    font-family: "Rajdhani", sans-serif;

    font-size: 0.65rem;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    text-decoration: none;

    transition: 0.25s ease;
}

.footer-links a:hover {

    color: var(--pink-soft);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

    .terms-page {

        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .terms-hero {

        padding-top: 5rem;
    }

    .terms-footer {

        grid-template-columns: 1fr;

        text-align: center;
    }

    .footer-brand,
    .footer-links {

        justify-content: center;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .terms-page {

        padding:
            1.2rem
            1.2rem
            3rem;
    }

    .terms-header {

        padding-bottom: 1.2rem;
    }

    .brand-name {

        font-size: 1rem;
    }

    .brand-icon {

        width: 32px;
        height: 32px;
    }

    .back-home {

        padding: 0.55rem 0.75rem;

        font-size: 0.58rem;
    }

    .back-home i {

        display: none;
    }

    .terms-hero {

        padding:
            5rem
            0
            3rem;
    }

    .terms-hero h1 {

        font-size: 4rem;

        line-height: 0.9;
    }

    .hero-description {

        font-size: 0.86rem;
    }

    .intro-card {

        grid-template-columns: 1fr;

        padding: 1.4rem;

        gap: 1rem;
    }

    .terms-section {

        grid-template-columns: 42px 1fr;

        gap: 0.7rem;

        padding-bottom: 2.2rem;

        margin-bottom: 2.2rem;
    }

    .section-number {

        font-size: 1.5rem;
    }

    .section-content h2 {

        font-size: 0.86rem;

        letter-spacing: 0.09em;
    }

    .section-content p {

        font-size: 0.84rem;

        line-height: 1.85;
    }

    .section-content li {

        font-size: 0.82rem;
    }

    .terms-footer-card {

        grid-template-columns: 48px 1fr;

        padding: 1.4rem;
    }

    .terms-footer-card > a {

        grid-column: 1 / -1;

        justify-content: center;
    }

    .terms-footer {

        padding:
            2rem
            1.2rem;
    }

    .footer-links {

        flex-wrap: wrap;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .terms-hero h1 {

        font-size: 3.3rem;
    }

    .eyebrow {

        font-size: 0.58rem;

        letter-spacing: 0.3em;
    }

    .section-number {

        font-size: 1.3rem;
    }
}