/* Nagłówek */
.bar {
  width: 100%;
  max-width: var(--wide);
  margin-inline: auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}
.mark {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  font-size: 1.15rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.bar nav { display: flex; gap: 1.25rem; font-size: .95rem; }
.bar nav a { text-decoration: none; color: var(--muted); }
.bar nav a:hover { color: var(--ink); }
.bar nav a.on { color: var(--accent); }

/* Treść */
main {
  flex: 1;
  width: 100%;
  max-width: var(--wide);
  margin-inline: auto;
  padding: 3.5rem 1.5rem;
}

.lead { max-width: 36rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .75rem;
  color: var(--accent);
  font-family: system-ui, sans-serif;
}
.lead h1 {
  margin: .75rem 0 1.25rem;
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  line-height: 1.12;
  font-weight: 400;
}
.sub { color: var(--muted); }

.cta {
  display: inline-block;
  margin-top: 2rem;
  padding: .65rem 1.5rem;
  border: 1px solid var(--accent);
  border-radius: 2px;
  color: var(--accent);
  text-decoration: none;
  font-family: system-ui, sans-serif;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cta:hover { background: var(--accent); color: var(--paper); }

/* Pasek z ikonami */
.strip {
  margin-top: 4.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}
.strip img { width: 44px; height: 44px; margin-bottom: .9rem; }
.strip figcaption { color: var(--muted); font-size: .95rem; }

/* Podstrony */
.text { max-width: 34rem; }
.text h1 { font-size: 2.2rem; font-weight: 400; margin-bottom: 1.5rem; }
.text p { color: var(--muted); }
.text a { color: var(--accent); }

.price-list { border-top: 1px solid var(--line); }
.price-list li {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
}
.price-list li b { margin-left: auto; font-weight: 400; color: var(--accent); }
.note { margin-top: 1.25rem; font-size: .9rem; }

footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
  font-family: system-ui, sans-serif;
}
