:root {
    --bg: #eef5f3;
    --surface: rgba(255, 255, 255, 0.96);
    --surface-soft: #f8fbfa;
    --surface-strong: #ffffff;
    --text: #16302f;
    --muted: #637876;
    --brand-dark: #053734;
    --brand: #027c68;
    --brand-2: #14b8a6;
    --line: #d8e5e1;
    --shadow: 0 20px 44px rgba(15, 23, 42, 0.10);
    --shadow-strong: 0 24px 56px rgba(9, 38, 35, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(20, 184, 166, 0.16), transparent 28%),
        radial-gradient(circle at top right, rgba(15, 118, 110, 0.12), transparent 26%),
        linear-gradient(180deg, #f7fbfa 0%, var(--bg) 100%);
}

a {
    color: var(--brand);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.privacy-hero {
    position: relative;
    overflow: hidden;
    padding: 28px 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 50%, var(--brand-2) 100%);
    box-shadow: var(--shadow-strong);
}

.privacy-hero::after {
    content: "";
    position: absolute;
    inset: auto -72px -100px auto;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(8px);
}

.privacy-hero__inner {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
}

.privacy-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.privacy-brand__logo {
    width: 96px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.18));
}

.privacy-brand__logo--secondary {
    width: 110px;
}

.privacy-hero__copy {
    position: relative;
    z-index: 1;
}

.privacy-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.12);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.78);
}

.privacy-hero h1 {
    margin: 12px 0 10px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    font-weight: 900;
}

.privacy-hero p {
    margin: 0;
    max-width: 70ch;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
}

.privacy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.privacy-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    font-weight: 700;
    font-size: 0.84rem;
    backdrop-filter: blur(10px);
}

.privacy-hero__card {
    position: relative;
    z-index: 1;
    min-width: 220px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}

.privacy-hero__label {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.74);
}

.privacy-hero__card strong {
    display: block;
    margin-top: 8px;
    font-size: 1.15rem;
    font-weight: 900;
}

.privacy-hero__card p,
.privacy-hero__card span {
    display: block;
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.88);
}

.privacy-page {
    padding: 26px 18px 40px;
}

.privacy-shell {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.privacy-toc {
    position: sticky;
    top: 18px;
}

.privacy-toc__card {
    padding: 18px;
    border-radius: 22px;
    background: var(--surface);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: var(--shadow);
}

.privacy-toc__title {
    margin-bottom: 12px;
    color: var(--brand-dark);
    font-size: 0.84rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.privacy-toc__card a {
    display: block;
    padding: 10px 12px;
    margin-bottom: 6px;
    border-radius: 12px;
    color: var(--text);
    font-weight: 600;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.privacy-toc__card a:hover {
    text-decoration: none;
    color: var(--brand);
    background: #f0fdf4;
    transform: translateX(2px);
}

.privacy-content {
    display: grid;
    gap: 18px;
}

.privacy-card {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section-kicker {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand), #0c5e54);
    color: #fff;
    font-weight: 900;
    flex-shrink: 0;
}

.section-head h2 {
    margin: 0;
    font-size: 1.32rem;
    color: var(--brand-dark);
    font-weight: 900;
}

.privacy-card h3 {
    margin: 20px 0 10px;
    font-size: 1.02rem;
    color: var(--brand-dark);
    font-weight: 900;
}

.privacy-card p {
    line-height: 1.7;
    color: var(--text);
}

.privacy-callout,
.privacy-note {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid #bbf7d0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    color: #134e4a;
    line-height: 1.6;
    margin: 18px 0;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.info-box {
    padding: 14px 16px;
    border-radius: 18px;
    background: var(--surface-soft);
    border: 1px solid #e5e7eb;
}

.info-box__label {
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.info-box strong {
    color: var(--brand-dark);
    font-size: 1rem;
}

.privacy-list {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.policy-list {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 8px;
    line-height: 1.65;
}

.table-wrap {
    overflow-x: auto;
    margin-top: 12px;
    border-radius: 18px;
    border: 1px solid var(--line);
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    background: #fff;
}

.policy-table thead th {
    padding: 14px 16px;
    text-align: left;
    background: #eef8f7;
    color: #0f3d3a;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 900;
}

.policy-table tbody td {
    padding: 14px 16px;
    vertical-align: top;
    border-top: 1px solid #edf2f7;
    line-height: 1.55;
}

.policy-table tbody tr:hover td {
    background: #fbfefe;
}

.privacy-footer {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 20px 18px 34px;
    color: var(--muted);
    font-size: 0.92rem;
}

@media (max-width: 1100px) {
    .privacy-shell {
        grid-template-columns: 1fr;
    }

    .privacy-toc {
        position: static;
    }
}

@media (max-width: 900px) {
    .privacy-hero__inner {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .privacy-hero__card {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .privacy-page {
        padding: 16px 12px 28px;
    }

    .privacy-card {
        padding: 18px;
        border-radius: 20px;
    }

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

    .privacy-brand {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .privacy-brand__logo {
        width: 86px;
    }
}

@media (max-width: 540px) {
    .privacy-hero {
        padding: 22px 12px;
    }

    .privacy-hero h1 {
        font-size: 2rem;
    }

    .privacy-chip {
        width: 100%;
        justify-content: center;
    }

    .privacy-toc__card a {
        font-size: 0.96rem;
    }

    .section-head h2 {
        font-size: 1.16rem;
    }
}

@media (max-width: 700px) {
    .table-wrap {
        overflow: visible;
        border: 0;
    }

    .policy-table,
    .policy-table thead,
    .policy-table tbody,
    .policy-table tr,
    .policy-table th,
    .policy-table td {
        display: block;
        width: 100%;
    }

    .policy-table {
        min-width: 0;
        background: transparent;
    }

    .policy-table thead {
        display: none;
    }

    .policy-table tbody tr {
        margin-bottom: 12px;
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
    }

    .policy-table tbody td {
        border-top: 1px solid #edf2f7;
    }

    .policy-table tbody td:first-child {
        border-top: 0;
        font-weight: 800;
        color: var(--brand-dark);
        background: #f8fbfa;
    }

    .policy-table tbody td:last-child {
        padding-top: 12px;
    }
}
