/* ===== PRIVACY POLICY PAGE ===== */

.privacy-hero {
    background-color: #0a1223;
    position: relative;
    padding: 220px 0 80px;
    overflow: hidden;
}

.privacy-hero-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
}

.privacy-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

.privacy-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.privacy-breadcrumb a:hover { color: #fff; }
.privacy-breadcrumb .sep { color: rgba(255, 255, 255, 0.25); }
.privacy-breadcrumb .current { color: #ea232a; }

.privacy-hero-label {
    font-size: 13px;
    font-weight: 800;
    color: #ea232a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.privacy-hero-title {
    font-size: 72px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -2px;
    margin: 0 0 24px;
}

.privacy-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.62);
    max-width: 560px;
    line-height: 1.6;
    margin: 0;
}

.privacy-section {
    background: #f8fafc;
    padding: 80px 0 100px;
}

.privacy-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.privacy-meta {
    position: sticky;
    top: 140px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.privacy-meta-item {
    padding: 22px 24px;
    border-bottom: 1px solid #e2e8f0;
}

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

.privacy-meta-item span {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.privacy-meta-item strong,
.privacy-meta-item a {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    line-height: 1.4;
}

.privacy-meta-item a:hover { color: #ea232a; }

.privacy-content {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 48px;
}

.privacy-intro {
    padding-bottom: 32px;
    margin-bottom: 34px;
    border-bottom: 2px solid #e2e8f0;
}

.privacy-intro p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.65;
    color: #1e293b;
    max-width: 820px;
    margin: 0;
}

.privacy-block {
    padding-bottom: 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid #e2e8f0;
}

.privacy-block:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.privacy-block h2 {
    font-size: 24px;
    font-weight: 900;
    color: #1e293b;
    line-height: 1.25;
    margin: 0 0 16px;
}

.privacy-block p,
.privacy-block li {
    font-size: 16px;
    color: #475569;
    line-height: 1.75;
}

.privacy-block p {
    margin: 0 0 14px;
}

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

.privacy-block ul {
    margin: 12px 0 0;
    padding-left: 20px;
}

.privacy-block li {
    padding-left: 4px;
    margin-bottom: 8px;
}

.privacy-block li:last-child { margin-bottom: 0; }

@media (max-width: 1024px) {
    .privacy-hero-title { font-size: 52px; }

    .privacy-hero-container,
    .privacy-container { padding: 0 24px; }

    .privacy-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .privacy-meta {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .privacy-meta-item {
        border-bottom: none;
        border-right: 1px solid #e2e8f0;
    }

    .privacy-meta-item:last-child { border-right: none; }
}

@media (max-width: 640px) {
    .privacy-hero { padding: 180px 0 64px; }
    .privacy-hero-title { font-size: 38px; letter-spacing: -1px; }
    .privacy-section { padding: 56px 0 72px; }
    .privacy-content { padding: 28px 22px; }
    .privacy-intro p { font-size: 17px; }
    .privacy-block h2 { font-size: 20px; }
    .privacy-meta { grid-template-columns: 1fr; }
    .privacy-meta-item {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
}
