/* Plik generowany przez build.py: kit WebKit z tokenami Kalivo + warstwa kalivo.css.
   Nie edytuj tutaj — zmiany w szablony/kalivo.css albo w TOKENY w build.py. */

/* ============================================================
   WebKit — kit.css
   Baza CSS wielokrotnego użytku dla stron klientów.
   KAŻDY projekt zaczyna od zmiany tokenów w :root — nic więcej.
   Mobile-first. Breakpointy: 640px, 1024px.
   ============================================================ */

:root {
  /* ---- TOKENY PROJEKTU — zmieniaj TYLKO to ---- */
  --c-dark: #1a1712;      /* ciemne sekcje / nagłówek */
  --c-dark-2: #26221b;    /* karty na ciemnym */
  --c-dark-line: #3a342a; /* obramowania na ciemnym */
  --c-bg: #f5f0e8;        /* jasne tło sekcji */
  --c-surface: #fffdf8;   /* karty na jasnym */
  --c-accent: #c2410c;    /* akcent / CTA */
  --c-accent-2: #a3360a;  /* akcent hover */
  --c-text: #1a1712;      /* tekst główny na jasnym */
  --c-muted: #5e574c;     /* tekst pomocniczy na jasnym */
  --c-muted-dark: #b5ab9b;/* tekst pomocniczy na ciemnym */
  --c-line: #e6dfd2;      /* obramowania na jasnym */

  --font-display: "Zodiak", serif;
  --font-body: "Supreme", sans-serif;
  /* Etykiety/ceny/dane — domyślnie TEN SAM font co body.
     Mono-etykiety (uppercase + szeroki letter-spacing) wyglądają na
     wygenerowane przez AI — używaj mono tylko na wyraźne życzenie klienta. */
  --font-mono: "Supreme", sans-serif;

  --container: 76rem;
  --radius: 0.75rem;
  /* ---------------------------------------------- */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 2px; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 640px) { .container { padding-inline: 2rem; } }
.hidden { display: none !important; }

/* ---------- Typografia ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: 1.15rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-accent-2);
  display: block;
  margin-bottom: 0.75rem;
}
.on-dark .eyebrow { color: var(--c-accent); }
.lead { font-size: 1.1rem; color: var(--c-muted); max-width: 38rem; }
.on-dark .lead { color: var(--c-muted-dark); }
.mono { font-family: var(--font-mono); font-size: 0.85rem; }

/* ---------- Przyciski ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  min-height: 44px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.btn-primary { background: var(--c-accent); color: var(--c-dark); }
.btn-primary:hover { background: var(--c-accent-2); }
.btn-ghost { border-color: var(--c-line); color: var(--c-text); background: transparent; }
.btn-ghost:hover { border-color: var(--c-text); }
.on-dark .btn-ghost { border-color: var(--c-dark-line); color: #fff; }
.on-dark .btn-ghost:hover { border-color: var(--c-accent); color: var(--c-accent); }
.btn-whatsapp { background: #118440; color: #fff; }   /* 4.77:1 z bialym; marka #1fa855 dawala 3.09:1 */
.btn-whatsapp:hover { background: #0f7a3c; }            /* 5.43:1 */

/* ---------- Nagłówek strony ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--c-dark); color: #fff;
  border-bottom: 1px solid var(--c-dark-line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.25rem; }
.logo { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; font-family: var(--font-display); }
.logo-mark { background: var(--c-accent); color: var(--c-dark); font-weight: 700; font-size: 1rem; padding: 0.3rem 0.45rem; border-radius: 2px; }
.logo-text { font-weight: 700; font-size: 0.95rem; letter-spacing: 0.16em; text-transform: uppercase; }
.main-nav ul { display: none; list-style: none; gap: 1.75rem; align-items: center; }
.main-nav a { text-decoration: none; font-size: 0.95rem; font-weight: 500; color: var(--c-muted-dark); transition: color 0.15s; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: #fff; }
.main-nav a[aria-current="page"] { border-bottom: 2px solid var(--c-accent); padding-bottom: 2px; }
.header-cta { display: none; }
.nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px; background: transparent; border: none; }
.nav-toggle span { display: block; height: 2px; width: 100%; background: #fff; transition: transform 0.2s, opacity 0.2s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-open .main-nav ul {
  display: flex; flex-direction: column; align-items: flex-start;
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--c-dark); border-bottom: 1px solid var(--c-dark-line);
  padding: 1.25rem; gap: 1.1rem;
}
.nav-open .main-nav a { font-size: 1.1rem; display: block; padding: 0.25rem 0; }
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .main-nav ul { display: flex; }
  .header-cta { display: inline-flex; padding: 0.6rem 1.2rem; }
}

/* ---------- Sekcje ---------- */
.section { padding-block: 4rem; }
@media (min-width: 1024px) { .section { padding-block: 6rem; } }
.section-dark { background: var(--c-dark); color: #fff; }
.section-white { background: var(--c-surface); }
.section-head { margin-bottom: 2.5rem; max-width: 44rem; }
.section-head p { margin-top: 0.75rem; }

/* Separator-miarka (opcjonalny motyw) */
.tape {
  height: 14px;
  background-image:
    repeating-linear-gradient(90deg, var(--c-accent) 0, var(--c-accent) 2px, transparent 2px, transparent 24px),
    repeating-linear-gradient(90deg, color-mix(in srgb, var(--c-accent) 55%, transparent) 0, color-mix(in srgb, var(--c-accent) 55%, transparent) 1px, transparent 1px, transparent 6px);
  background-size: auto 100%, auto 55%;
  background-repeat: repeat-x;
  opacity: 0.8;
}

/* ---------- HERO: split (tekst + media) ---------- */
.hero { background: var(--c-dark); color: #fff; padding-block: 3.5rem 4rem; }
.hero-grid { display: grid; gap: 2.5rem; }
.hero h1 { margin: 1rem 0 1.25rem; }
.hero h1 em { font-style: normal; color: var(--c-accent); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 2rem; list-style: none; }
.hero-trust li { font-size: 0.9rem; font-weight: 500; color: var(--c-muted-dark); display: flex; align-items: center; gap: 0.45rem; }
.hero-trust li::before { content: "✓"; color: var(--c-accent); font-weight: 600; }
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; }
  .hero { padding-block: 5rem; }
}

/* ---------- HERO: pełnoekranowy ze zdjęciem ---------- */
.hero-full {
  position: relative; display: flex; align-items: flex-end;
  min-height: 82vh; color: #fff;
  background: linear-gradient(180deg, rgba(10,12,16,0.35) 0%, rgba(10,12,16,0.8) 100%), var(--c-dark);
  background-size: cover; background-position: center;
  /* W projekcie: background-image: linear-gradient(...), url("images/hero.webp"); */
}
.hero-full .container { padding-block: 4rem; }
.hero-full h1 { max-width: 16ch; }

/* ---------- Suwak before/after ---------- */
.ba-slider {
  position: relative; aspect-ratio: 4 / 3;
  border-radius: var(--radius); overflow: hidden;
  user-select: none; touch-action: pan-y;
  border: 1px solid var(--c-dark-line);
}
.ba-pane { position: absolute; inset: 0; }
.ba-pane img { width: 100%; height: 100%; object-fit: cover; }
.ba-after { clip-path: inset(0 0 0 var(--ba-pos, 50%)); }
.ba-label {
  position: absolute; top: 0.75rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem; border-radius: 2px;
  background: rgba(10, 12, 16, 0.8); color: #fff;
}
.ba-before .ba-label { left: 0.75rem; }
.ba-after .ba-label { right: 0.75rem; background: var(--c-accent); color: var(--c-dark); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--ba-pos, 50%); width: 0; border-left: 2px solid var(--c-accent); z-index: 3; }
.ba-handle::after {
  content: "◂ ▸"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: var(--c-accent); color: var(--c-dark);
  font-size: 0.7rem; font-weight: 700; padding: 0.5rem 0.55rem; border-radius: 999px; white-space: nowrap;
}
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 4; margin: 0; }

/* ---------- Placeholdery zdjęć (do czasu prawdziwych) ---------- */
.ph { width: 100%; height: 100%; display: flex; align-items: flex-end; padding: 1rem; font-family: var(--font-mono); font-size: 0.72rem; color: rgba(255,255,255,0.75); }
.ph-before { background: repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 2px, transparent 2px, transparent 12px), linear-gradient(160deg, #4a4f57 0%, #33383f 60%, #24282e 100%); }
.ph-after { background: linear-gradient(160deg, #efe9dd 0%, #d8cdb8 55%, #b7a482 100%); color: rgba(10,12,16,0.65); }
.ph-photo {
  aspect-ratio: 4 / 3; border-radius: var(--radius);
  background: repeating-linear-gradient(45deg, rgba(10,12,16,0.06) 0, rgba(10,12,16,0.06) 2px, transparent 2px, transparent 12px), linear-gradient(160deg, #d9d6cd 0%, #c2beb2 100%);
  color: var(--c-muted); display: flex; align-items: flex-end; padding: 1rem;
  font-family: var(--font-mono); font-size: 0.72rem;
}

/* ---------- Pasek zaufania / statystyki ---------- */
.trust-bar { background: var(--c-dark-2); border-block: 1px solid var(--c-dark-line); color: #fff; }
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; padding-block: 1.75rem; }
.trust-item strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: var(--c-accent); }
.trust-item span { font-size: 0.85rem; color: var(--c-muted-dark); }
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Siatki i karty ---------- */
.grid-2 { display: grid; gap: 1.25rem; }
.grid-3 { display: grid; gap: 1.25rem; }
.grid-4 { display: grid; gap: 1.25rem; }
@media (min-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.card {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.card h3 { margin-top: 0.25rem; }
.card p { color: var(--c-muted); font-size: 0.95rem; flex-grow: 1; }
.card .price { font-size: 0.9rem; font-weight: 600; color: var(--c-accent-2); border-top: 1px solid var(--c-line); padding-top: 0.75rem; }
.card-icon { font-size: 1.5rem; line-height: 1; }

/* ---------- Cennik / tabela ---------- */
.price-table { width: 100%; border-collapse: collapse; background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; }
.price-table th, .price-table td { text-align: left; padding: 0.9rem 1.25rem; border-bottom: 1px solid var(--c-line); font-size: 0.95rem; }
.price-table th { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-muted); background: var(--c-bg); }
.price-table td:last-child { font-family: var(--font-mono); color: var(--c-accent-2); white-space: nowrap; }
.table-scroll { overflow-x: auto; }

/* ---------- Kalkulator wyceny ---------- */
.calc { background: var(--c-dark-2); border: 1px solid var(--c-dark-line); border-radius: var(--radius); padding: 1.75rem; display: grid; gap: 1.5rem; color: #fff; }
.calc label { display: block; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--c-muted-dark); margin-bottom: 0.5rem; }
.calc select, .calc input[type="number"] { width: 100%; padding: 0.8rem 1rem; background: var(--c-dark); color: #fff; border: 1px solid var(--c-dark-line); border-radius: var(--radius); }
.calc-result { border-top: 1px dashed var(--c-dark-line); padding-top: 1.25rem; }
.calc-result .amount { font-family: var(--font-display); font-size: clamp(1.6rem, 5vw, 2.4rem); font-weight: 600; color: var(--c-accent); display: block; }
.calc-result small { color: var(--c-muted-dark); font-size: 0.8rem; }
@media (min-width: 1024px) {
  .calc { grid-template-columns: 1fr 1fr; align-items: end; padding: 2.5rem; }
  .calc-result { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
}

/* ---------- Kroki procesu ---------- */
.steps { list-style: none; counter-reset: step; display: grid; gap: 1.5rem; }
.steps li { counter-increment: step; padding-left: 3.25rem; position: relative; }
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 0.1rem;
  font-family: var(--font-mono); font-size: 0.9rem; color: var(--c-accent-2);
  border: 1px solid var(--c-line); border-radius: 2px; padding: 0.3rem 0.45rem; background: var(--c-surface);
}
.steps h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.steps p { color: var(--c-muted); font-size: 0.95rem; }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Opinie ---------- */
.review { border-left: 3px solid var(--c-accent); }
.review blockquote { font-size: 1rem; }
.review footer { margin-top: 0.75rem; font-family: var(--font-mono); font-size: 0.78rem; color: var(--c-muted); }
.stars { color: var(--c-accent-2); letter-spacing: 0.1em; font-size: 0.85rem; }

/* ---------- Karuzela (opinie/loga) ---------- */
.carousel { position: relative; overflow: hidden; }
.carousel-track { display: flex; transition: transform 0.4s ease; }
.carousel-slide { flex: 0 0 100%; padding-inline: 0.25rem; }
.carousel-nav { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.25rem; }
.carousel-nav button { width: 44px; height: 44px; border: 1px solid var(--c-line); background: var(--c-surface); border-radius: var(--radius); font-size: 1.1rem; }
.carousel-nav button:hover { border-color: var(--c-accent); color: var(--c-accent-2); }
@media (min-width: 640px) { .carousel-slide { flex-basis: 50%; } }
@media (min-width: 1024px) { .carousel-slide { flex-basis: 33.333%; } }

/* ---------- Galeria + lightbox ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.gallery a { display: block; border-radius: var(--radius); overflow: hidden; }
.gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.25s; }
.gallery a:hover img { transform: scale(1.04); }
@media (min-width: 640px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10, 12, 16, 0.92);
  display: none; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 1rem; right: 1rem; width: 44px; height: 44px; background: transparent; border: 1px solid rgba(255,255,255,0.3); color: #fff; border-radius: var(--radius); font-size: 1.2rem; }

/* ---------- Chipy / obszary ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; list-style: none; }
.chips li { font-family: var(--font-mono); font-size: 0.82rem; padding: 0.45rem 0.9rem; border: 1px solid var(--c-line); border-radius: 999px; background: var(--c-surface); color: var(--c-muted); }
.on-dark .chips li { background: var(--c-dark-2); border-color: var(--c-dark-line); color: var(--c-muted-dark); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.75rem; max-width: 44rem; }
.faq details { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius); }
.faq summary { cursor: pointer; padding: 1rem 1.25rem; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 44px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-mono); color: var(--c-accent-2); font-size: 1.1rem; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 1.25rem 1.25rem; color: var(--c-muted); font-size: 0.95rem; }

/* ---------- Formularze ---------- */
.form-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}
.field label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.4rem; }
.field label .req { color: var(--c-accent-2); }
.field input, .field select, .field textarea { width: 100%; padding: 0.8rem 1rem; border: 1px solid var(--c-line); border-radius: var(--radius); background: var(--c-surface); color: var(--c-text); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--c-accent); outline-offset: 0; border-color: var(--c-accent); }
.field-hint { font-size: 0.8rem; color: var(--c-muted); margin-top: 0.3rem; }
.checkbox-field { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.85rem; color: var(--c-muted); }
.checkbox-field input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; }

/* ---------- Pasek CTA ---------- */
.cta-band { background: var(--c-accent); color: var(--c-dark); }
.cta-band-inner { display: flex; flex-direction: column; gap: 1.25rem; padding-block: 3rem; align-items: flex-start; }
.cta-band h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
.cta-band .btn { background: var(--c-dark); color: #fff; }
.cta-band .btn:hover { background: #000; }
@media (min-width: 1024px) { .cta-band-inner { flex-direction: row; justify-content: space-between; align-items: center; } }

/* ---------- Stopka ---------- */
.site-footer { background: var(--c-dark); color: var(--c-muted-dark); font-size: 0.9rem; }
.footer-grid { display: grid; gap: 2rem; padding-block: 3.5rem 2rem; }
.footer-grid h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.9rem; }
.footer-grid ul { list-style: none; display: grid; gap: 0.5rem; }
.footer-grid a { color: var(--c-muted-dark); text-decoration: none; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--c-dark-line); padding-block: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; justify-content: space-between; font-family: var(--font-mono); font-size: 0.75rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #118440; color: #fff;   /* ta sama zielen co .btn-whatsapp (4.77:1) */
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 6px 18px rgba(10, 12, 16, 0.35);
  transition: transform 0.15s;
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Baner cookie (tylko gdy jest GA/pixel!) ---------- */
.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 90;
  background: var(--c-dark); color: #fff;
  border: 1px solid var(--c-dark-line); border-radius: var(--radius);
  padding: 1.25rem; display: none; gap: 1rem; flex-wrap: wrap; align-items: center;
  max-width: 40rem; margin-inline: auto;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: 0.85rem; color: var(--c-muted-dark); flex: 1 1 100%; }
.cookie-banner .btn { padding: 0.6rem 1.2rem; min-height: 40px; }

/* ---------- Podstrona: hero ---------- */
.page-hero { background: var(--c-dark); color: #fff; padding-block: 3.5rem; }
.page-hero p { margin-top: 0.75rem; }
/* Ciemne tło = kolory jak w .on-dark. Bez tego eyebrow (--c-accent-2)
   i lead (--c-muted) mają kontrast ~2.7:1 i oblewają audyt WCAG. */
.page-hero .eyebrow, .section-dark .eyebrow, .cta-band .eyebrow { color: var(--c-accent); }
.page-hero .lead, .section-dark .lead { color: var(--c-muted-dark); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Utilsy ---------- */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.center { text-align: center; }


/* ============================================================
   Kalivo — warstwa na kicie WebKit
   Kit daje bazę (reset, typografia, przyciski, siatki, FAQ,
   formularze). Tu jest tylko to, czego kit nie ma: demo z podglądem,
   trzy skórki podglądu, bento i przełącznik języków.
   Kierunek A „Studio": Zodiak + Supreme, papier, atrament, cynober.
   ============================================================ */

/* ---------- Czcionki: marka ---------- */
@font-face { font-family: "Zodiak"; src: url("/assets/fonts/Zodiak-Variable.woff2") format("woff2"); font-weight: 100 900; font-style: normal; font-display: swap; }
@font-face { font-family: "Zodiak"; src: url("/assets/fonts/Zodiak-VariableItalic.woff2") format("woff2"); font-weight: 100 900; font-style: italic; font-display: swap; }
@font-face { font-family: "Supreme"; src: url("/assets/fonts/Supreme-Variable.woff2") format("woff2"); font-weight: 100 900; font-style: normal; font-display: swap; }

/* ---------- Czcionki: skórki podglądu ----------
   Przeglądarka pobiera je dopiero, gdy coś ich używa — czyli
   od kroku z wyborem wyglądu. Stronę główną nic nie kosztują. */
@font-face { font-family: "Fraunces"; src: url("/assets/fonts/Fraunces-Variable.woff2") format("woff2"); font-weight: 100 900; font-display: swap; }
@font-face { font-family: "General Sans"; src: url("/assets/fonts/GeneralSans-Variable.woff2") format("woff2"); font-weight: 100 900; font-display: swap; }
@font-face { font-family: "Space Grotesk"; src: url("/assets/fonts/space-grotesk-v22-latin_latin-ext-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Space Grotesk"; src: url("/assets/fonts/space-grotesk-v22-latin_latin-ext-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Cabinet Grotesk"; src: url("/assets/fonts/CabinetGrotesk-Variable.woff2") format("woff2"); font-weight: 100 900; font-display: swap; }

/* ---------- Drobne poprawki kitu pod markę ---------- */
body { font-size: 1.0625rem; }
h1, h2, h3 { font-weight: 500; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); line-height: 1.03; }
h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); line-height: 1.06; }
/* Etykiety czcionką tekstową, bez wersalików — zgodnie ze standardem */
.eyebrow { text-transform: none; letter-spacing: 0; font-size: 0.95rem; color: var(--c-accent-2); }
.btn { border-radius: 999px; padding: 0.85rem 1.5rem; font-weight: 650; font-size: 1rem; }
/* Kit daje ciemny tekst na akcencie — na cynobrze to 3:1. Biały ma 5.18:1. */
.btn-primary { background: var(--c-accent); color: #fff; }
.btn-primary:hover { background: var(--c-accent-2); }
.btn-ghost { border-color: var(--c-line); color: var(--c-text); background: transparent; }
.btn-ghost:hover { border-color: var(--c-text); }
.btn-sm { min-height: 44px; padding: 0.55rem 1.1rem; font-size: 0.95rem; }
.skip { position: absolute; left: -9999px; top: 0; background: var(--c-dark); color: #fff; padding: 0.75rem 1rem; z-index: 100; border-radius: 0 0 0.5rem 0; }
.skip:focus { left: 0; }

/* ---------- Nagłówek na papierze ---------- */
.site-header { background: color-mix(in srgb, var(--c-bg) 92%, transparent); color: var(--c-text); border-bottom: 1px solid var(--c-line); backdrop-filter: blur(10px); }
.header-inner { min-height: 4rem; }
.logo { gap: 0.55rem; color: var(--c-text); }
.logo svg { width: 28px; height: 28px; flex: none; }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.45rem; letter-spacing: -0.01em; text-transform: none; }
.header-tools { display: flex; align-items: center; gap: 0.5rem; }
.header-tools .btn { display: none; }
@media (min-width: 640px) { .header-tools .btn { display: inline-flex; } }

/* Przełącznik języków — <details>, działa bez JS */
.lang { position: relative; }
.lang summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.4rem; min-height: 44px; padding: 0 0.85rem; border: 1px solid var(--c-line); border-radius: 999px; font-weight: 600; font-size: 0.95rem; background: var(--c-surface); }
.lang summary::-webkit-details-marker { display: none; }
.lang summary svg { width: 16px; height: 16px; }
.lang ul { position: absolute; right: 0; top: calc(100% + 6px); list-style: none; background: var(--c-surface); border: 1px solid var(--c-line); border-radius: 14px; padding: 0.4rem; min-width: 12rem; box-shadow: 0 18px 40px -18px rgba(26, 23, 18, 0.35); z-index: 60; }
.lang a { display: flex; justify-content: space-between; gap: 1rem; padding: 0.6rem 0.75rem; border-radius: 9px; text-decoration: none; font-size: 0.95rem; min-height: 44px; align-items: center; }
.lang a:hover { background: var(--c-bg); }
.lang a[aria-current="true"] { font-weight: 700; }
.lang a span { color: var(--c-muted); font-size: 0.85rem; }

/* ---------- Hero z demem ---------- */
.hero { background: var(--c-bg); color: var(--c-text); padding-block: 2.5rem 3.5rem; }
.hero-grid { gap: 2rem; }
.hero h1 { margin: 0.25rem 0 1.25rem; }
.hero h1 em { font-style: italic; color: var(--c-accent); }
.hero .lead { color: var(--c-muted); font-size: 1.15rem; }
.facts { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.75rem; }
.facts li { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.45rem 0.85rem; border: 1px solid var(--c-line); border-radius: 999px; background: var(--c-surface); font-size: 0.92rem; font-weight: 600; }
.facts li svg { width: 16px; height: 16px; color: var(--c-accent); flex: none; }
@media (min-width: 1024px) {
  .hero { padding-block: 4rem 5rem; }
  .hero-grid { grid-template-columns: 1fr 1.08fr; gap: 3.5rem; align-items: start; }
  .hero-copy { position: sticky; top: 6.5rem; }
}

/* ---------- Karta demo ---------- */
.demo { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: 22px; box-shadow: 0 30px 60px -40px rgba(26, 23, 18, 0.45); overflow: hidden; }
.demo-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 1.25rem; border-bottom: 1px solid var(--c-line); }
.demo-title { font-weight: 700; font-size: 0.98rem; }
.demo-step { font-size: 0.88rem; color: var(--c-muted); font-weight: 600; white-space: nowrap; }
.demo-bar { height: 3px; background: var(--c-line); }
.demo-bar i { display: block; height: 100%; width: 25%; background: var(--c-accent); transition: width 0.35s ease; }
.demo-body { padding: 1.5rem 1.25rem 1.5rem; }
@media (min-width: 640px) { .demo-body { padding: 1.75rem 1.75rem 1.75rem; } .demo-head { padding: 1rem 1.75rem; } }
.q { display: none; border: 0; padding: 0; min-width: 0; }
legend.q-label { padding: 0; }
.q.on { display: block; animation: wejdz 0.35s ease; }
@keyframes wejdz { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.q-label { display: block; font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.75rem); line-height: 1.15; margin-bottom: 1rem; font-weight: 500; }
.q input[type="text"] { width: 100%; min-height: 54px; padding: 0 1.1rem; border: 1.5px solid var(--c-line); border-radius: 14px; background: #fff; font-size: 1.1rem; color: var(--c-text); }
.q input[type="text"]:focus { outline: none; border-color: var(--c-accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--c-accent) 18%, transparent); }
.q-hint { font-size: 0.9rem; color: var(--c-muted); margin-top: 0.6rem; }
.q-error { font-size: 0.92rem; color: var(--c-accent-2); margin-top: 0.6rem; font-weight: 600; }
/* Puste pole na blad nie zajmuje miejsca — inaczej dziura nad przyciskiem i nad podgladem */
.q-error:empty { display: none; }
.q-actions { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; margin-top: 1.5rem; }
.q-actions .btn-back { background: none; border: 0; color: var(--c-muted); font-weight: 600; min-height: 44px; padding: 0 0.25rem; text-decoration: underline; text-underline-offset: 3px; }
.q-actions[hidden], .q-actions .btn-back[hidden] { display: none; }
.q-actions .btn:only-child, .q-actions .btn-back[hidden] + .btn { margin-left: auto; }

/* Opcje: jak ludzie u ciebie kupują */
.opts { display: grid; gap: 0.6rem; }
@media (min-width: 640px) { .opts { grid-template-columns: 1fr 1fr; } }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt label { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.9rem 1rem; border: 1.5px solid var(--c-line); border-radius: 14px; cursor: pointer; min-height: 64px; background: #fff; transition: border-color 0.15s, background 0.15s; }
.opt label svg { width: 22px; height: 22px; flex: none; margin-top: 2px; color: var(--c-accent); }
.opt b { display: block; font-size: 0.98rem; line-height: 1.3; }
.opt small { display: block; font-size: 0.86rem; color: var(--c-muted); line-height: 1.35; margin-top: 0.15rem; }
.opt input:checked + label { border-color: var(--c-accent); background: color-mix(in srgb, var(--c-accent) 6%, #fff); }
.opt input:focus-visible + label { outline: 3px solid var(--c-accent); outline-offset: 2px; }
.shop-note { margin-top: 0.85rem; padding: 0.85rem 1rem; border-radius: 12px; background: var(--c-bg); font-size: 0.92rem; color: var(--c-muted); }

/* Skórki do wyboru */
.skins { display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .skins { grid-template-columns: repeat(3, 1fr); } }
.skin { position: relative; }
.skin input { position: absolute; opacity: 0; pointer-events: none; }
.skin label { display: block; border: 1.5px solid var(--c-line); border-radius: 16px; overflow: hidden; cursor: pointer; background: #fff; transition: border-color 0.15s, transform 0.15s; }
.skin input:checked + label { border-color: var(--c-accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--c-accent) 22%, transparent); }
.skin input:focus-visible + label { outline: 3px solid var(--c-accent); outline-offset: 2px; }
.skin-swatch { height: 92px; padding: 0.8rem; display: flex; flex-direction: column; justify-content: flex-end; gap: 0.2rem; }
.skin-swatch b { font-size: 1.35rem; line-height: 1; }
.skin-swatch i { font-style: normal; font-size: 0.8rem; opacity: 0.8; }
.skin-name { display: block; padding: 0.6rem 0.8rem 0.7rem; font-weight: 650; font-size: 0.92rem; }
.sw-warm { background: #fbf6ef; color: #2b211a; }
.sw-warm b { font-family: "Fraunces", serif; font-weight: 600; }
.sw-bold { background: #121416; color: #eef0f2; }
.sw-bold b { font-family: "Space Grotesk", sans-serif; font-weight: 700; }
.sw-calm { background: #eef3fa; color: #1d2433; }
.sw-calm b { font-family: "Cabinet Grotesk", sans-serif; font-weight: 800; }

/* ---------- Podgląd ---------- */
.preview { margin-top: 1.5rem; }
.preview.full { margin-top: 0; animation: wejdz 0.4s ease; }
/* Kroki 1-4: miniatura na zywo — nazwa firmy pojawia sie od pierwszej litery */
.preview.live .pv-top { margin-bottom: 0.6rem; }
.preview.live .pv-label { font-size: 0.88rem; font-weight: 600; color: var(--c-muted); }
.preview.live .pv-tabs, .preview.live .pv-final { display: none; }
.preview.live .frame { position: relative; max-height: 15.5rem; overflow: hidden; }
.preview.live .frame::after { content: ""; position: absolute; inset: auto 0 0 0; height: 5rem; background: linear-gradient(to bottom, transparent, var(--c-surface)); pointer-events: none; }
.preview.live .pv { max-height: none; overflow: hidden; }
.pv-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.pv-label { font-weight: 700; font-size: 0.98rem; }
.pv-tabs { display: inline-flex; gap: 0.35rem; padding: 0.3rem; background: var(--c-bg); border-radius: 999px; }
.pv-tabs button { min-height: 36px; padding: 0 0.85rem; border-radius: 999px; border: 0; background: transparent; font-weight: 600; font-size: 0.86rem; color: var(--c-muted); }
.pv-tabs button[aria-pressed="true"] { background: #fff; color: var(--c-text); box-shadow: 0 2px 8px -4px rgba(26, 23, 18, 0.4); }
.frame { border: 1px solid var(--c-line); border-radius: 14px; overflow: hidden; background: #fff; }
.frame-bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.55rem 0.75rem; background: #efeae1; border-bottom: 1px solid var(--c-line); }
.frame-bar .dots { display: flex; gap: 5px; }
.frame-bar .dots i { width: 9px; height: 9px; border-radius: 50%; background: #d7cfc1; }
.frame-url { flex: 1; min-width: 0; background: #fff; border-radius: 999px; padding: 0.25rem 0.75rem; font-size: 0.82rem; color: var(--c-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pv-note { font-size: 0.92rem; color: var(--c-muted); margin-top: 1rem; }
.pv-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.1rem; }

/* Mini-strona w środku ramki */
.pv { --s-bg: #fff; --s-text: #111; --s-muted: #555; --s-acc: #000; --s-on-acc: #fff; --s-tile: #f3f3f3; --s-display: serif; --s-body: sans-serif;
  background: var(--s-bg); color: var(--s-text); font-family: var(--s-body); font-size: 0.9rem; line-height: 1.5; max-height: 34rem; overflow: auto; }
.pv-nav { display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; padding: 0.85rem 1rem; border-bottom: 1px solid color-mix(in srgb, var(--s-text) 10%, transparent); }
.pv-brand { font-family: var(--s-display); font-weight: 700; font-size: 1.05rem; line-height: 1.1; overflow-wrap: anywhere; }
.pv-links { display: none; gap: 0.9rem; font-size: 0.8rem; color: var(--s-muted); }
@media (min-width: 640px) { .pv-links { display: flex; } }
.pv-hero { padding: 1.6rem 1rem 1.4rem; }
.pv-hero .pv-h { font-family: var(--s-display); font-size: clamp(1.35rem, 3.4vw, 1.9rem); line-height: 1.1; font-weight: 600; margin-bottom: 0.6rem; overflow-wrap: anywhere; }
.pv-hero p { color: var(--s-muted); font-size: 0.92rem; max-width: 34ch; }
.pv-btn { display: inline-flex; align-items: center; min-height: 36px; margin-top: 1rem; padding: 0 1rem; border-radius: 999px; background: var(--s-acc); color: var(--s-on-acc); font-weight: 650; font-size: 0.85rem; }
.pv-sec { padding: 1.1rem 1rem 1.3rem; border-top: 1px solid color-mix(in srgb, var(--s-text) 8%, transparent); }
.pv-sec .pv-sh { font-family: var(--s-display); font-size: 1.02rem; font-weight: 600; margin-bottom: 0.7rem; }
.pv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.45rem; }
.pv-grid div { aspect-ratio: 1; border-radius: 8px; background: var(--s-tile); display: grid; place-items: end start; padding: 0.4rem; font-size: 0.7rem; color: var(--s-muted); }
.pv-list { list-style: none; display: grid; gap: 0.45rem; }
.pv-list li { display: flex; justify-content: space-between; gap: 0.75rem; padding: 0.6rem 0.75rem; border-radius: 8px; background: var(--s-tile); font-size: 0.85rem; }
.pv-list li span { color: var(--s-muted); white-space: nowrap; }
.pv-days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.35rem; margin-top: 0.6rem; }
.pv-days span { text-align: center; padding: 0.45rem 0; border-radius: 8px; background: var(--s-tile); font-size: 0.75rem; }
.pv-days span.on { background: var(--s-acc); color: var(--s-on-acc); font-weight: 650; }
.pv-form { display: grid; gap: 0.4rem; }
.pv-form span { display: block; padding: 0.55rem 0.7rem; border-radius: 8px; border: 1px solid color-mix(in srgb, var(--s-text) 14%, transparent); font-size: 0.8rem; color: var(--s-muted); background: var(--s-bg); }
.pv-cards { display: grid; gap: 0.45rem; }
@media (min-width: 640px) { .pv-cards { grid-template-columns: repeat(3, 1fr); } }
.pv-cards div { padding: 0.75rem; border-radius: 10px; background: var(--s-tile); font-size: 0.8rem; }
.pv-cards b { display: block; font-family: var(--s-display); font-size: 0.95rem; margin-bottom: 0.2rem; }
.pv-quote { padding: 0.8rem 0.9rem; border-left: 3px solid var(--s-acc); background: var(--s-tile); border-radius: 0 8px 8px 0; font-size: 0.85rem; color: var(--s-muted); font-style: italic; }
.pv-contact { display: grid; gap: 0.3rem; font-size: 0.85rem; color: var(--s-muted); }
.pv-foot { padding: 0.8rem 1rem; font-size: 0.75rem; color: var(--s-muted); border-top: 1px solid color-mix(in srgb, var(--s-text) 8%, transparent); }

.pv.skin-warm { --s-bg: #fbf6ef; --s-text: #2b211a; --s-muted: #6b5a4c; --s-acc: #a84a22; --s-on-acc: #fff; --s-tile: #f1e6d8; --s-display: "Fraunces", serif; --s-body: "General Sans", sans-serif; }
.pv.skin-bold { --s-bg: #121416; --s-text: #eef0f2; --s-muted: #a3a9b0; --s-acc: #f2b134; --s-on-acc: #121416; --s-tile: #1d2125; --s-display: "Space Grotesk", sans-serif; --s-body: "Supreme", sans-serif; }
.pv.skin-calm { --s-bg: #ffffff; --s-text: #1d2433; --s-muted: #5a6474; --s-acc: #1f5fd6; --s-on-acc: #fff; --s-tile: #eef3fa; --s-display: "Cabinet Grotesk", sans-serif; --s-body: "General Sans", sans-serif; }
.pv.skin-calm .pv-hero .pv-h, .pv.skin-calm .pv-brand { font-weight: 800; letter-spacing: -0.01em; }
.pv.skin-bold .pv-hero .pv-h { font-weight: 700; letter-spacing: -0.02em; }

/* ---------- Pasek trzech kroków ---------- */
.how { display: grid; gap: 1rem; }
@media (min-width: 1024px) { .how { grid-template-columns: repeat(3, 1fr); } }
.how li { list-style: none; display: flex; gap: 1rem; padding: 1.35rem; background: var(--c-surface); border: 1px solid var(--c-line); border-radius: 18px; }
.how .num { font-family: var(--font-display); font-style: italic; font-size: 2.2rem; line-height: 0.9; color: var(--c-accent); flex: none; width: 2.2rem; }
.how h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.how p { color: var(--c-muted); font-size: 0.98rem; }

/* ---------- Bento ---------- */
.bento { display: grid; gap: 1rem; }
@media (min-width: 640px) { .bento { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .bento { grid-template-columns: repeat(6, 1fr); }
  .bento > :nth-child(1) { grid-column: span 3; grid-row: span 2; }
  .bento > :nth-child(2), .bento > :nth-child(3) { grid-column: span 3; }
  .bento > :nth-child(4), .bento > :nth-child(5) { grid-column: span 3; }
}
.tile { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: 20px; padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.tile h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); line-height: 1.12; }
.tile p { color: var(--c-muted); }
.tile-big { background: var(--c-dark); color: #fff; border-color: var(--c-dark); justify-content: space-between; min-height: 18rem; }
.tile-big h3 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
.tile-big p { color: var(--c-muted-dark); }
.tile-big .kod { font-family: var(--font-body); font-size: 0.9rem; line-height: 1.7; color: var(--c-muted-dark); border-top: 1px solid var(--c-dark-line); padding-top: 1rem; margin-top: 1rem; }
.tile-big .kod b { color: #f0764a; font-weight: 600; }
.tile-accent { background: color-mix(in srgb, var(--c-accent) 8%, var(--c-surface)); border-color: color-mix(in srgb, var(--c-accent) 25%, var(--c-line)); }

/* ---------- Porównanie ---------- */
.compare { display: grid; gap: 1rem; }
@media (min-width: 1024px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare > div { border-radius: 20px; padding: 1.6rem; border: 1px solid var(--c-line); background: var(--c-surface); }
.compare .ours { background: var(--c-dark); color: #fff; border-color: var(--c-dark); }
.compare h3 { font-size: 1.35rem; margin-bottom: 1rem; }
.compare ul { list-style: none; display: grid; gap: 0.75rem; }
.compare li { display: flex; gap: 0.7rem; align-items: flex-start; }
.compare li svg { width: 20px; height: 20px; flex: none; margin-top: 3px; }
.compare .theirs li { color: var(--c-muted); }
.compare .theirs svg { color: var(--c-muted); }
.compare .ours svg { color: #f0764a; }
.compare .ours li { color: #f5f0e8; }

/* ---------- Lista oczekujących ---------- */
.waitlist { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .waitlist { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; } }
.waitlist-card { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: 22px; padding: 1.5rem; }
@media (min-width: 640px) { .waitlist-card { padding: 2rem; } }
.waitlist-card .field input { border-radius: 14px; min-height: 54px; font-size: 1.05rem; }
.waitlist-card .btn { width: 100%; margin-top: 0.5rem; min-height: 54px; }
.answers { display: none; margin-top: 1rem; padding: 0.85rem 1rem; border-radius: 12px; background: var(--c-bg); font-size: 0.9rem; color: var(--c-muted); }
.answers.on { display: block; }
.answers b { color: var(--c-text); }
.checkbox-field { font-size: 0.9rem; }
.checkbox-field a { color: var(--c-accent-2); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { max-width: none; }
@media (min-width: 1024px) { .faq { grid-template-columns: 1fr 1fr; align-items: start; } }
.faq details { border-radius: 16px; }
.faq summary { font-family: var(--font-body); font-weight: 650; font-size: 1.02rem; }
.faq summary::after { font-family: var(--font-body); color: var(--c-accent); font-weight: 600; }

/* ---------- Pasek CTA na atramencie ---------- */
.cta-band { background: var(--c-dark); color: #fff; }
.cta-band h2 { font-weight: 500; }
.cta-band h2 em { font-style: italic; color: #f0764a; }
.cta-band .btn { background: var(--c-accent); color: #fff; }
.cta-band .btn:hover { background: var(--c-accent-2); }

/* ---------- Stopka ---------- */
.site-footer { background: var(--c-bg); color: var(--c-muted); border-top: 1px solid var(--c-line); }
.footer-grid h4 { color: var(--c-text); font-family: var(--font-body); font-size: 0.95rem; letter-spacing: 0; text-transform: none; font-weight: 700; }
.footer-grid a { color: var(--c-muted); }
.footer-grid a:hover { color: var(--c-text); }
.footer-bottom { border-top: 1px solid var(--c-line); font-family: var(--font-body); font-size: 0.88rem; }
.footer-grid .footer-h { font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; color: var(--c-text); margin-bottom: 0.9rem; line-height: 1.3; }
.footer-brand p { margin-top: 0.75rem; max-width: 26rem; }
.footer-langs { display: flex; flex-wrap: wrap; gap: 0.4rem 0.9rem; list-style: none; }

/* ---------- Podstrony tekstowe ---------- */
.page-hero { background: var(--c-bg); color: var(--c-text); border-bottom: 1px solid var(--c-line); padding-block: 3rem 2.5rem; }
.page-hero .lead { color: var(--c-muted); }
.prose { max-width: 44rem; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); margin: 2.25rem 0 0.75rem; }
.prose p, .prose li { color: var(--c-text); }
.prose p + p { margin-top: 0.75rem; }
.prose ul { padding-left: 1.2rem; display: grid; gap: 0.35rem; margin-top: 0.5rem; }
.prose a { color: var(--c-accent-2); font-weight: 600; }
.prose .meta { color: var(--c-muted); font-size: 0.95rem; }
.done { max-width: 40rem; }
.done svg { width: 56px; height: 56px; color: var(--c-accent); margin-bottom: 1.25rem; }
.done .btn { margin-top: 1.75rem; }

:focus-visible { outline-color: var(--c-accent); }
/* Fokus przenoszony skryptem (naglowek kroku, etykieta podgladu) jest dla czytnika ekranu —
   element nie jest klikalny, wiec obramowanie z klawiatury tylko udaje przycisk. */
[tabindex="-1"]:focus { outline: none; }
