/* ==========================================================================
   WEBTOS PRIVACY POLICY
   File: assets/css/privacy-policy.css
   ========================================================================== */

.privacy-page {
    --privacy-red: var(--color-red, #c0150f);
    --privacy-white: #ffffff;
    --privacy-muted: #9a9a9a;
    --privacy-bg: #050505;
    --privacy-panel: #0c0c0c;
    --privacy-border: rgba(255, 255, 255, 0.07);

    color: var(--privacy-white);
    background:
        radial-gradient(circle at 14% 0%, rgba(192, 21, 15, 0.09), transparent 24%),
        var(--privacy-bg);
    overflow: hidden;
}

.privacy-container {
    width: min(1180px, calc(100% - 4rem));
    margin-inline: auto;
}

.privacy-hero {
    position: relative;
    padding: 6rem 0 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.privacy-breadcrumb {
    margin-bottom: 2.3rem;
    display: flex;
    gap: 8px;
    color: #666;
    font-size: 10px;
    text-transform: uppercase;
}

.privacy-breadcrumb a {
    color: #777;
}

.privacy-breadcrumb a:hover {
    color: #fff;
}

.privacy-breadcrumb span:last-child {
    color: var(--privacy-red);
}

.privacy-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--privacy-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.privacy-label::before {
    content: "";
    width: 25px;
    height: 1px;
    background: currentColor;
}

.privacy-hero h1 {
    max-width: 900px;
    margin: 16px 0 18px;
    font-size: clamp(46px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.privacy-hero h1 span {
    color: var(--privacy-red);
}

.privacy-hero p {
    max-width: 760px;
    color: var(--privacy-muted);
    font-size: 16px;
    line-height: 1.8;
}

.privacy-meta {
    margin-top: 1.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.privacy-meta span {
    padding: 8px 11px;
    color: #bdbdbd;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--privacy-border);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
}

.privacy-content-section {
    padding: 5rem 0 7rem;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 4rem;
    align-items: start;
}

.privacy-toc {
    position: sticky;
    top: 120px;
    padding: 1.3rem;
    background: linear-gradient(145deg, #0d0d0d, #090909);
    border: 1px solid var(--privacy-border);
    border-radius: 12px;
}

.privacy-toc h2 {
    margin-bottom: 1rem;
    font-size: 15px;
    letter-spacing: -0.02em;
}

.privacy-toc a {
    display: block;
    padding: 8px 0;
    color: #828282;
    font-size: 12px;
    line-height: 1.45;
    border-bottom: 1px solid rgba(255, 255, 255, 0.035);
}

.privacy-toc a:last-child {
    border-bottom: 0;
}

.privacy-toc a:hover {
    color: #fff;
}

.privacy-article {
    min-width: 0;
}

.privacy-intro-note {
    margin-bottom: 2.2rem;
    padding: 1.25rem 1.4rem;
    background: rgba(192, 21, 15, 0.07);
    border: 1px solid rgba(192, 21, 15, 0.2);
    border-radius: 10px;
    color: #c7c7c7;
    font-size: 13px;
    line-height: 1.7;
}

.privacy-section {
    scroll-margin-top: 130px;
    padding: 0 0 2.4rem;
    margin-bottom: 2.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.privacy-section:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.privacy-section h2 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.privacy-section h3 {
    margin: 1.5rem 0 0.7rem;
    color: #fff;
    font-size: 18px;
}

.privacy-section p,
.privacy-section li {
    color: var(--privacy-muted);
    font-size: 14px;
    line-height: 1.8;
}

.privacy-section p + p {
    margin-top: 0.9rem;
}

.privacy-section ul {
    margin-top: 0.9rem;
    padding-left: 1.2rem;
}

.privacy-section li {
    margin-bottom: 0.55rem;
}

.privacy-section a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(192, 21, 15, 0.7);
    text-underline-offset: 3px;
}

.privacy-contact-card {
    margin-top: 1.2rem;
    padding: 1.4rem;
    background: #0b0b0b;
    border: 1px solid var(--privacy-border);
    border-radius: 10px;
}

.privacy-contact-card strong {
    display: block;
    margin-bottom: 7px;
    color: #fff;
}

.privacy-cta {
    position: relative;
    padding: 6rem 0;
    text-align: center;
    background: #070707;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.privacy-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(192, 21, 15, 0.11), transparent 58%);
}

.privacy-cta-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.privacy-cta h2 {
    margin: 14px 0 16px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.privacy-cta p {
    max-width: 620px;
    margin: 0 auto 2rem;
    color: var(--privacy-muted);
    line-height: 1.75;
}

.privacy-cta a {
    min-height: 50px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--privacy-red);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 900px) {
    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .privacy-toc {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .privacy-container {
        width: calc(100% - 2rem);
    }

    .privacy-hero {
        padding: 4rem 0 3.5rem;
    }

    .privacy-hero h1 {
        font-size: clamp(38px, 11vw, 52px);
    }

    .privacy-hero p,
    .privacy-section p,
    .privacy-section li {
        font-size: 13px;
    }

    .privacy-content-section {
        padding: 4rem 0 5rem;
    }

    .privacy-cta {
        padding: 5rem 0;
    }
}
