/* ═══════════════════════════════════════════════════════════
   Polski-VPN.pl — v3: jasny motyw premium (SaaS)
   Zasady: 1 akcent, szarości zamiast kolorów, hairline bordery,
   miękkie warstwowe cienie, ikony SVG zamiast emoji.
   ═══════════════════════════════════════════════════════════ */

:root {
  --bg: #ffffff;
  --bg-2: #f9fafb;
  --border: #eaecf0;
  --border-2: #d0d5dd;
  --text: #101828;
  --text-2: #344054;
  --muted: #475467;
  --muted-2: #667085;
  --accent: #2563eb;
  --accent-deep: #1d4ed8;
  --accent-bg: #eff4ff;
  --accent-border: #b2ccfa;
  --navy: #0c111d;
  --green: #12b76a;
  --green-deep: #027a48;
  --amber: #f79009;
  --red: #f04438;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.1), 0 1px 2px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 4px 8px -2px rgba(16, 24, 40, 0.1), 0 2px 4px -2px rgba(16, 24, 40, 0.06);
  --shadow-lg: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
  --shadow-xl: 0 20px 24px -4px rgba(16, 24, 40, 0.08), 0 8px 8px -4px rgba(16, 24, 40, 0.03);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Sora", "Inter", -apple-system, sans-serif;
  --header-h: 68px;
  --promo-h: 40px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--promo-h) + 12px);
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
::selection { background: var(--accent); color: #fff; }

.container { width: min(1160px, 100% - 40px); margin-inline: auto; }
.container--narrow { width: min(860px, 100% - 40px); }

/* ── System ikon ───────────────────────────────────────── */
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon--fill { fill: currentColor; stroke: none; }
.icon--flag { width: 21px; height: 14px; stroke: none; border-radius: 3px; box-shadow: inset 0 0 0 1px rgba(16, 24, 40, 0.12); }

/* ── Typografia ────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.18; letter-spacing: -0.02em; color: var(--text); }
h2 { font-size: clamp(1.55rem, 3.1vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 600; }

.text-accent {
  background: linear-gradient(92deg, var(--accent-deep), var(--accent) 45%, #0891b2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-accent-light { color: #8ab4ff; }

.label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section { padding: clamp(68px, 9vw, 116px) 0; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); }
.section__sub { color: var(--muted); margin-top: 14px; font-size: 1.02rem; }

/* ── Przyciski ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease, color 0.15s ease;
}
.btn .icon { font-size: 1.05em; }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-xs), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.btn--primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn--outline {
  background: #fff;
  border-color: var(--border-2);
  color: var(--text-2);
  box-shadow: var(--shadow-xs);
}
.btn--outline:hover { border-color: #98a2b3; background: var(--bg-2); transform: translateY(-1px); }

.btn--ghost { color: var(--muted); padding: 10px 12px; }
.btn--ghost:hover { color: var(--text); }

.btn--whatsapp { background: #16a34a; border-color: #16a34a; color: #fff; box-shadow: var(--shadow-xs); }
.btn--whatsapp:hover { background: #15803d; box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn--sm { padding: 8px 16px; font-size: 0.88rem; }
.btn--lg { padding: 14px 28px; font-size: 1rem; border-radius: 12px; }
.btn--xl { padding: 16px 36px; font-size: 1.05rem; border-radius: 12px; }
.btn--block { width: 100%; }

.micro-assurance { color: var(--muted-2); font-size: 0.87rem; margin-top: 12px; }

/* ── Pasek promo ───────────────────────────────────────── */
.promo-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  height: var(--promo-h);
  background: var(--navy);
  color: #cdd5e0;
  display: flex;
  align-items: center;
  font-size: 0.84rem;
}
.promo-bar strong { color: #fff; font-weight: 600; }
.promo-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.promo-bar__text, .promo-bar__timer { display: inline-flex; align-items: center; gap: 7px; }
.promo-bar .icon { font-size: 0.9rem; opacity: 0.75; }
.promo-bar__timer strong { font-variant-numeric: tabular-nums; }

.promo-code {
  font-weight: 700;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  padding: 2px 9px;
  letter-spacing: 0.05em;
  color: #fff;
  transition: background 0.15s, border-color 0.15s;
}
.promo-code:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.4); }

.promo-code--light, .promo-inline {
  background: var(--accent-bg);
  border: 1px solid var(--accent-border);
  color: var(--accent-deep);
  border-radius: 6px;
  padding: 2px 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.promo-code--dark {
  background: rgba(59, 130, 246, 0.16);
  border: 1px solid rgba(147, 197, 253, 0.35);
  color: #b3ccff;
}

/* ── Nagłówek ──────────────────────────────────────────── */
.header {
  position: fixed;
  top: var(--promo-h); left: 0; right: 0;
  z-index: 55;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-xs);
}

.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; }

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo__img { height: 40px; width: auto; mix-blend-mode: multiply; }
.logo__text { font-family: var(--font-display); font-weight: 700; font-size: 1.04rem; letter-spacing: -0.01em; color: var(--text); }
.logo__accent { color: var(--accent); }

.nav { display: flex; gap: 26px; font-size: 0.91rem; font-weight: 500; color: var(--muted); }
.nav a { transition: color 0.15s; }
.nav a:hover { color: var(--text); }

.header__actions { display: flex; align-items: center; gap: 8px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: calc(var(--header-h) + var(--promo-h) + clamp(52px, 8vw, 92px)) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
  background: linear-gradient(180deg, #f7f9fc 0%, #fdfeff 60%, #ffffff 100%);
}
.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(42% 46% at 78% 24%, rgba(37, 99, 235, 0.07), transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero__title { font-size: clamp(2.05rem, 4.5vw, 3.3rem); font-weight: 700; letter-spacing: -0.03em; margin-bottom: 18px; }
.hero__sub { color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.13rem); max-width: 54ch; }
.hero__sub strong { color: var(--text); font-weight: 600; }

.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

.hero__assurances {
  display: flex;
  gap: 10px 22px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.89rem;
  font-weight: 500;
}
.hero__assurances li { display: inline-flex; align-items: center; gap: 7px; }
.hero__assurances .icon { color: var(--green); font-size: 1rem; }

.hero__proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
}
.hero__proof strong { color: var(--text); font-weight: 600; }

.stars { display: inline-flex; gap: 2px; color: var(--amber); }
.stars .icon { font-size: 1rem; }

/* Mockup aplikacji */
.hero__visual { position: relative; justify-self: center; width: min(392px, 100%); }

.app-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.app-card__head {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border-2); }
.app-card__brand { margin-left: auto; font-size: 0.78rem; font-weight: 600; color: var(--muted-2); }

.app-card__body { padding: 26px 24px 22px; text-align: center; }

.power-ring {
  position: relative;
  width: 82px; height: 82px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(18, 183, 106, 0.1), var(--shadow-md);
}
.power-ring__pulse {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(18, 183, 106, 0.4);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.92); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(18, 183, 106, 0.15);
  display: inline-block;
}
.app-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
}
.app-card__server { display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; margin-top: 8px; font-size: 0.95rem; }
.app-card__ip { color: var(--muted-2); font-size: 0.82rem; margin-top: 3px; }

.app-card__unlocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin: 18px 0;
}
.app-card__unlocks span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2);
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 5px 11px;
  border-radius: 999px;
}
.app-card__unlocks .icon { color: var(--green); font-size: 0.82rem; }

.app-card__speed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.app-card__speed small { display: block; color: var(--muted-2); font-size: 0.71rem; }
.app-card__speed strong { font-size: 0.9rem; font-variant-numeric: tabular-nums; }

.app-card__badge {
  position: absolute;
  bottom: -16px;
  right: -6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  box-shadow: var(--shadow-lg);
}
.app-card__badge .icon { color: var(--accent); font-size: 0.95rem; }

/* ── Pasek zaufania (wąski, z ikonami) ─────────────────── */
.trustbar { border-block: 1px solid var(--border); background: #fff; padding: 15px 0; }
.trustbar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 0;
}
.trustbar__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  color: var(--muted);
  padding: 2px 26px;
}
.trustbar__item + .trustbar__item { border-left: 1px solid var(--border); }
.trustbar__item strong { color: var(--text); font-weight: 600; }
.trustbar__item .icon { font-size: 1.1rem; }
.tb--amber { color: var(--amber); }
.tb--orange { color: #ea580c; }
.tb--blue { color: var(--accent); }
.tb--green { color: var(--green); }

/* zaokrąglony box gwarancji (pod cennikiem) */
.trust-pill {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-xs);
  padding: 13px 8px;
  margin-bottom: 22px;
}
.trust-pill__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 2px 22px;
}
.trust-pill__item + .trust-pill__item { border-left: 1px solid var(--border); }
.trust-pill__item strong { font-weight: 600; color: var(--text); }
.trust-pill__item .icon { font-size: 1.05rem; }

/* ── Karty ─────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--border-2); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.94rem; }

.ficon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-bg);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.ficon .icon { font-size: 1.35rem; }
/* palety pomocnicze — kolorowość sekcji */
.ficon--purple { background: #f3ecff; color: #7c3aed; }
.ficon--teal { background: #dff5f1; color: #0d9488; }
.ficon--green { background: #e3f8ec; color: #16a34a; }
.ficon--orange { background: #fdeee1; color: #ea580c; }
.ficon--rose { background: #fce7f1; color: #db2777; }
.ficon--blue { background: var(--accent-bg); color: var(--accent); }

/* chipy w kartach funkcji */
.card__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--border-2);
  color: var(--muted);
}
.chip--green { background: #e3f8ec; border-color: #bce8cd; color: #15803d; }

.problem__bridge {
  margin-top: 44px;
  text-align: center;
  background: #f5f8ff;
  border: 1px solid #e0e9fc;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
}
.problem__bridge p { font-size: 1.05rem; max-width: 62ch; margin: 0 auto 20px; color: var(--text-2); }
.problem__bridge strong { color: var(--text); }

/* ── Use cases ─────────────────────────────────────────── */
.usecase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(30px, 4vw, 46px) 0;
}
.usecase + .usecase { border-top: 1px solid var(--border); }
.usecase--rev .usecase__text { order: 2; }
.usecase--rev .usecase__visual { order: 1; }

.usecase__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-deep);
  background: var(--accent-bg);
  border-radius: 999px;
  padding: 5px 13px;
  margin-bottom: 14px;
}
.usecase__tag .icon { font-size: 0.9rem; }
.usecase__tag--purple { background: #f3ecff; color: #6d28d9; }
.usecase__tag--teal { background: #dff5f1; color: #0f766e; }
.usecase__tag--green { background: #e3f8ec; color: #15803d; }
.usecase__text h3 { font-size: clamp(1.25rem, 2.1vw, 1.55rem); margin-bottom: 12px; }
.usecase__text > p { color: var(--muted); margin-bottom: 18px; font-size: 0.97rem; }

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 0.94rem;
  color: var(--text-2);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #ecfdf3;
  color: var(--green-deep);
  font-size: 0.7rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* pionowa lista usług (jak w oryginale) */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(16px, 2.5vw, 24px);
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--text);
  box-shadow: var(--shadow-xs);
  transition: transform 0.18s, box-shadow 0.18s;
}
.service-list li:hover { transform: translateX(3px); box-shadow: var(--shadow-sm); }
.service-list__icon { display: grid; place-items: center; flex-shrink: 0; }
.service-list__icon .icon { font-size: 1.25rem; }
.service-list__check {
  margin-left: auto;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.service-list__check .icon { font-size: 0.68rem; stroke-width: 3.2; }
.sicon--red { color: #dc2626; }
.sicon--blue { color: var(--accent); }
.sicon--green { color: #16a34a; }
.sicon--teal { color: #0d9488; }
.sicon--orange { color: #ea580c; }
.sicon--purple { color: #7c3aed; }

/* ── Jak to działa — kompaktowy pasek (jak w oryginale) ── */
.how {
  background: #eef4ff;
  border-block: 1px solid #dbe7fd;
  padding: 34px 0 38px;
}
.how__label { text-align: center; margin-bottom: 20px; }
.stepper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  /* kolumnowy odstęp 12px = odstęp strzałki z prawej; z lewej daje go gap 8px + margines 4px */
  gap: 12px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-2);
}
.stepper li { display: inline-flex; align-items: center; gap: 8px; }
.stepper li:not(:last-child)::after {
  content: "›";
  color: #98a2b3;
  font-size: 1.1rem;
  font-weight: 400;
  margin-left: 4px;
}
.stepper__num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Aplikacje ─────────────────────────────────────────── */
.apps { background: var(--bg-2); border-block: 1px solid var(--border); }
.apps__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.apps__sub { color: var(--muted); margin: 14px 0 26px; max-width: 56ch; }
.apps__text h2 { max-width: 20ch; }

.store-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 20px;
  background: var(--navy);
  color: #fff;
  border: 1px solid #2b3444;
  border-radius: 9px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.store-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.store-badge .icon { font-size: 1.6rem; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.25; text-align: left; }
.store-badge small { font-size: 0.68rem; color: #98a2b3; letter-spacing: 0.02em; }
.store-badge strong { font-size: 0.98rem; font-weight: 600; letter-spacing: -0.01em; }
.store-badge--play .icon { color: #fff; }

.apps__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}
.apps__platforms li { display: inline-flex; align-items: center; gap: 8px; }
.apps__platforms .icon { color: var(--muted-2); font-size: 1rem; }
.apps__note { margin-top: 16px; font-size: 0.88rem; color: var(--muted-2); }
.apps__note a { color: var(--accent-deep); font-weight: 500; }
.apps__note a:hover { text-decoration: underline; }

/* Mockup — prawdziwy zrzut aplikacji na telefonie */
.apps__visual { display: flex; justify-content: center; }
.apps__shot {
  width: min(560px, 100%);
  height: auto;
  filter: drop-shadow(0 28px 44px rgba(16, 24, 40, 0.22));
}
/* kopia pod nagłówkiem — widoczna tylko w układzie jednokolumnowym */
.apps__shot--mobile { display: none; }

/* ── Urządzenia — siatka kompatybilności ───────────────── */
.devices__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 14px 22px;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s, background 0.18s;
}
.device:hover { transform: translateY(-3px); background: #fff; border-color: #bfd3f9; box-shadow: var(--shadow-md); }
.device__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--accent-bg);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}
.device__icon .icon { font-size: 1.5rem; }
.device strong { font-family: var(--font-display); font-size: 0.97rem; font-weight: 700; }
.device small { color: var(--muted-2); font-size: 0.77rem; }

/* ── Tabela porównawcza (wyróżniona kolumna jak karta) ── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: #fff;
  padding: 0 8px 8px;
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  font-size: 0.92rem;
  min-width: 680px;
}
.compare-table th, .compare-table td {
  padding: 17px 18px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
}
.compare-table thead th {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  padding-top: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.compare-table thead th:first-child,
.compare-table tbody th { text-align: left; }
.compare-table tbody th { font-weight: 600; color: var(--text); font-size: 0.92rem; font-family: var(--font); }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }

/* kolumna Polski-VPN.pl — niebieska karta */
.compare-table thead .col-us {
  background: var(--accent);
  color: #fff;
  border-radius: 14px 14px 0 0;
  border-bottom: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.compare-table tbody .col-us {
  background: #eef4ff;
  border-bottom: none;
  border-inline: 1px solid #dbe7fd;
}
.compare-table tbody tr:last-child .col-us {
  border-radius: 0 0 14px 14px;
  border-bottom: 1px solid #dbe7fd;
}

/* komórki: ikona + podpis */
.cell {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  line-height: 1.3;
}
.cell .icon { font-size: 1.2rem; stroke-width: 2.4; }
.cell small { font-size: 0.78rem; color: var(--muted-2); font-weight: 500; }
.cell--yes .icon { color: var(--green); }
.cell--no .icon { color: var(--red); }
.cell--mid .icon { color: var(--amber); }
.col-us .cell small { color: var(--accent-deep); font-weight: 600; }
.cell--price { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--accent-deep); }
.cell--text { font-size: 0.83rem; color: var(--muted-2); font-weight: 500; }

/* ── Opinie ────────────────────────────────────────────── */
.review blockquote { color: var(--text-2); font-size: 0.95rem; margin: 14px 0 18px; }
.review figcaption { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.review figcaption strong { display: block; font-size: 0.9rem; color: var(--text); }
.review figcaption em { display: block; font-style: normal; font-size: 0.8rem; color: var(--muted-2); }

.reviews__links { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 9px;
  box-shadow: var(--shadow-xs);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}
.review-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--border-2); }
.review-badge > span:last-child { display: flex; flex-direction: column; line-height: 1.25; text-align: left; }
.review-badge small { font-size: 0.68rem; color: var(--muted-2); letter-spacing: 0.02em; }
.review-badge strong { font-size: 0.98rem; font-weight: 600; color: var(--text); letter-spacing: -0.01em; }
.review-badge__icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.review-badge__icon .icon { font-size: 1.15rem; }
.review-badge__icon--tp { background: #e6f6ef; color: #00b67a; }
.review-badge__icon--al { background: #fff0e8; color: #ff5a00; }

/* ── Cennik ────────────────────────────────────────────── */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 30px 28px 26px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s, transform 0.2s;
}
.plan:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.plan--featured {
  background: #fff;
  border: 2px solid #6b90fa;
  box-shadow: 0 18px 44px rgba(107, 144, 250, 0.22), var(--shadow-md);
  transform: scale(1.03);
  z-index: 1;
}
.plan--featured:hover { transform: scale(1.03) translateY(-3px); }

.plan__badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.plan__name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }
.plan__desc { color: var(--muted-2); font-size: 0.87rem; margin-top: 4px; }

.plan__price { display: flex; align-items: baseline; gap: 9px; margin-top: 22px; }
.plan__was { color: var(--muted-2); text-decoration: line-through; font-size: 1rem; }
.plan__amount { font-family: var(--font-display); font-size: 2.55rem; font-weight: 700; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.plan__per { color: var(--muted-2); font-weight: 500; }

.plan__billing { color: var(--muted-2); font-size: 0.85rem; margin: 4px 0 20px; }
.save { color: var(--green-deep); font-weight: 600; }

.plan__features { flex: 1; border-top: 1px solid var(--border); padding-top: 18px; margin-bottom: 24px; }
.plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 11px;
  font-size: 0.92rem;
  color: var(--text-2);
}
.plan__features .icon { color: var(--green); font-size: 1rem; margin-top: 3px; }

.plan__note { text-align: center; color: var(--muted-2); font-size: 0.79rem; margin-top: 12px; }

.pricing__trust { text-align: center; margin-top: 46px; }
.payments { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.pay-chip {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 5px 12px;
  color: var(--muted);
  box-shadow: var(--shadow-xs);
}
.pricing__guarantee { color: var(--muted); font-size: 0.93rem; max-width: 70ch; margin: 0 auto; }
.pricing__guarantee strong { color: var(--text); }

/* ── Gwarancja ─────────────────────────────────────────── */
.guarantee { padding-top: 0; }
.guarantee__inner {
  display: flex;
  gap: 30px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(30px, 4vw, 46px);
  box-shadow: var(--shadow-sm);
}
.guarantee__inner h2 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); margin-bottom: 12px; }
.guarantee__inner p { color: var(--muted); margin-bottom: 20px; max-width: 72ch; font-size: 0.97rem; }
.guarantee__inner p strong { color: var(--text); }
.guarantee__seal {
  flex-shrink: 0;
  width: 68px; height: 68px;
  border-radius: 16px;
  background: #ecfdf3;
  color: var(--green);
  display: grid;
  place-items: center;
}
.guarantee__seal .icon { font-size: 2.1rem; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq { background: var(--bg-2); border-top: 1px solid var(--border); }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq__item.is-open { border-color: var(--accent-border); box-shadow: var(--shadow-sm); }

.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  padding: 17px 20px;
}
.faq__chevron {
  flex-shrink: 0;
  width: 9px; height: 9px;
  border-right: 1.8px solid var(--muted-2);
  border-bottom: 1.8px solid var(--muted-2);
  transform: rotate(45deg);
  transition: transform 0.25s;
  margin-top: -4px;
}
.faq__item.is-open .faq__chevron { transform: rotate(225deg); margin-top: 4px; }

.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq__a p { padding: 0 20px 18px; color: var(--muted); font-size: 0.93rem; }
.faq__a a { color: var(--accent-deep); text-decoration: underline; }
.faq__a strong { color: var(--text); }

.faq__more { text-align: center; margin-top: 38px; }
.faq__more p { color: var(--muted); margin-bottom: 14px; font-size: 0.95rem; }

/* ── Finalne CTA ───────────────────────────────────────── */
.final-cta {
  background: radial-gradient(52% 88% at 50% 0%, rgba(37, 99, 235, 0.22), transparent 72%), var(--navy);
}
.final-cta__inner { text-align: center; max-width: 700px; margin-inline: auto; }
.final-cta__inner h2 { color: #fff; margin-bottom: 16px; }
.final-cta__inner > p { color: #98a2b3; margin-bottom: 28px; font-size: 1.02rem; }
.final-cta .micro-assurance { color: #667085; }

/* ── Stopka ────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); background: #fff; padding: 56px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr; gap: 36px; }
.footer__col h4 {
  font-family: var(--font);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted-2);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer__col a { display: block; color: var(--muted); font-size: 0.9rem; margin-bottom: 10px; transition: color 0.15s; }
.footer__col a:hover { color: var(--text); }
.footer__brand .logo__img { height: 34px; }
.footer__brand p { color: var(--muted-2); font-size: 0.88rem; margin-top: 16px; max-width: 34ch; }
.footer__legal { font-size: 0.78rem !important; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  margin-top: 44px;
  padding-top: 24px;
  color: var(--muted-2);
  font-size: 0.83rem;
}
.payments--footer { margin: 0; }

/* ── Sticky CTA (mobile) ───────────────────────────────── */
.sticky-cta {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 11px 14px;
  box-shadow: var(--shadow-xl);
  transform: translateY(130%);
  transition: transform 0.3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__close {
  position: absolute;
  top: -10px; right: -4px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  color: var(--muted-2);
}
.sticky-cta__close .icon { font-size: 0.78rem; stroke-width: 2.6; }
.sticky-cta__close:active { transform: scale(0.94); }
.sticky-cta__text { display: flex; flex-direction: column; line-height: 1.3; }
.sticky-cta__text strong { font-size: 0.98rem; }
.sticky-cta__text span { color: var(--muted-2); font-size: 0.76rem; }

/* ── WhatsApp FAB ──────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 49;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-fab .icon { font-size: 1.55rem; }
.whatsapp-fab:hover { transform: scale(1.06); box-shadow: var(--shadow-xl); }

/* ── Modal exit-intent ─────────────────────────────────── */
.modal { position: fixed; inset: 0; z-index: 70; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(16, 24, 40, 0.5); backdrop-filter: blur(4px); }
.modal__box {
  position: relative;
  width: min(440px, 100%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 30px 26px;
  text-align: center;
  box-shadow: var(--shadow-xl), 0 32px 64px -12px rgba(16, 24, 40, 0.2);
  animation: modal-in 0.3s ease;
}
@keyframes modal-in {
  from { transform: translateY(14px) scale(0.98); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.modal__ficon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}
.modal__ficon .icon { font-size: 1.5rem; }
.modal__box h3 { font-size: 1.3rem; margin-bottom: 10px; }
.modal__box > p { color: var(--muted); font-size: 0.93rem; margin-bottom: 22px; }
.modal__close { position: absolute; top: 14px; right: 14px; color: var(--muted-2); padding: 6px; }
.modal__close .icon { font-size: 1.05rem; }
.modal__close:hover { color: var(--text); }
.modal__dismiss { color: var(--muted-2); font-size: 0.83rem; margin-top: 14px; }
.modal__dismiss:hover { color: var(--text); }

/* ── Toast ─────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translate(-50%, 80px);
  z-index: 80;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 11px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none;
}
.toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

/* ── Animacje reveal ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ── Responsywność ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__cta, .hero__assurances, .hero__proof { justify-content: center; }
  .hero__visual { margin-top: 14px; }
  .usecase { grid-template-columns: 1fr; }
  .usecase--rev .usecase__text { order: 1; }
  .usecase--rev .usecase__visual { order: 2; }
  .apps__inner { grid-template-columns: 1fr; }
  .apps__text { text-align: center; }
  .apps__text h2, .apps__sub { margin-inline: auto; }
  .store-badges, .apps__platforms { justify-content: center; }
  .apps__shot--mobile { display: block; width: min(420px, 94%); margin: 24px auto 8px; }
  .apps__visual { display: none; }
  .devices__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav {
    /* kotwiczone do dołu nagłówka — niezależne od wysokości paska promo (iOS) */
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 2px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 12px 20px 18px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.2s, opacity 0.2s, visibility 0.2s;
  }
  .hero__proof { flex-direction: column; align-items: center; gap: 10px; text-align: center; }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav a { padding: 11px 6px; font-size: 1rem; border-bottom: 1px solid var(--bg-2); }
  .nav-toggle { display: flex; }
  .header__actions .btn--ghost { display: none; }

  .grid-3, .plans { grid-template-columns: 1fr; }
  .stepper { flex-direction: column; align-items: flex-start; gap: 12px; width: fit-content; margin-inline: auto; }
  .stepper li:not(:last-child)::after { content: none; }
  .plan--featured { transform: none; order: -1; }
  .plan--featured:hover { transform: translateY(-3px); }

  .trustbar__inner { flex-direction: column; align-items: center; gap: 11px; }
  .trustbar__item { padding: 0; border-left: none !important; font-size: 0.88rem; }
  .trust-pill { flex-direction: column; align-items: flex-start; border-radius: 18px; padding: 16px 20px; gap: 11px; }
  .trust-pill__item { padding: 0; border-left: none !important; }

  .guarantee__inner { flex-direction: column; text-align: center; align-items: center; }
  .sticky-cta { display: flex; }
  .whatsapp-fab { bottom: 84px; right: 14px; width: 48px; height: 48px; }
  .promo-bar { font-size: 0.78rem; }
  .promo-bar__inner { gap: 10px; }
}

@media (max-width: 600px) {
  :root { --promo-h: 54px; }
  .promo-bar__inner { flex-direction: column; gap: 1px; line-height: 1.4; }
  .promo-bar .icon { display: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__cta .btn { width: 100%; }
  .devices__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .device { padding: 22px 10px 18px; }
  .device small { font-size: 0.72rem; }
  .store-badges { flex-direction: column; align-items: stretch; }
  .store-badge { justify-content: center; }
  .store-badge span { min-width: 148px; }
  .header .logo__text { display: none; }
  .eyebrow { font-size: 0.78rem; padding: 6px 12px; }
  .app-card__badge { right: 0; bottom: -14px; padding: 8px 13px; font-size: 0.75rem; }
}
