/* === POLICY.CSS ===
 * assets/css/policy.css
 * ПРИЗНАЧЕННЯ: Стилi сторiнки полiтики конфiденцiйностi
 * ЗВ'ЯЗКИ: policy.php
 * РОЗМIР: ~120 рядкiв
 * ОНОВЛЕНО: 2026-02-07
 */

/* ============================================
   POLICY — ОСНОВНИЙ КОНТЕНТ
   ============================================ */

.policy-main {
    padding: 120px 0 60px;
    min-height: calc(100vh - 200px);
}

.policy-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    color: var(--landing-text);
    margin-bottom: 8px;
    line-height: 1.2;
}

.policy-updated {
    font-size: 14px;
    color: var(--landing-text-muted);
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--landing-border);
}

/* ============================================
   POLICY — СЕКЦII
   ============================================ */

.policy-section {
    margin-bottom: 48px;
}

.policy-section__title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--landing-blue);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(79, 143, 255, 0.15);
}

.policy-subtitle {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--landing-text);
    margin-top: 28px;
    margin-bottom: 12px;
}

.policy-section p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--landing-text-secondary);
    margin-bottom: 12px;
}

.policy-section p strong {
    color: var(--landing-text);
}

/* ============================================
   POLICY — СПИСКИ
   ============================================ */

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.policy-list li {
    position: relative;
    padding: 6px 0 6px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--landing-text-secondary);
}

.policy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--landing-blue);
    opacity: 0.6;
}

.policy-list li strong {
    color: var(--landing-text);
}

/* ============================================
   POLICY — КНОПКА ПОВЕРНЕННЯ
   ============================================ */

.policy-back {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--landing-border);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 767px) {
    .policy-main {
        padding: 100px 0 40px;
    }

    .policy-title {
        font-size: 28px;
    }

    .policy-section__title {
        font-size: 22px;
    }

    .policy-subtitle {
        font-size: 16px;
    }
}
