/* ============================================================
   Anonywise - podstrona "Pobierz"
   Karta pobierania, wymagania systemowe, kroki instalacji.
   ============================================================ */

/* ---------- karta pobierania ---------- */
.download-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 20px;
  background: var(--bg-soft);
  border: 1px solid rgba(0, 0, 0, .06);
  text-align: center;
}
.download-card .file-meta {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin: 0 0 26px;
  color: var(--ink-2);
  font-size: 14px;
}
.download-card .file-meta strong { color: var(--ink); }
.download-card .btn {
  width: 100%;
  padding: 18px 24px;
  font-size: 16.5px;
  flex-direction: column;
  gap: 4px;
  border-radius: 14px;
}
.download-card .btn .sub { font-size: 12.5px; font-weight: 500; opacity: .8; }

/* ---------- trial badge ---------- */
.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 13.5px;
  font-weight: 650;
  margin: 0 0 20px;
}
.trial-badge svg { width: 15px; height: 15px; }

/* ---------- kroki instalacji ---------- */
.steps { counter-reset: step; max-width: 720px; margin: 0 auto; }
.step {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(0, 0, 0, .08);
}
.step:first-child { border-top: none; }
.step-num {
  counter-increment: step;
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14.5px;
}
.step-num::before { content: counter(step); }
.step-body h3 { margin: 2px 0 6px; font-size: 17px; font-weight: 650; }
.step-body p { margin: 0; color: var(--ink-2); font-size: 15px; line-height: 1.6; }

/* ---------- ostrzeżenie SmartScreen ---------- */
.callout {
  max-width: 720px;
  margin: 8px auto 0;
  padding: 16px 18px;
  border-radius: 12px;
  background: #fffaf0;
  border: 1px solid #f5d99a;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.callout svg { flex: none; width: 20px; height: 20px; color: #b45309; margin-top: 2px; }
.callout p { margin: 0; font-size: 14.5px; line-height: 1.6; color: #6b4a1a; }
.callout strong { color: #4a3110; }
