/* ==========================================================================
   Twój Doradca — Konrad Sobik
   System projektowy zgodny ze specyfikacją (sekcje 6-15)
   ========================================================================== */

:root {
  /* Kolory */
  --navy: #13263D;
  --navy-light: #234A68;
  --accent: #800080;
  --accent-hover: #5C005C;
  --accent-light: #F3E3F3;
  --sand: #D7B77A;
  --bg: #F7F6F2;
  --bg-white: #FFFFFF;
  --text: #17212B;
  --text-muted: #59636E;
  --border: #D9DEE2;
  --error: #A63D40;
  --success: #356859;

  /* Typografia */
  --font-head: 'Manrope', 'DM Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --h1-size: 38px;
  --h1-lh: 1.08;
  --h2-size: 31px;
  --h2-lh: 1.15;
  --h3-size: 24px;
  --h3-lh: 1.25;
  --h4-size: 20px;
  --lead-size: 18px;
  --lead-lh: 1.55;
  --text-size: 16px;
  --text-lh: 1.7;
  --text-muted-size: 14px;

  /* Odstępy (wielokrotności 4px) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-28: 112px;
  --sp-32: 128px;

  --section-pad: var(--sp-16);

  /* Zaokrąglenia */
  --radius-btn: 10px;
  --radius-form: 10px;
  --radius-card: 20px;
  --radius-img: 24px;
  --radius-pill: 999px;

  /* Cienie */
  --shadow-soft: 0 12px 35px rgba(19, 38, 61, 0.08);
  --shadow-hover: 0 18px 45px rgba(19, 38, 61, 0.13);

  /* Kontener */
  --container-max: 1280px;
  --article-max: 760px;
  --side-margin: 20px;

  /* Animacje */
  --transition-fast: 220ms ease;
}

@media (min-width: 768px) {
  :root { --side-margin: 24px; }
}

@media (min-width: 1024px) {
  :root {
    --side-margin: 32px;
    --h1-size: 58px;
    --h1-lh: 1.08;
    --h2-size: 42px;
    --h3-size: 28px;
    --h4-size: 21px;
    --lead-size: 21px;
    --text-size: 17px;
    --text-muted-size: 15px;
    --section-pad: var(--sp-28);
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, picture, svg { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }

html, body {
  overflow-x: hidden;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-size);
  line-height: var(--text-lh);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h1 { font-size: var(--h1-size); line-height: var(--h1-lh); }
h2 { font-size: var(--h2-size); line-height: var(--h2-lh); font-weight: 700; }
h3 { font-size: var(--h3-size); line-height: var(--h3-lh); font-weight: 600; }
h4 { font-size: var(--h4-size); font-weight: 600; }

p { max-width: 78ch; }
.lead { font-size: var(--lead-size); line-height: var(--lead-lh); color: var(--text); font-weight: 400; }
small, .text-muted { font-size: var(--text-muted-size); color: var(--text-muted); }
strong { font-weight: 600; }
a.link, .prose a { text-decoration: underline; text-underline-offset: 2px; color: var(--navy-light); }
a.link:hover, .prose a:hover { color: var(--accent); }

/* ---------- Dostępność ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--navy);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-btn);
  z-index: 1000;
  transition: top var(--transition-fast);
}
.skip-link:focus {
  top: 12px;
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 3px solid var(--navy-light);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--side-margin);
}
.container-article {
  max-width: var(--article-max);
  margin-inline: auto;
  padding-inline: var(--side-margin);
}
.section {
  padding-block: var(--sp-16);
}
@media (min-width: 768px) {
  .section { padding-block: var(--sp-20); }
}
@media (min-width: 1024px) {
  .section { padding-block: var(--section-pad); }
}
.section--dark {
  background: var(--navy);
  color: #fff;
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--tint {
  background: var(--accent-light);
}
.section-head {
  margin-bottom: var(--sp-8);
  max-width: var(--article-max);
}
.section-head h2 { margin-bottom: var(--sp-5); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-5);
}
.section--dark .eyebrow, .section--tint .eyebrow {
  background: rgba(255,255,255,0.12);
  color: var(--sand);
}
.section--tint .eyebrow { background: #fff; color: var(--accent); }

/* Grid */
.grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 768px) {
  .grid { grid-template-columns: repeat(8, 1fr); gap: var(--sp-5); }
}
@media (min-width: 1024px) {
  .grid { grid-template-columns: repeat(12, 1fr); gap: var(--sp-6); }
}

.hero-grid {
  display: grid;
  gap: var(--sp-10);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 58% 42%;
    gap: var(--sp-12);
  }
}

.two-col {
  display: grid;
  gap: var(--sp-10);
  align-items: center;
}
@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: var(--sp-16); }
  .two-col--reverse .two-col-media { order: 2; }
}

/* ---------- Przyciski ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 52px;
  padding: 14px 26px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
  min-width: 44px;
}
@media (min-width: 1024px) { .btn { min-height: 56px; } }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; transform: translateY(-1px); }
.section--dark .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.5); }
.section--dark .btn-secondary:hover { background: #fff; color: var(--navy); }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-4); margin-top: var(--sp-8); }

/* ---------- Karty ---------- */
.card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: var(--sp-8);
  box-shadow: var(--shadow-soft);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.card-photo {
  margin: calc(var(--sp-8) * -1) calc(var(--sp-8) * -1) var(--sp-5);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-video {
  position: relative;
  display: block;
  margin: calc(var(--sp-8) * -1) calc(var(--sp-8) * -1) var(--sp-5);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.card-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-fast);
}
.card-video:hover img { transform: scale(1.05); }
.card-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19, 38, 61, 0.22);
}
.card-video .play-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast);
}
.card-video:hover .play-icon { transform: translate(-50%, -50%) scale(1.08); }
.card-video .play-icon svg { width: 20px; height: 20px; color: var(--navy); margin-left: 3px; }
.card-links { display: flex; flex-direction: column; gap: 6px; margin-top: var(--sp-5); }
.card-links .link { margin-top: 0; }
.link-external::after { content: " ↗"; }
.card-icon {
  width: 44px; height: 44px;
  color: var(--accent);
  margin-bottom: var(--sp-5);
}
.card h3 { margin-bottom: var(--sp-3); }
.card p { color: var(--text-muted); flex-grow: 1; }
.card .link { margin-top: var(--sp-5); font-weight: 600; }

.cards-4 { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
@media (min-width: 768px) { .cards-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .cards-4 { grid-template-columns: repeat(4, 1fr); } }

.cards-3 { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
@media (min-width: 768px) { .cards-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Nagłówek / nawigacja ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(247,246,242,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: padding var(--transition-fast), box-shadow var(--transition-fast);
}
.site-header.is-scrolled { box-shadow: var(--shadow-soft); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 20px;
  transition: padding var(--transition-fast);
}
.site-header.is-scrolled .header-inner { padding-block: 12px; }
.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}
.logo-img { height: 34px; width: auto; display: block; }
.logo span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--text-muted);
}
.nav-desktop { display: none; }
@media (min-width: 1100px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
  }
  .nav-desktop a {
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    color: var(--text);
    padding: 8px 2px;
    border-bottom: 2px solid transparent;
  }
  .nav-desktop a:hover, .nav-desktop a[aria-current="page"] {
    color: var(--navy);
    border-bottom-color: var(--accent);
  }
}
.header-actions { display: flex; align-items: center; gap: var(--sp-4); }
.header-cta { display: none; }
@media (min-width: 1100px) { .header-cta { display: inline-flex; } }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
}
@media (min-width: 1100px) { .menu-toggle { display: none; } }
.menu-toggle svg { width: 22px; height: 22px; }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--bg-white);
  z-index: 600;
  padding: var(--sp-6);
  overflow-y: auto;
}
.nav-mobile.is-open { display: block; }
.nav-mobile-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--sp-8); }
.nav-mobile ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.nav-mobile a {
  display: block;
  padding: 14px 4px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  text-decoration: none;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.nav-mobile .btn { width: 100%; margin-top: var(--sp-6); }
@media (min-width: 1100px) { .nav-mobile { display: none !important; } }

/* Pasek dolny na telefonie */
.mobile-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: var(--navy);
  display: flex;
  z-index: 400;
  box-shadow: 0 -8px 24px rgba(19,38,61,0.18);
}
.mobile-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}
.mobile-bar svg { width: 20px; height: 20px; }
@media (min-width: 1100px) { .mobile-bar { display: none; } }
body.has-mobile-bar { padding-bottom: 64px; }
@media (min-width: 1100px) { body.has-mobile-bar { padding-bottom: 0; } }

/* ---------- Stopka ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding-block: var(--sp-16);
}
.footer-grid {
  display: grid;
  gap: var(--sp-8);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.site-footer h4 { color: #fff; margin-bottom: var(--sp-4); font-size: 16px; }
.site-footer a { color: rgba(255,255,255,0.8); text-decoration: none; }
.site-footer a:hover { color: var(--sand); text-decoration: underline; }
.site-footer ul li { margin-bottom: var(--sp-2); }
.footer-logo { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: #fff; }
.footer-bottom {
  margin-top: var(--sp-12);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.footer-bottom a { color: rgba(255,255,255,0.6); }

/* ---------- Formularze ---------- */
.field { margin-bottom: var(--sp-5); }
.field label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: var(--sp-2);
  color: var(--navy);
}
.field .hint { display: block; font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-form);
  background: #fff;
  font-size: 16px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy-light);
  box-shadow: 0 0 0 3px rgba(35,74,104,0.18);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: var(--error); }
.field-error {
  display: block;
  color: var(--error);
  font-size: 13px;
  margin-top: 4px;
}
.form-row { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }
@media (min-width: 768px) { .form-row { grid-template-columns: 1fr 1fr; } }
.checkbox-field { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-field input { width: 20px; height: 20px; min-height: 20px; margin-top: 2px; flex-shrink: 0; }
.checkbox-field label { font-size: 14px; color: var(--text); font-weight: 400; }
.form-note { font-size: 13px; color: var(--text-muted); margin-bottom: var(--sp-5); }

/* ---------- Baner cookies ---------- */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 640px;
  margin-inline: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-hover);
  padding: var(--sp-6);
  z-index: 900;
  display: none;
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p { font-size: 14px; color: var(--text-muted); margin-bottom: var(--sp-4); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.cookie-categories { display: none; margin-bottom: var(--sp-4); }
.cookie-categories.is-open { display: block; }
.cookie-category { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { font-size: 13px; color: var(--text-muted); margin-bottom: var(--sp-6); }
.breadcrumbs a { text-decoration: none; color: var(--text-muted); }
.breadcrumbs a:hover { text-decoration: underline; color: var(--navy); }
.breadcrumbs .sep { margin: 0 6px; }

/* ---------- Pasek logotypów ---------- */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
@media (min-width: 768px) { .logo-strip { grid-template-columns: repeat(4, 1fr); } }
.logo-tile {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  padding: var(--sp-3);
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter var(--transition-fast), opacity var(--transition-fast);
}
.logo-tile:hover { filter: grayscale(0); opacity: 1; }
.logo-tile img { max-width: 80%; max-height: 60%; object-fit: contain; }

/* ---------- Pola informacyjne / placeholder ---------- */
.placeholder-box {
  border: 1px dashed var(--border);
  background: var(--accent-light);
  border-radius: var(--radius-img);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
  padding: var(--sp-6);
  aspect-ratio: 4 / 5;
}
.placeholder-box--wide { aspect-ratio: 3 / 2; }
.photo-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-img);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}
.photo-box--wide { aspect-ratio: 3 / 2; }
.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.todo-tag {
  display: inline-block;
  background: var(--sand);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

/* ---------- Bloki treści ---------- */
.fact-block {
  background: var(--accent-light);
  border-radius: var(--radius-card);
  padding: var(--sp-8);
  margin-block: var(--sp-8);
}
.fact-block h3 { margin-bottom: var(--sp-4); }
.fact-block ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: var(--sp-3);
}
.fact-block ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.stat-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}
@media (min-width: 768px) { .stat-bar { grid-template-columns: repeat(3, 1fr); } }
.stat-bar .stat b {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--navy);
}
.stat-bar .stat span { color: var(--text-muted); font-size: 14px; }

.pill-field {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.pill-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

.steps { counter-reset: step; display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(5, 1fr); } }
.step { position: relative; padding-top: var(--sp-10); }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
}

.testimonial {
  background: #fff;
  border-radius: var(--radius-card);
  padding: var(--sp-8);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.testimonial p { font-size: var(--lead-size); color: var(--navy); font-style: italic; margin-bottom: var(--sp-5); }
.testimonial footer { font-size: 14px; color: var(--text-muted); }
.testimonial .todo-tag { position: absolute; top: var(--sp-6); right: var(--sp-6); }

.article-card {
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}
.article-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.article-card .article-media { aspect-ratio: 3/2; background: var(--accent-light); }
.article-card .article-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-card .article-body { padding: var(--sp-6); flex-grow: 1; display: flex; flex-direction: column; }
.article-meta { font-size: 13px; color: var(--text-muted); margin-bottom: var(--sp-2); }
.article-card h3 { margin-bottom: var(--sp-3); }
.article-card a.stretched { text-decoration: none; color: var(--navy); }
.tag-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-3);
}

/* Fade-in przy scrollu */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 260ms ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* Notatki prawne / disclaimer */
.disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-5);
  margin-top: var(--sp-8);
  max-width: var(--article-max);
}

.hero-bg {
  background: linear-gradient(135deg, #F7F6F2 0%, #EDF3F1 100%);
}

.center-text { text-align: center; }
.mx-auto { margin-inline: auto; }
