.privacy-page {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.privacy-hero,
.privacy-toc,
.privacy-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.86);
}

.privacy-hero {
    position: relative;
    overflow: hidden;
    padding: 34px;
    background:
        linear-gradient(
            135deg,
            rgba(37, 99, 235, 0.13),
            rgba(15, 23, 42, 0.89) 43%,
            rgba(15, 23, 42, 0.95)
        );
}

.privacy-hero::after {
    content: '';
    position: absolute;
    top: -110px;
    right: -70px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.08);
    pointer-events: none;
}

.privacy-hero__eyebrow {
    position: relative;
    z-index: 1;
    color: #60a5fa;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.privacy-hero h1 {
    position: relative;
    z-index: 1;
    margin: 7px 0 10px;
    color: #f8fafc;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.privacy-hero p {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0;
    color: #94a3b8;
    line-height: 1.65;
}

.privacy-hero__meta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-top: 18px;
    padding: 6px 10px;
    border: 1px solid rgba(96, 165, 250, 0.22);
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: #bfdbfe;
    font-size: 0.83rem;
    font-weight: 600;
}

.privacy-toc {
    padding: 24px;
}

.privacy-toc h2 {
    margin: 0 0 16px;
    color: #f8fafc;
    font-size: 1.15rem;
}

.privacy-toc__grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 9px;
}

.privacy-toc__grid a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 9px;
    background: rgba(2, 6, 23, 0.32);
    color: #cbd5e1;
    font-size: 0.88rem;
    text-decoration: none;
    transition:
        border-color 0.15s ease,
        background 0.15s ease,
        color 0.15s ease;
}

.privacy-toc__grid a:hover,
.privacy-toc__grid a:focus-visible {
    border-color: rgba(96, 165, 250, 0.35);
    background: rgba(37, 99, 235, 0.08);
    color: #dbeafe;
}

.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.privacy-card {
    scroll-margin-top: 90px;
    padding: 26px;
}

.privacy-card__heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.privacy-card__heading > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 9px;
    background: rgba(37, 99, 235, 0.08);
    color: #93c5fd;
    font-size: 0.76rem;
    font-weight: 750;
}

.privacy-card__heading h2 {
    margin: 0;
    color: #f8fafc;
    font-size: 1.25rem;
    line-height: 1.35;
}

.privacy-card h3 {
    margin: 24px 0 9px;
    color: #e2e8f0;
    font-size: 1rem;
}

.privacy-card p {
    margin: 0 0 14px;
    color: #cbd5e1;
    line-height: 1.72;
}

.privacy-card p:last-child {
    margin-bottom: 0;
}

.privacy-card ul {
    margin: 10px 0 18px;
    padding-left: 22px;
    color: #cbd5e1;
}

.privacy-card li {
    margin: 6px 0;
    line-height: 1.58;
}

.privacy-card a {
    color: #bfdbfe;
    text-decoration: none;
}

.privacy-card a:hover,
.privacy-card a:focus-visible {
    color: #dbeafe;
    text-decoration: underline;
}

.privacy-address,
.privacy-authority {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 11px;
    background: rgba(2, 6, 23, 0.34);
}

.privacy-address {
    margin: 0 0 16px;
    color: #cbd5e1;
    font-style: normal;
    line-height: 1.7;
}

.privacy-address strong {
    color: #f8fafc;
}

.privacy-data {
    margin: 0;
}

.privacy-data > div {
    display: grid;
    grid-template-columns:
        minmax(110px, 0.4fr)
        minmax(0, 1.6fr);
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.privacy-data > div:last-child {
    border-bottom: 0;
}

.privacy-data dt {
    color: #94a3b8;
}

.privacy-data dd {
    margin: 0;
    color: #f8fafc;
    font-weight: 600;
}

.privacy-authority {
    margin-top: 14px;
}

.privacy-authority strong {
    display: block;
    margin-bottom: 10px;
    color: #f8fafc;
}

.privacy-authority address {
    margin: 0 0 10px;
    color: #cbd5e1;
    font-style: normal;
    line-height: 1.65;
}

.privacy-authority p {
    margin: 0;
}

@media (max-width: 900px) {
    .privacy-toc__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .privacy-page {
        gap: 18px;
    }

    .privacy-hero,
    .privacy-toc,
    .privacy-card {
        padding: 20px;
        border-radius: 14px;
    }

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

    .privacy-card__heading {
        align-items: flex-start;
    }

    .privacy-data > div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}
