/* Privacy policy page — structure and tones ported from the sibling site,
   mapped onto the SteelFromTurkey design tokens. */

.privacy-page {
    background:
        radial-gradient(circle at top left, rgba(196, 208, 222, 0.55), transparent 34%),
        linear-gradient(180deg, var(--mill-white) 0%, var(--crisp-white) 100%);
    padding-bottom: 72px;
}

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

.privacy-shell,
.privacy-content {
    max-width: 980px;
}

.privacy-shell {
    padding: 40px 32px;
    border: 1px solid var(--border-steel);
    border-radius: var(--radius-card);
    background: #fff;
    box-shadow: 0 24px 60px rgba(9, 29, 52, 0.08);
}

.privacy-shell h1 {
    color: var(--forge-dark);
    font-family: var(--font-condensed);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.02;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.privacy-intro {
    max-width: 760px;
    margin-top: 16px;
}

.privacy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 0;
}

.privacy-meta span {
    padding: 8px 12px;
    border: 1px solid var(--border-steel);
    border-radius: 999px;
    color: var(--text-mid);
    background: rgba(196, 208, 222, 0.22);
    font-size: 0.86rem;
    font-weight: 600;
}

.privacy-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.privacy-toc a {
    padding: 8px 12px;
    border-radius: 6px;
    color: var(--coil-steel);
    background: rgba(45, 74, 110, 0.10);
    font-family: var(--font-condensed);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 180ms ease, background-color 180ms ease;
}

.privacy-toc a:hover {
    color: #fff;
    background: var(--coil-steel);
}

.privacy-section {
    padding: 34px 0;
}

.privacy-section.section-gray {
    background: rgba(196, 208, 222, 0.16);
}

.privacy-content {
    display: grid;
    gap: 16px;
}

.privacy-content h2 {
    margin: 0;
    color: var(--forge-dark);
    font-family: var(--font-condensed);
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    text-transform: uppercase;
}

.privacy-content h3 {
    margin: 0 0 8px;
    color: var(--forge-dark);
    font-family: var(--font-condensed);
    font-size: 1.12rem;
}

.privacy-content p {
    margin: 0;
    color: var(--text-mid);
    line-height: 1.72;
}

.privacy-content a {
    color: var(--coil-steel);
    font-weight: 700;
}

.privacy-details {
    display: grid;
    gap: 10px;
    margin: 0;
}

.privacy-details div {
    display: grid;
    grid-template-columns: minmax(160px, 220px) 1fr;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-card);
    background: rgba(196, 208, 222, 0.2);
}

.privacy-details dt,
.privacy-details dd {
    margin: 0;
}

.privacy-details dt {
    color: var(--forge-dark);
    font-weight: 700;
}

.privacy-details dd {
    color: var(--text-mid);
}

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

.privacy-card {
    padding: 18px;
    border: 1px solid var(--border-steel);
    border-radius: var(--radius-card);
    background: #fff;
    box-shadow: 0 14px 34px rgba(9, 29, 52, 0.06);
}

.privacy-check-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.privacy-check-list li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--text-mid);
    line-height: 1.65;
}

.privacy-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent-orange);
}

/* The global .specs-table is styled for dark product sections (white/silver text on
   faint white borders). Re-tone it for the light privacy background. */
.privacy-content .specs-table-wrap {
    margin-top: 0;
    border-color: var(--border-steel);
    background: #fff;
}

.privacy-table {
    width: 100%;
    min-width: 0;
}

.privacy-table caption {
    caption-side: top;
    margin-bottom: 10px;
    color: var(--text-mid);
    font-weight: 700;
    text-align: left;
}

.privacy-table th,
.privacy-table td {
    padding: 14px 18px;
    border-bottom-color: var(--border-steel);
    vertical-align: top;
}

.privacy-table thead th {
    width: auto;
    color: var(--forge-dark);
    background: rgba(196, 208, 222, 0.24);
}

.privacy-table tbody th {
    width: 22%;
    color: var(--forge-dark);
    background: rgba(196, 208, 222, 0.12);
}

.privacy-table tbody td {
    color: var(--text-mid);
}

.privacy-table tbody tr:last-child th,
.privacy-table tbody tr:last-child td {
    border-bottom: 0;
}

.privacy-contact {
    padding-bottom: 0;
}

.privacy-contact-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
    border-radius: var(--radius-card);
    background: var(--forge-dark);
}

.privacy-contact-shell .section-title.light {
    color: #fff;
    font-family: var(--font-condensed);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    text-transform: uppercase;
}

.privacy-contact-shell .section-desc.light {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
}

.privacy-contact-shell .btn-primary {
    flex-shrink: 0;
}

@media (max-width: 820px) {
    .privacy-hero {
        padding: 28px 0 16px;
    }

    .privacy-shell {
        padding: 28px 20px;
    }

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

    .privacy-details div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .privacy-contact-shell {
        flex-direction: column;
        align-items: flex-start;
    }
}
