
:root {
    --green: #00be6e;
    --green-dark: #049859;
    --slate-900: #0f172a;
    --slate-700: #334155;
    --slate-500: #64748b;
    --slate-200: #e2e8f0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--slate-900);
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    line-height: 1.6;
    min-height: 100vh;
    font-size: 14px;
}

a {
    color: inherit;
    text-decoration: none;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0,190,110,0.15);
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.header-inner {
    padding: 10px 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--green), rgb(0,230,130));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 24px;
    box-shadow: 0 8px 24px rgba(0,190,110,0.4);
    position: relative;
    overflow: hidden;
}

.logo-text-block {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--green-dark), var(--green), rgb(0,230,130));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtitle {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--slate-500);
    font-weight: 600;
}

/* CONTENT */
.privacy-main {
    flex: 1;
    padding: 28px 20px 32px;
}

.privacy-shell {
    max-width: 960px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out forwards;
}

.privacy-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0,190,110,0.06);
    border: 1px solid rgba(0,190,110,0.24);
    font-size: 11px;
    font-weight: 700;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.privacy-kicker-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--green);
}

.privacy-title {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}

.privacy-subtitle {
    font-size: 14px;
    color: var(--slate-500);
    max-width: 60ch;
    margin-bottom: 18px;
}

.privacy-meta {
    font-size: 12px;
    color: var(--slate-500);
    margin-bottom: 24px;
}

.privacy-card {
    background: #ffffff;
    border: 1px solid rgba(226,232,240,0.85);
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: 0 16px 40px rgba(15,23,42,0.08);
}

.privacy-section {
    padding: 16px 0;
    border-bottom: 1px solid rgba(226,232,240,0.7);
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section-title {
    font-weight: 800;
    font-size: 16px;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.privacy-section p,
.privacy-section li {
    color: var(--slate-700);
}

.privacy-section ul {
    margin-left: 18px;
    display: grid;
    gap: 6px;
}

.privacy-table {
    overflow-x: auto;
    margin-top: 12px;
}

.privacy-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.privacy-table th,
.privacy-table td {
    text-align: left;
    padding: 10px 8px;
    border-bottom: 1px solid rgba(226,232,240,0.85);
}

.privacy-table th {
    color: var(--slate-900);
    font-weight: 700;
    font-size: 13px;
}

.privacy-table td {
    color: var(--slate-700);
}

/* FOOTER */
.footer {
    border-top: 1px solid var(--slate-200);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    margin-top: 0;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 800;
}

@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        margin: 8px 12px;
        padding: 4px 0;
    }

    .header-left {
        gap: 10px;
        width: 100%;
    }

    .header-logo {
        margin-left: auto;
    }

    .logo-title {
        font-size: 20px;
    }

    .logo-subtitle {
        font-size: 9px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        padding-inline: 12px;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding-inline: 12px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .logo-title {
        font-size: 18px;
    }

    .privacy-title {
        font-size: 22px;
    }

    .footer-brand p {
        font-size: 13px;
    }

    .footer-section h3 {
        font-size: 16px;
    }

    .footer-section a {
        font-size: 13px;
    }
}
