:root {
    --bg: #ffffff;
    --text: #0b0d12;
    --muted: rgba(11, 13, 18, 0.62);
    --muted2: rgba(11, 13, 18, 0.5);
    --border: rgba(11, 13, 18, 0.12);
    --shadow2: 0 12px 28px rgba(13, 14, 18, 0.12);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family:
        ui-sans-serif,
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Helvetica,
        Arial,
        "Apple Color Emoji",
        "Segoe UI Emoji";
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

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

.container {
    width: min(1120px, calc(100% - 48px));
    margin-inline: auto;
}

/* ---------- NAV ---------- */
.nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(11, 13, 18, 0.06);
    z-index: 50;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.02em;
    min-width: 220px;
}

.brand-badge {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(11, 13, 18, 0.08);
    background: #fff;
    display: block;
}

.brand-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* change to contain if your logo has padding */
    display: block;
}

.brand-sub {
    font-size: 12px;
    color: rgba(11, 13, 18, 0.55);
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
    color: rgba(11, 13, 18, 0.62);
    font-weight: 650;
}

.nav-links a {
    padding: 8px 10px;
    border-radius: 12px;
}

.nav-links a:hover {
    background: rgba(11, 13, 18, 0.05);
    color: var(--text);
}

.nav-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 26px rgba(19, 7, 38, 0.08);
    font-weight: 800;
    font-size: 14px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(19, 7, 38, 0.12);
}

.btn-primary {
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, #ff006e, #8338ec);
    box-shadow: 0 16px 38px rgba(131, 56, 236, 0.22);
}

.btn-ghost {
    background: rgba(11, 13, 18, 0.02);
}

.icon {
    width: 18px;
    height: 18px;
    display: inline-block;
}

/* ---------- PAGE ---------- */
.page {
    padding: 34px 0 54px;
}

.page-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.title {
    margin: 0;
    font-size: clamp(26px, 3.2vw, 38px);
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.meta {
    margin-top: 8px;
    color: var(--muted2);
    font-weight: 600;
    font-size: 13px;
}

.card {
    border: 1px solid rgba(11, 13, 18, 0.1);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow2);
    padding: 18px 18px;
}

.policy {
    width: 100%;
    margin-inline: auto;
}

@media (max-width: 600px) {
    .policy {
        max-width: 100%;
    }
}

.policy h2 {
    margin: 18px 0 8px;
    font-size: 28px;
    letter-spacing: -0.01em;
}

.policy h3 {
    margin-top: 20px;
    font-size: 18px;
}


.policy p,
.policy li {
    color: rgba(11, 13, 18, .78);
    line-height: 1.7;
    font-weight: 560;
}

.policy ul {
    padding-left: 18px;
    margin: 10px 0;
}

.callout {
    margin-top: 14px;
    padding: 14px 14px;
    border-radius: 16px;
    border: 1px solid rgba(11, 13, 18, 0.1);
    background: rgba(11, 13, 18, 0.02);
    color: rgba(11, 13, 18, 0.72);
    font-weight: 600;
}

/* ---------- FOOTER ---------- */
footer {
    padding: 42px 0 28px;
    border-top: 1px solid rgba(11, 13, 18, 0.08);
    background: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 22px;
}

.footer-title {
    font-weight: 950;
    letter-spacing: -0.02em;
    margin: 0 0 10px;
}

.footer-sub {
    color: rgba(11, 13, 18, 0.6);
    font-weight: 500;
    line-height: 1.55;
}

.footer-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: rgba(11, 13, 18, 0.58);
    font-weight: 550;
}

.footer-links a {
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid rgba(11, 13, 18, 0.08);
    background: rgba(11, 13, 18, 0.02);
}

.social {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.social a {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(11, 13, 18, 0.1);
    background: rgba(11, 13, 18, 0.02);
    transition: transform 0.18s ease, background 0.18s ease;
}

.social a:hover {
    transform: translateY(-1px);
    background: rgba(11, 13, 18, 0.06);
}

.newsletter {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.input {
    flex: 1 1 220px;
    min-width: 200px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(11, 13, 18, 0.12);
    background: rgba(255, 255, 255, 0.9);
    font-weight: 650;
    outline: none;
}

.input:focus {
    border-color: rgba(58, 134, 255, 0.45);
    box-shadow: 0 0 0 4px rgba(58, 134, 255, 0.12);
}

.support {
    margin-top: 12px;
    color: rgba(11, 13, 18, 0.5);
    font-weight: 500;
    line-height: 1.55;
}

.support a {
    color: rgba(11, 13, 18, 0.55);
    text-decoration: underline;
    font-weight: 550;
}

.copyright {
    margin-top: 18px;
    color: rgba(11, 13, 18, 0.5);
    font-weight: 520;
    font-size: 13px;
}

/* ---------- HAMBURGER ---------- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 4px 12px rgba(19, 7, 38, 0.07);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.22s ease, opacity 0.22s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ---------- MOBILE MENU ---------- */
.mobile-menu {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-top: 1px solid rgba(11, 13, 18, 0.06);
}

.mobile-menu.open {
    max-height: 400px;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    padding: 10px 24px 16px;
    gap: 4px;
}

.mobile-link {
    display: block;
    padding: 12px 12px;
    font-weight: 700;
    color: rgba(11, 13, 18, 0.75);
    border-radius: 12px;
    transition: background 0.15s ease, color 0.15s ease;
}

.mobile-link:hover {
    background: rgba(11, 13, 18, 0.05);
    color: var(--text);
}

.mobile-cta {
    margin-top: 8px;
    width: 100%;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .container {
        width: calc(100% - 32px);
    }

    .page {
        padding: 24px 0 42px;
    }

    .page-head {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
    }

    .page-head>div {
        width: 100%;
        text-align: center;
    }

    #downloadPdfBtn {
        width: 100%;
        max-width: 280px;
    }

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

@media (max-width: 520px) {
    .newsletter {
        flex-direction: column;
        align-items: stretch;
    }

    .input {
        min-width: unset;
        width: 100%;
        flex: none;
        height: 44px;
    }

    .card {
        padding: 16px 14px;
    }
}

/* ---------- PRINT / PDF ---------- */
@media print {

    .nav,
    .footer-links,
    .social,
    .newsletter,
    .nav-cta,
    .nav-links,
    #downloadPdfBtn {
        display: none !important;
    }

    body {
        background: #fff !important;
    }

    .card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }

    .page {
        padding: 0 !important;
    }
}