:root {
  --shell-ink: #0e192b;
  --shell-ink-soft: #17253a;
  --shell-teal: #4070D4;
  --shell-teal-deep: #2F58AC;
  --shell-mint: #eefcfb;
  --shell-line: #dce5ee;
  --shell-muted: #66758a;
  --shell-paper: #fff;
  --shell-shadow: 0 24px 70px rgba(14, 25, 43, .13);
  --shell-page: min(1180px, calc(100% - 48px));
  --shell-text-ui: 12px;
  --shell-text-card: 14px;
  --shell-text-body: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.content-page {
  margin: 0;
  padding-top: 76px;
  background: #fff;
  color: var(--shell-ink);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--shell-text-body);
  -webkit-font-smoothing: antialiased;
}
/* Nagłówki mają celowo ciasny (ujemny) letter-spacing, ale ujemna wartość zawęża też
   spację między wyrazami - słowa zlewały się w jeden ciąg. word-spacing przywraca
   przerwy międzywyrazowe z niewielkim zapasem, nie zmieniając zwartości samych liter.
   Reguła działa na całej stronie: ten arkusz wczytują też strona główna i podstrony. */
h1, h2, h3 { word-spacing: .08em; }
.content-page img { display: block; max-width: 100%; }
.content-page a { color: inherit; text-decoration: none; }
.content-page button,
.content-page input,
.content-page select,
.content-page textarea { font: inherit; }
.shell-container { width: var(--shell-page); margin-inline: auto; }
.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; }
.skip-link { position: fixed; z-index: 999; top: 10px; left: 10px; padding: 10px 14px; border-radius: 8px; background: var(--shell-ink); color: #fff !important; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 8px; padding: 0 24px; border: 1px solid transparent; border-radius: 10px; font-size: 13px; font-weight: 800; letter-spacing: -.01em; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-1px); }
.button:focus-visible { outline: 3px solid rgba(64, 112, 212, .23); outline-offset: 3px; }
.button-teal { background: var(--shell-teal); box-shadow: 0 10px 25px rgba(64, 112, 212, .2); color: #fff !important; }
.button-teal:hover { background: var(--shell-teal-deep); box-shadow: 0 14px 30px rgba(64, 112, 212, .25); }
.button-outline { border-color: #cbd6e1; background: #fff; color: var(--shell-ink) !important; }
.button-outline:hover { border-color: var(--shell-ink); }
.button-white { background: #fff; color: var(--shell-ink) !important; }
.text-link { display: inline-flex; min-height: 48px; align-items: center; gap: 8px; padding-inline: 4px; color: #334258 !important; font-size: 13px; font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }

/* Shared navigation */
.site-header.shell-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  width: 100%;
  border-bottom: 1px solid rgba(14, 25, 43, .08);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 4px 20px rgba(14, 25, 43, .045);
  backdrop-filter: blur(18px);
}
.shell-nav { min-height: 75px; display: flex; align-items: center; gap: 20px; }
.shell-nav .brand { display: inline-flex; flex: 0 0 auto; width: 179px; align-items: center; }
.shell-nav .brand img { width: 100%; }
.shell-nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.site-header.shell-header .shell-nav-links > a,
.site-header.shell-header .nav-mega-trigger { min-height: 42px; display: inline-flex; align-items: center; padding: 0 12px; border: 0; border-radius: 9px; background: transparent; color: #263449; cursor: pointer; font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 12px; font-weight: 750; letter-spacing: -.01em; line-height: 1; text-decoration: none !important; white-space: nowrap; }
.shell-nav-links > a::before,
.shell-nav-links > a::after { display: none !important; content: none !important; }
.shell-nav-links > a:hover,
.shell-nav-links > a[aria-current="page"],
.nav-mega-trigger:hover,
.nav-mega-trigger[aria-expanded="true"],
.nav-mega-trigger[aria-current="page"] { background: #f0f7f7; color: #087e78; }
.site-header.shell-header .shell-nav-links > a:focus-visible,
.site-header.shell-header .nav-mega-trigger:focus-visible { outline: 3px solid rgba(64, 112, 212, .22); outline-offset: 2px; }
.nav-mega { position: relative; }
.mega-panel {
  position: fixed;
  z-index: 120;
  top: 68px;
  left: 50%;
  width: min(1180px, calc(100vw - 44px));
  max-height: calc(100vh - 92px);
  padding: 0;
  overflow-y: auto;
  border: 1px solid rgba(14, 25, 43, .09);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shell-shadow);
  transform: translate(-50%, 8px);
  opacity: 0;
  transition: opacity .18s ease, transform .22s cubic-bezier(.22, 1, .36, 1);
}
.mega-panel:not([hidden]) { opacity: 1; transform: translate(-50%, 0); }
.site-header.shell-header .mega-layout { display: grid; grid-template-columns: minmax(0, 1fr) 286px; min-height: 370px; height: auto; }
.site-header.shell-header .mega-main { min-width: 0; padding: 24px 28px 26px; }
.site-header.shell-header .mega-panel-head { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-bottom: 16px; border-bottom: 1px solid #e8eef4; }
.mega-panel-title { margin: 5px 0 0; font-size: 20px; font-weight: 700; letter-spacing: -.04em; }
.mega-panel-head > a { color: var(--shell-teal-deep); font-size: 11px; font-weight: 800; }
.mega-panel-head > a span { margin-left: 4px; }
.site-header.shell-header .mega-category-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: max-content; align-content: start; gap: 16px 28px; padding-top: 18px; }
.site-header.shell-header .mega-category { min-width: 0; }
.mega-category-title { margin: 0 0 8px; color: #8b98a9; font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.site-header.shell-header .mega-category nav { display: grid; height: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); align-content: start; gap: 2px 8px; margin: 0; padding: 0; }
.site-header.shell-header .mega-link { position: relative; display: grid; min-width: 0; min-height: 39px; height: auto; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 8px; padding: 6px 9px; border-radius: 9px; font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.3; text-decoration: none; }
.site-header.shell-header .mega-link::before,
.site-header.shell-header .mega-link::after { display: none !important; content: none !important; }
.mega-link:hover { background: #f4f9f9; }
.mega-link-icon,
.capability-icon { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; flex: 0 0 auto; border: 1px solid #dce9e8; border-radius: 10px; background: #effbf9; color: var(--shell-teal); }
.mega-link-icon svg,
.capability-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.site-header.shell-header .mega-link strong { display: block; overflow: visible; font-family: inherit; font-size: 10.5px; font-weight: 750; letter-spacing: -.01em; line-height: 1.35; text-overflow: clip; white-space: normal; }
.mega-link small { display: none; }
.mega-arrow { color: #9da9b8; transition: transform .2s ease, color .2s ease; }
.mega-link:hover .mega-arrow { color: var(--shell-teal); transform: translateX(3px); }
.mega-link-compact { grid-template-columns: minmax(0, 1fr) auto; min-height: 44px; padding: 8px 11px; }
.mega-link-compact strong { white-space: normal; }
.site-header.shell-header .mega-promo { display: flex; min-width: 0; flex-direction: column; justify-content: space-between; padding: 22px; border-left: 1px solid #e7edf2; background: linear-gradient(155deg, #f2fbfa, #f7f9fc 72%); }
.mega-promo-visual { overflow: hidden; border: 1px solid #dce6ec; border-radius: 12px; background: #111b2d; box-shadow: 0 16px 34px rgba(14,25,43,.12); }
.mega-promo-visual img { width: 100%; height: auto; aspect-ratio: 1.74 / 1; object-fit: cover; object-position: center; }
.mega-promo-title { margin: 16px 0 0; font-size: 17px; font-weight: 700; letter-spacing: -.035em; line-height: 1.2; }
.mega-promo p:not(.mega-promo-title) { margin: 8px 0 16px; color: #65748a; font-size: 10.5px; line-height: 1.55; }
.mega-promo .button { width: 100%; min-height: 43px; font-size: 11px; }
.eyebrow { color: var(--shell-teal); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow-light { color: #6de0d8; }

.shell-language { position: relative; flex: 0 0 auto; }
.site-header.shell-header .shell-language-button,
.site-footer.shell-footer .shell-language-button { min-height: 40px; display: inline-flex; align-items: center; gap: 7px; padding: 0 10px; border: 1px solid #dce4ec; border-radius: 9px; background: #fff; color: #263449; cursor: pointer; font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 10px; font-weight: 800; letter-spacing: 0; line-height: 1; }
.shell-globe { width: 17px; height: 17px; color: var(--shell-teal); }
.shell-globe svg { display: block; width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.shell-chevron { width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg); }
.shell-language-button[aria-expanded="true"] .shell-chevron { transform: translateY(2px) rotate(225deg); }
.shell-language-menu { position: absolute; z-index: 130; top: calc(100% + 9px); right: 0; width: 190px; max-height: 360px; padding: 8px; overflow-y: auto; border: 1px solid #dfe7ee; border-radius: 12px; background: #fff; box-shadow: 0 18px 45px rgba(14, 25, 43, .14); }
.shell-language-menu a { display: block; padding: 9px 10px; border-radius: 7px; color: #354359; font-size: 11px; font-weight: 700; }
.shell-language-menu a:hover { background: #eff9f8; color: var(--shell-teal-deep); }
.shell-nav .nav-cta { min-height: 42px; padding-inline: 18px; }
.menu-toggle { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; padding: 0; border: 1px solid #d8e1e9; border-radius: 10px; background: #fff; }
.menu-icon { position: relative; display: block; width: 21px; height: 15px; }
.menu-icon span { position: absolute; left: 0; width: 21px; height: 2px; border-radius: 99px; background: var(--shell-ink); transition: top .2s ease, opacity .16s ease, transform .2s ease; }
.menu-icon span:nth-child(1) { top: 0; }.menu-icon span:nth-child(2) { top: 6.5px; }.menu-icon span:nth-child(3) { top: 13px; }
.site-header.menu-open .menu-icon span:nth-child(1) { top: 6.5px; transform: rotate(45deg); }
.site-header.menu-open .menu-icon span:nth-child(2) { opacity: 0; }
.site-header.menu-open .menu-icon span:nth-child(3) { top: 6.5px; transform: rotate(-45deg); }
.mobile-menu { display: none; }

/* Content heroes */
.content-hero { position: relative; overflow: hidden; padding: 34px 0 92px; background: linear-gradient(180deg, #f5fdfc 0%, #fff 100%); }
.content-hero::before { content: ""; position: absolute; top: -220px; left: 50%; width: 680px; height: 680px; border-radius: 50%; background: radial-gradient(circle, rgba(64, 112, 212, .12), transparent 68%); pointer-events: none; }
.breadcrumbs { position: relative; display: flex; align-items: center; gap: 8px; color: #76859a; font-size: 10px; font-weight: 700; }
.breadcrumbs a:hover { color: var(--shell-teal); }
.content-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .88fr) minmax(440px, 1.12fr); gap: 74px; align-items: center; padding-top: 64px; }
.content-hero h1 { max-width: 720px; margin: 13px 0 0; font-size: clamp(44px, 5vw, 68px); font-weight: 800; letter-spacing: -.06em; line-height: 1.02; }
.content-hero-grid > div:first-child > p { max-width: 670px; margin: 24px 0 0; color: #526176; font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 30px; }
.app-visual { position: relative; min-width: 0; }
.visual-glow { position: absolute; inset: 12% 8% -8%; border-radius: 40%; background: radial-gradient(circle, rgba(64, 112, 212, .24), rgba(58, 81, 111, .08) 50%, transparent 72%); filter: blur(28px); }
.app-frame { position: relative; overflow: hidden; border: 1px solid rgba(14, 25, 43, .16); border-radius: 14px; background: #101a2b; box-shadow: 0 30px 70px rgba(14, 25, 43, .2), 0 4px 14px rgba(14, 25, 43, .12); transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.app-frame-bar { height: 26px; display: flex; align-items: center; gap: 5px; padding: 0 10px; background: #131d2e; color: #8090a6; font-size: 7px; }
.app-frame-bar i { width: 5px; height: 5px; border-radius: 50%; background: #526177; }
.app-frame-bar i:first-child { background: #fb6a66; }.app-frame-bar i:nth-child(2) { background: #f2c35e; }.app-frame-bar i:nth-child(3) { background: #5dd18a; }
.app-frame-bar span { margin-left: auto; margin-right: auto; }
.app-frame img { width: 100%; height: auto; aspect-ratio: 1.91 / 1; object-fit: cover; object-position: top; }

/* Listing pages */
.listing-section { padding: 104px 0 118px; }
.listing-intro { display: flex; align-items: end; justify-content: space-between; gap: 44px; margin-bottom: 42px; }
.listing-intro h2 { max-width: 760px; margin: 10px 0 0; font-size: clamp(32px, 4vw, 48px); letter-spacing: -.05em; line-height: 1.1; }
.listing-intro .section-lead { max-width: 490px; margin: 0; color: var(--shell-muted); font-size: 14px; line-height: 1.7; }
.card-search { width: min(320px, 100%); min-height: 48px; display: flex; align-items: center; gap: 10px; padding: 0 15px; border: 1px solid #d9e4eb; border-radius: 11px; background: #fff; box-shadow: 0 8px 24px rgba(14, 25, 43, .05); }
.card-search:focus-within { border-color: var(--shell-teal); box-shadow: 0 0 0 3px rgba(64, 112, 212, .1); }
.card-search svg { width: 17px; fill: none; stroke: #8a98aa; stroke-width: 1.8; }
.card-search input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; color: var(--shell-ink); font-size: 13px; }
.capability-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.capability-card { min-width: 0; }
.capability-card > .card-static,
.capability-card > a { position: relative; height: 100%; min-height: 302px; display: flex; flex-direction: column; padding: 28px; overflow: hidden; border: 1px solid #e1e8ef; border-radius: 17px; background: #fff; box-shadow: 0 13px 36px rgba(14, 25, 43, .055); transition: transform .24s cubic-bezier(.22, 1, .36, 1), border-color .2s ease, box-shadow .24s ease; }
.capability-card > .card-static::after,
.capability-card > a::after { content: ""; position: absolute; right: -80px; bottom: -110px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(64, 112, 212, .09), transparent 68%); }
.capability-card > a:hover { z-index: 1; border-color: #bddedb; box-shadow: 0 22px 54px rgba(14, 25, 43, .1); transform: translateY(-5px); }
.capability-number { position: absolute; top: 28px; right: 28px; color: #aeb9c6; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.capability-card .capability-icon { width: 44px; height: 44px; }
.capability-card h3 { margin: 24px 0 0; font-size: 20px; letter-spacing: -.035em; line-height: 1.25; }
.capability-eyebrow { display: block; margin: 20px 0 0; color: var(--shell-teal-deep); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.capability-eyebrow + h3 { margin-top: 6px; }
.capability-card p { margin: 13px 0 0; color: #68768a; font-size: var(--shell-text-card); line-height: 1.65; }
/* Odpowiednik .card-link na karcie, ktora nie prowadzi jeszcze donikad. */
.card-note { display: inline-flex; margin-top: auto; padding-top: 24px; color: var(--shell-teal); font-size: var(--shell-text-ui); font-weight: 800; }
body.content-page .card-note { font-size: 15px; font-weight: 500; }
.card-link { position: relative; z-index: 1; display: inline-flex; gap: 7px; margin-top: auto; padding-top: 24px; color: var(--shell-teal-deep); font-size: var(--shell-text-ui); font-weight: 800; }
.card-link span { transition: transform .2s ease; }.capability-card a:hover .card-link span { transform: translateX(4px); }
.no-results { padding: 26px; border-radius: 14px; background: #f5f9fa; color: var(--shell-muted); text-align: center; }
.cross-promo { padding: 0 0 112px; }
.cross-promo-card,
.article-cta-card { display: flex; align-items: center; justify-content: space-between; gap: 46px; padding: 52px 58px; border-radius: 22px; background: radial-gradient(circle at 85% 20%, rgba(64, 112, 212, .25), transparent 35%), var(--shell-ink); color: #fff; }
.cross-promo-card h2,
.article-cta-card h2 { max-width: 760px; margin: 12px 0 0; font-size: clamp(30px, 4vw, 46px); letter-spacing: -.05em; line-height: 1.08; }
.cross-promo-card p,
.article-cta-card p { max-width: 690px; margin: 17px 0 0; color: #aeb9c8; font-size: var(--shell-text-card); line-height: 1.7; }

/* Detail pages */
.detail-hero { padding-bottom: 88px; }
.article-body { padding: 102px 0 36px; }
.localized-article { max-width: 880px; }
.localized-article > section { margin-bottom: 82px; }
.localized-article .answer-section { padding: 40px 42px 44px; }
.localized-article .example-card { margin-bottom: 52px; }
.article-grid { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 72px; }
.article-aside nav { position: sticky; top: 112px; display: grid; gap: 4px; padding: 20px; border: 1px solid #e0e8ef; border-radius: 13px; background: #fff; box-shadow: 0 12px 35px rgba(14, 25, 43, .05); }
.article-aside nav > span { margin: 0 9px 10px; color: #8b98a9; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.article-aside a { min-height: 38px; display: flex; align-items: center; padding: 9px; border-radius: 7px; color: #58677a; font-size: var(--shell-text-ui); font-weight: 700; line-height: 1.45; }
.article-aside a:hover { background: #eef9f8; color: var(--shell-teal-deep); }
.article-content > section { scroll-margin-top: 110px; padding-bottom: 86px; }
.article-content > #jak-dziala,
.article-content > .article-faq { margin-top: 52px; }
.article-content h2 { margin: 10px 0 0; font-size: clamp(29px, 3.6vw, 42px); letter-spacing: -.045em; line-height: 1.15; }
.article-content p { margin: 22px 0 0; color: #4e5d71; font-size: var(--shell-text-body); line-height: 1.8; }
.article-content .article-note { margin-top: 16px; color: #7b8797; font-size: 12px; line-height: 1.6; }
.article-content code { padding: 2px 6px; border-radius: 5px; background: #eef4f7; color: #27536b; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .88em; }
.section-kicker { color: var(--shell-teal); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.answer-section { position: relative; padding: 40px 42px 46px !important; border: 1px solid #cbe7e4; border-radius: 19px; background: linear-gradient(145deg, #f1fcfb, #fff 65%); }
.answer-section::before { content: ""; position: absolute; top: 0; left: 42px; width: 72px; height: 3px; border-radius: 0 0 3px 3px; background: var(--shell-teal); }
.step-list { display: grid; gap: 12px; padding: 0; margin: 28px 0 0; list-style: none; }
.step-list li { display: grid; grid-template-columns: 45px minmax(0, 1fr); align-items: start; gap: 17px; padding: 20px 22px; border: 1px solid #e1e8ef; border-radius: 13px; background: #fff; box-shadow: 0 8px 25px rgba(14, 25, 43, .04); }
.step-list li > span { width: 39px; height: 39px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; background: #effaf9; color: var(--shell-teal-deep); font-size: 10px; font-weight: 800; }
.step-list li p { margin: 5px 0 0; font-size: var(--shell-text-card); line-height: 1.65; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-top: 28px; }
.benefit-card { padding: 22px; border: 1px solid #e0e7ee; border-radius: 14px; background: #fff; box-shadow: 0 10px 28px rgba(14, 25, 43, .045); }
.check-icon { width: 31px; height: 31px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--shell-teal); color: #fff; font-size: 13px; font-weight: 800; }
.benefit-card p { margin: 15px 0 0; font-size: var(--shell-text-card); line-height: 1.7; }
.example-card { padding: 42px !important; border-radius: 19px; background: var(--shell-ink); color: #fff; }
.example-card .section-kicker { color: #6de0d8; }
.example-card p { color: #bec7d4; }
.article-faq .faq-list { display: grid; gap: 10px; margin-top: 28px; }
.article-faq details { overflow: hidden; border: 1px solid #dde6ed; border-radius: 13px; background: #fff; transition: border-color .2s ease; }
.article-faq details[open] { border-color: #acdcd8; }
.article-faq summary { position: relative; display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 22px; cursor: pointer; font-size: var(--shell-text-card); font-weight: 800; line-height: 1.45; list-style: none; }
.article-faq summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; width: 32px; height: 32px; flex: 0 0 auto; border-radius: 50%; background: #edf9f8; color: var(--shell-teal); }
.faq-plus::before,
.faq-plus::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 2px; border-radius: 2px; background: currentColor; transform: translate(-50%, -50%); }
.faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform .24s ease; }
details[open] .faq-plus { background: var(--shell-teal); color: #fff; }
details[open] .faq-plus::after { transform: translate(-50%, -50%) rotate(0); }
.article-faq .faq-answer { padding: 0 22px 22px; }
.article-faq .faq-answer p { margin: 0; font-size: var(--shell-text-card); line-height: 1.75; }
.related-section { padding: 12px 0 108px; background: #f6fafa; }
.related-head { padding-top: 76px; }
.related-head h2 { margin: 10px 0 0; font-size: 38px; letter-spacing: -.045em; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 30px; }
.related-card { padding: 27px; border: 1px solid #e0e8ee; border-radius: 16px; background: #fff; box-shadow: 0 10px 32px rgba(14, 25, 43, .05); transition: transform .2s ease, box-shadow .2s ease; }
.related-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(14, 25, 43, .09); }
.related-card h3 { margin: 22px 0 0; font-size: 18px; letter-spacing: -.03em; }
.related-card p { margin: 12px 0 0; color: #6f7d90; font-size: 13px; line-height: 1.65; }
.related-card > span:last-child { display: block; margin-top: 22px; color: var(--shell-teal); font-size: var(--shell-text-ui); font-weight: 800; }
.article-cta { padding: 104px 0; }

/* Use Cases */
.use-cases-hero { padding-bottom: 104px; }
.use-cases-hero .content-hero-grid { align-items: center; }
.use-cases-hero h1 { max-width: 760px; font-size: clamp(46px, 5.2vw, 70px); }
.use-case-list-section { padding: 104px 0 116px; scroll-margin-top: 90px; }
.use-case-list-section .listing-intro > div { max-width: 710px; }
.use-case-list-section .listing-intro .section-lead { margin-top: 15px; }
.use-case-icon { display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center; flex: 0 0 auto; border: 1px solid #cfe7e4; border-radius: 12px; background: #edf9f8; color: var(--shell-teal); }
.use-case-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.use-case-list-cta { padding-top: 96px; }
.use-case-detail-hero .content-hero-grid { align-items: center; }
.use-case-detail-hero h1 { font-size: clamp(42px, 4.8vw, 66px); }
.use-case-persona { max-width: 560px; display: grid; gap: 5px; margin-top: 25px; padding: 15px 17px; border-left: 3px solid var(--shell-teal); border-radius: 0 10px 10px 0; background: rgba(255,255,255,.7); }
.use-case-persona span { color: #8390a1; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.use-case-persona strong { color: #36465b; font-size: 12px; line-height: 1.5; }
.use-case-visual-label { position: relative; display: flex; align-items: center; gap: 13px; width: min(390px, calc(100% - 38px)); margin: -18px auto 0; padding: 13px 15px; border: 1px solid #dce8e7; border-radius: 13px; background: #fff; box-shadow: 0 16px 38px rgba(14,25,43,.1); }
.use-case-visual-label .use-case-icon { width: 38px; height: 38px; border-radius: 10px; }
.use-case-visual-label .use-case-icon svg { width: 18px; height: 18px; }
.use-case-visual-label strong { font-size: 12px; line-height: 1.45; }
.use-case-article .article-content > section + section { margin-top: 52px; }
.use-case-effect { padding: 42px !important; border-radius: 19px; background: radial-gradient(circle at 88% 18%, rgba(64,112,212,.28), transparent 35%), var(--shell-ink); color: #fff; }
.use-case-effect .section-kicker { color: #6de0d8; }
.use-case-effect h2 { color: #fff; }
.use-case-effect p { color: #c4cedb; }
.use-case-feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; padding: 0; margin: 28px 0 0; list-style: none; }
.use-case-feature-list li { display: grid; grid-template-columns: 31px minmax(0, 1fr); align-items: center; gap: 12px; padding: 16px; border: 1px solid #e0e8ee; border-radius: 13px; background: #fff; box-shadow: 0 8px 25px rgba(14,25,43,.04); color: #48576b; font-size: 12px; font-weight: 700; line-height: 1.5; }
.use-case-feature-list .check-icon { width: 29px; height: 29px; }
.use-case-related .related-card .use-case-icon { width: 40px; height: 40px; }
.use-case-story-page .article-content { min-width: 0; }
.use-case-story-page .article-content > section { padding-bottom: 0; }
.use-case-story-page .article-content > section + section { margin-top: 48px; }
.use-case-story-page .article-content > #funkcje { margin-top: 104px; }
.use-case-story-section { position: relative; }
.use-case-story-head { max-width: 690px; }
.use-case-story-head > p { max-width: 650px; margin-top: 17px; color: #647287; font-size: 14px; line-height: 1.7; }
.use-case-story-points { display: grid; gap: 12px; padding: 0; margin: 30px 0 0; list-style: none; }
.use-case-story-points-problem,
.use-case-story-points-result { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.use-case-story-points li { min-width: 0; display: grid; grid-template-columns: 38px minmax(0, 1fr); align-items: start; gap: 14px; padding: 20px; border: 1px solid #dfe8ed; border-radius: 14px; background: #fff; box-shadow: 0 9px 28px rgba(14,25,43,.045); }
.use-case-story-marker { width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: #eef9f8; color: var(--shell-teal-deep); font-size: 12px; font-weight: 900; }
.use-case-story-points-problem .use-case-story-marker { border: 1px solid #f1d9cf; background: #fff7f3; color: #bd6b4e; }
.use-case-story-points strong { display: block; color: var(--shell-ink); font-size: var(--shell-text-card); line-height: 1.7; }
.use-case-story-points li p { margin: 6px 0 0; color: #647287; font-size: var(--shell-text-card); line-height: 1.7; }
.use-case-solution-grid { display: grid; grid-template-columns: minmax(0, 1fr); align-items: start; gap: 28px; margin-top: 32px; }
.use-case-solution-grid .use-case-story-points { margin-top: 0; }
.use-case-solution-grid .use-case-story-points li { padding: 17px; }
.use-case-story-points-solution { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.use-case-product-visual { min-width: 0; margin: 0; }
.use-case-product-visual .app-frame { border-radius: 14px; box-shadow: 0 22px 58px rgba(14,25,43,.15); }
.use-case-product-visual img { display: block; width: 100%; height: auto; }
.use-case-product-visual figcaption { margin: 15px 8px 0; color: #738095; font-size: 13px; line-height: 1.6; white-space: nowrap; }
.use-case-result-grid { display: grid; grid-template-columns: minmax(0, 1fr); align-items: start; gap: 28px; margin-top: 32px; }
.use-case-result-grid .use-case-story-points { margin-top: 0; }
.use-case-story-points-result .use-case-story-marker { background: var(--shell-teal); color: #fff; }

/* Generic / future sections */
.placeholder-list,
.standalone-pricing,
.coming-page { padding: 104px 0 118px; }
.status-pill { display: inline-flex; min-height: 32px; align-items: center; padding: 0 13px; border: 1px solid #bce1de; border-radius: 999px; background: #f0fbfa; color: var(--shell-teal-deep); font-size: 9px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.placeholder-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.placeholder-card { min-height: 245px; display: flex; flex-direction: column; padding: 28px; border: 1px solid #e0e8ef; border-radius: 16px; background: #fff; box-shadow: 0 12px 34px rgba(14, 25, 43, .05); }
.placeholder-card > span { color: #a5b1bf; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.placeholder-card h3 { margin: 30px 0 0; font-size: 19px; letter-spacing: -.035em; }
.placeholder-card p { margin: 12px 0 0; color: #69778b; font-size: 12px; line-height: 1.7; }
.coming-label { margin-top: auto; padding-top: 22px; color: var(--shell-teal); font-size: 10px; font-weight: 800; }
.coming-card { max-width: 820px; padding: 58px; border: 1px solid #dce7ec; border-radius: 22px; background: #fff; box-shadow: 0 20px 60px rgba(14, 25, 43, .08); }
.coming-card h2 { margin: 22px 0 0; font-size: clamp(34px, 5vw, 54px); letter-spacing: -.055em; line-height: 1.08; }
.coming-card p { max-width: 650px; margin: 20px 0 30px; color: #68778a; font-size: 14px; line-height: 1.8; }

/* Pricing */
.standalone-price-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; padding-top: 28px; }
.standalone-price-card { position: relative; min-width: 0; display: flex; flex-direction: column; padding: 30px 25px 26px; border: 1px solid #dfe7ee; border-radius: 17px; background: #fff; box-shadow: 0 14px 38px rgba(14, 25, 43, .055); }
.standalone-price-card.featured { border: 2px solid var(--shell-teal); box-shadow: 0 20px 50px rgba(64, 112, 212, .13); }
.standalone-price-card .price-ribbon { position: absolute; top: -37px; right: -2px; left: -2px; min-height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 14px 14px 0 0; background: var(--shell-teal); color: #fff; font-size: 10px; font-weight: 800; }
.standalone-price-card h3 { margin: 0; font-size: 20px; }
.standalone-price-card .price-team { min-height: 36px; margin: 8px 0 0; color: #738196; font-size: 10px; line-height: 1.5; }
.price-value { min-height: 82px; display: flex; align-items: end; gap: 7px; padding: 20px 0 16px; }
.price-value strong { min-width: 0; font-size: clamp(23px, 2vw, 34px); letter-spacing: -.05em; white-space: nowrap; }
.price-value small { margin-bottom: 5px; color: #778599; font-size: 9px; font-weight: 700; }
.standalone-price-card ul { display: grid; gap: 12px; min-height: 100px; padding: 0; margin: 0 0 24px; list-style: none; }
.standalone-price-card li { position: relative; padding-left: 19px; color: #36445a; font-size: 10px; line-height: 1.45; }
.standalone-price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--shell-teal); font-weight: 900; }
.standalone-price-card .button { width: 100%; }
.service-list { display: grid; gap: 9px; padding-top: 22px; margin-top: 22px; border-top: 1px solid #e3eaf0; }
.service-list strong { margin-bottom: 4px; font-size: 10px; }
.service-list p { margin: 0; color: #748297; font-size: 9px; line-height: 1.5; }
.price-note { max-width: 900px; margin: 28px auto 0; color: #8390a1; font-size: 9px; line-height: 1.7; text-align: center; }

/* Demo */
.standalone-demo { padding: 104px 0; background: var(--shell-ink); }
.demo-layout { display: grid; grid-template-columns: minmax(0, .72fr) minmax(620px, 1.28fr); gap: 72px; align-items: start; }
.demo-side { position: sticky; top: 112px; padding-top: 28px; color: #fff; }
.demo-side h2 { margin: 13px 0 0; font-size: clamp(38px, 5vw, 60px); letter-spacing: -.055em; line-height: 1.05; }
.demo-side > p { margin: 23px 0 0; color: #aab5c5; font-size: 15px; line-height: 1.7; }
.demo-side ul { display: grid; gap: 16px; padding: 0; margin: 32px 0 0; list-style: none; }
.demo-side li { position: relative; padding-left: 30px; color: #dbe2eb; font-size: 13px; font-weight: 700; }
.demo-side li::before { content: "✓"; position: absolute; top: -2px; left: 0; width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--shell-teal); color: #fff; font-size: 10px; }
.shell-form { padding: 42px; border-radius: 20px; background: #fff; box-shadow: 0 30px 70px rgba(0, 0, 0, .2); }
.shell-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.shell-form label { display: grid; gap: 8px; color: #344258; font-size: 10px; font-weight: 800; }
.shell-form label > span { color: #ed3d61; }
.shell-form label.full { grid-column: 1 / -1; }
.shell-form input,
.shell-form select,
.shell-form textarea { width: 100%; min-height: 52px; padding: 0 14px; border: 1px solid #ccd7e3; border-radius: 9px; outline: none; background: #fff; color: var(--shell-ink); font-size: 12px; font-weight: 500; }
.shell-form textarea { min-height: 110px; padding-top: 14px; resize: vertical; }
.shell-form input:focus,
.shell-form select:focus,
.shell-form textarea:focus { border-color: var(--shell-teal); box-shadow: 0 0 0 3px rgba(64, 112, 212, .1); }
.shell-form input::placeholder,
.shell-form textarea::placeholder { color: #929cac; }
.shell-consents { display: grid; gap: 13px; padding: 24px 0; margin-top: 25px; border-top: 1px solid #e0e7ee; }
.shell-consents label { display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: 10px; align-items: start; color: #738196; font-size: 9px; font-weight: 500; line-height: 1.6; }
.shell-consents label > span { color: inherit; }
.shell-consents input { width: 18px; min-height: 18px; padding: 0; margin: 0; accent-color: var(--shell-teal); }
.shell-form > .button { width: 100%; min-height: 54px; }
.form-assurance { margin: 12px 0 0; color: #7c899b; font-size: 9px; font-weight: 700; text-align: center; }

/* Pricing page deliberately mirrors the homepage pricing component. */
.pricing-page .standalone-pricing { padding-top: 92px; padding-bottom: 128px; }
.pricing-page .center { text-align: center; }
.pricing-page .section-heading { margin: 0; font-size: clamp(34px, 4vw, 50px); letter-spacing: -.05em; line-height: 1.1; }
.pricing-page .section-subtitle { margin: 14px 0 0; color: var(--shell-muted); font-size: 14px; }
.pricing-page .trust-row { display: flex; align-items: center; justify-content: center; gap: 25px; margin: 32px 0 54px; padding: 18px 24px; border-block: 1px solid #e5ebf0; }
.pricing-page .trust-row img { width: auto; max-width: 105px; height: 24px; object-fit: contain; filter: grayscale(1); opacity: .7; }
.pricing-page .trust-label { color: #8b98a9; font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.pricing-page .price-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; }
.pricing-page .price-card { position: relative; min-width: 0; display: flex; flex-direction: column; padding: 30px 24px 28px; border: 1px solid var(--shell-line); background: #fff; }
.pricing-page .price-card:first-child { border-radius: 18px 0 0 18px; }
.pricing-page .price-card:last-child { border-radius: 0 18px 18px 0; }
.pricing-page .price-card + .price-card { border-left: 0; }
.pricing-page .price-card.featured { z-index: 1; border: 2px solid var(--shell-teal); box-shadow: 0 26px 60px rgba(64, 112, 212,.15); }
.pricing-page .price-ribbon { position: absolute; right: -2px; bottom: 100%; left: -2px; padding: 14px 24px; border-radius: 18px 18px 0 0; background: var(--shell-teal); color: #fff; font-size: 15px; font-weight: 800; }
.pricing-page .price-name { margin-bottom: 2px; font-size: 20px; font-weight: 800; }
.pricing-page .price-team { min-height: 42px; color: var(--shell-muted); font-size: 13px; }
.pricing-page .price { display: flex; flex-wrap: wrap; gap: 3px 8px; align-items: baseline; margin: 20px 0 14px; font-size: clamp(28px, 2.5vw, 36px); font-weight: 800; letter-spacing: -.05em; line-height: 1.08; }
.pricing-page .price-amount { white-space: nowrap; }
.pricing-page .price small { flex: 0 0 auto; color: var(--shell-muted); font-size: 12px; font-weight: 500; letter-spacing: 0; white-space: nowrap; }
.pricing-page .price-meta { min-height: 104px; }
.pricing-page .price-meta p,
.pricing-page .price-services p { position: relative; padding-left: 18px; }
.pricing-page .price-meta p::before,
.pricing-page .price-services p::before { position: absolute; top: .62em; left: 1px; width: 6px; height: 6px; border-radius: 50%; background: var(--shell-teal); box-shadow: 0 0 0 4px rgba(64, 112, 212,.1); content: ""; }
.pricing-page .price-meta p { margin: 0 0 10px; font-size: 13px; line-height: 1.5; }
.pricing-page .price-card .button { width: 100%; margin: 26px 0 0; }
.pricing-page .price-card .cta-assurance { min-height: 18px; margin: 8px 0 22px; color: #758397; font-size: 9px; font-weight: 700; text-align: center; }
.pricing-page .price-services { margin-top: auto; padding-top: 22px; border-top: 1px solid var(--shell-line); }
.pricing-page .price-services strong { display: block; margin-bottom: 13px; font-size: 13px; }
.pricing-page .price-services p { margin: 0 0 10px; color: var(--shell-muted); font-size: 12px; line-height: 1.55; }
.pricing-page .price-footnote { max-width: 960px; margin: 24px auto 0; color: #7d8898; font-size: 9px; text-align: center; }

/* Expanded footer */
.site-footer.shell-footer { padding: 0; background: var(--shell-ink); color: #fff; }
.shell-footer .footer-cta { max-width: 820px; margin: 0 auto; padding: 88px 0 70px; text-align: center; }
.shell-footer .footer-cta h2 { margin: 12px 0 0; font-size: clamp(40px, 4.5vw, 60px); letter-spacing: -.055em; line-height: 1.05; }
.shell-footer .footer-cta p { max-width: 680px; margin: 22px auto 0; color: #9eabbd; font-size: 14px; line-height: 1.7; }
.shell-footer .footer-cta-actions { display: flex; justify-content: center; gap: 12px; margin-top: 30px; }
.button-footer-outline { border-color: #5f6e82; background: transparent; color: #fff !important; }
.button-footer-outline:hover { border-color: #fff; background: rgba(255,255,255,.05); }
.shell-footer .footer-proof { margin-top: 15px; color: #718096; font-size: 10px; font-weight: 700; }
.footer-divider { height: 1px; background: rgba(255, 255, 255, .09); }
/* Blok marki zajmuje pierwsza kolumne w OBU wierszach, dzieki czemu kolumny
   linkow z drugiego wiersza (W praktyce, Wiedza i kontakt) startuja w tej samej
   pionowej linii co Funkcje, a nie pod logotypem. */
.footer-main-expanded { display: grid; grid-template-columns: minmax(210px, 1fr) repeat(3, minmax(0, 1.2fr)); gap: 42px; padding: 60px 0; }
.footer-main-expanded .footer-brand-block { grid-row: 1 / span 2; }
.footer-logo { display: inline-block; width: 178px; }
.footer-logo img { width: 100%; }
.footer-brand-copy { max-width: 300px; margin: 22px 0; color: #8f9db2; font-size: 11px; line-height: 1.75; }
.footer-brand-block .shell-language { display: inline-block; }
.site-footer.shell-footer .footer-brand-block .shell-language-button { border-color: #344156; background: rgba(255,255,255,.03); color: #d9e1ea; }
.footer-brand-block .shell-language-menu { right: auto; bottom: calc(100% + 9px); left: 0; top: auto; }
.footer-column h3 { margin: 3px 0 20px; color: #637188; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.footer-column nav { display: grid; gap: 10px; }
/* CSS columns zamiast grida: przy siatce kazdy wiersz mial wysokosc najwyzszej
   pozycji, wiec dlugie, lamiace sie etykiety (Use Cases) robily wielkie dziury. */
.footer-column nav.footer-link-grid { display: block; columns: 2; column-gap: 22px; }
.footer-column nav.footer-link-grid > a { display: block; margin-bottom: 10px; break-inside: avoid; }
.footer-column a,
.footer-column nav > span { color: #aeb9c8; font-size: 10px; font-weight: 650; line-height: 1.5; }
.footer-column a:hover { color: #fff; }
.footer-bottom { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #68768c; font-size: 9px; }
.footer-disclosure { margin: -4px 0 0; padding: 0 0 22px; color: #5f6d82; font-size: 8px; line-height: 1.55; text-align: center; }
.footer-legal { display: flex; gap: 18px; }
.made-in-eu { display: inline-flex; align-items: center; gap: 8px; color: #aab5c4; font-weight: 700; }
.made-in-eu img { width: 27px; border-radius: 2px; }
.made-in-eu img + img { margin-left: -2px; }

@media (max-width: 1120px) {
  .shell-nav { gap: 11px; }
  .shell-nav .brand { width: 163px; }
  .site-header.shell-header .shell-nav-links > a,
  .site-header.shell-header .nav-mega-trigger { padding-inline: 8px; font-size: 11px; }
  .content-hero-grid { grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr); gap: 42px; }
  .capability-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .standalone-price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 16px; }
  .site-header.shell-header .mega-layout { grid-template-columns: minmax(0, 1fr) 240px; }
  .site-header.shell-header .mega-category-grid { gap: 18px; }
  .site-header.shell-header .mega-category nav { grid-template-columns: 1fr; }
  .footer-main-expanded { grid-template-columns: 1fr 1.3fr 1.3fr; }
  .footer-main-expanded .footer-brand-block { grid-column: 1 / -1; grid-row: auto; }
  .pricing-page .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding-top: 52px; }
  .pricing-page .price-card,
  .pricing-page .price-card:first-child,
  .pricing-page .price-card:last-child { border: 1px solid var(--shell-line); border-radius: 18px; }
  .pricing-page .price-card + .price-card { border-left: 1px solid var(--shell-line); }
  .pricing-page .price-card.featured { margin-top: 0; border: 2px solid var(--shell-teal); border-radius: 0 0 18px 18px; }
}

@media (max-width: 900px) {
  :root { --shell-page: min(700px, calc(100% - 36px)); }
  body.content-page { padding-top: 64px; }
  body.menu-lock { overflow: hidden; }
  .shell-nav { min-height: 63px; }
  .shell-nav .brand { width: 167px; }
  .shell-nav-links,
  .shell-nav > .shell-language,
  .shell-nav > .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .mobile-menu { position: absolute; top: 100%; right: 0; left: 0; width: 100%; height: calc(100dvh - 64px); padding: 18px max(18px, calc((100vw - 700px) / 2)) 30px; overflow-y: auto; border-top: 1px solid #e8edf2; background: #fff; box-shadow: 0 25px 60px rgba(14, 25, 43, .12); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px); transition: opacity .2s ease, transform .22s ease, visibility .2s; }
  .site-header.menu-open .mobile-menu { display: grid; align-content: start; gap: 3px; opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .mobile-menu > a,
  .mobile-menu summary { min-height: 49px; display: flex; align-items: center; padding: 0 13px; border-radius: 9px; color: #27354a; cursor: pointer; font-size: 13px; font-weight: 800; list-style: none; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary::after { content: "+"; margin-left: auto; color: var(--shell-teal); font-size: 18px; font-weight: 500; }
  .mobile-menu details[open] summary { background: #eff9f8; color: var(--shell-teal-deep); }
  .mobile-menu details[open] summary::after { content: "−"; }
  .mobile-subnav { display: grid; gap: 2px; padding: 4px 0 10px 14px; }
  .mobile-subnav a { min-height: 40px; display: flex; align-items: center; padding: 0 13px; border-left: 1px solid #dce8e7; color: #657488; font-size: 11px; font-weight: 650; }
  .mobile-menu > .button { margin-top: 10px; color: #fff; }
  .content-hero { padding: 26px 0 68px; }
  .content-hero-grid { grid-template-columns: 1fr; gap: 48px; padding-top: 48px; }
  .content-hero-grid > div:first-child { max-width: 700px; }
  .app-visual { width: min(650px, 100%); }
  .article-grid { grid-template-columns: 1fr; gap: 0; }
  .article-aside { display: none; }
  .article-content { max-width: 760px; margin: 0 auto; }
  .benefit-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .placeholder-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .use-case-product-visual figcaption { white-space: normal; }
  .demo-layout { grid-template-columns: 1fr; gap: 48px; }
  .demo-side { position: static; max-width: 620px; padding-top: 0; }
  .footer-main-expanded { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-main-expanded .footer-brand-block { grid-column: 1 / -1; grid-row: auto; }
}

@media (max-width: 620px) {
  :root { --shell-page: calc(100% - 32px); }
  body.content-page { padding-top: 58px; }
  .shell-nav { min-height: 57px; }
  .shell-nav .brand { width: 152px; }
  .menu-toggle { width: 40px; height: 40px; }
  .mobile-menu { height: calc(100dvh - 58px); padding-inline: 16px; }
  .content-hero { padding: 21px 0 54px; }
  .breadcrumbs { overflow: hidden; white-space: nowrap; }
  .breadcrumbs span:last-child { overflow: hidden; text-overflow: ellipsis; }
  .content-hero-grid { gap: 38px; padding-top: 38px; }
  .content-hero h1 { font-size: clamp(38px, 11.2vw, 50px); letter-spacing: -.052em; line-height: 1.06; }
  .content-hero-grid > div:first-child > p { margin-top: 18px; font-size: 14px; line-height: 1.65; }
  .hero-actions { display: grid; gap: 8px; margin-top: 25px; }
  .hero-actions .button,
  .hero-actions .text-link { width: 100%; justify-content: center; }
  .app-frame { border-radius: 10px; transform: none; }
  .app-frame-bar { height: 20px; }
  .listing-section,
  .placeholder-list,
  .standalone-pricing,
  .coming-page { padding: 72px 0 82px; }
  .listing-intro { align-items: stretch; flex-direction: column; gap: 24px; margin-bottom: 30px; }
  .listing-intro h2 { font-size: 34px; }
  .card-search { width: 100%; }
  .capability-grid,
  .placeholder-grid { grid-template-columns: 1fr; gap: 13px; }
  .capability-card > .card-static,
  .capability-card > a { min-height: 260px; padding: 24px; border-radius: 14px; }
  .capability-number { top: 24px; right: 24px; }
  .cross-promo { padding-bottom: 76px; }
  .cross-promo-card,
  .article-cta-card { align-items: stretch; flex-direction: column; padding: 36px 28px; border-radius: 18px; }
  .cross-promo-card h2,
  .article-cta-card h2 { font-size: 33px; }
  .article-body { padding: 72px 0 18px; }
  .article-content > section { padding-bottom: 66px; }
  .article-content > #jak-dziala,
  .article-content > .article-faq { margin-top: 40px; }
  .article-content h2 { font-size: 31px; }
  .article-content p { font-size: 15px; line-height: 1.75; }
  .use-cases-hero h1,
  .use-case-detail-hero h1 { font-size: clamp(36px, 10.8vw, 48px); }
  .use-case-list-section { padding: 72px 0 82px; }
  .use-case-visual-label { width: calc(100% - 20px); margin-top: -12px; }
  .use-case-effect { padding: 32px 24px !important; }
  .use-case-story-points-problem,
  .use-case-story-points-solution,
  .use-case-story-points-result,
  .use-case-solution-grid,
  .use-case-result-grid { grid-template-columns: 1fr; }
  .use-case-story-points li { padding: 18px 16px; }
  .use-case-product-visual { margin-top: 8px; }
  .use-case-feature-list { grid-template-columns: 1fr; }
  .benefit-card p { font-size: var(--shell-text-card); }
  .answer-section,
  .example-card { padding: 32px 24px 34px !important; border-radius: 16px; }
  .answer-section::before { left: 24px; }
  .step-list li { grid-template-columns: 38px minmax(0, 1fr); gap: 12px; padding: 17px; }
  .step-list li > span { width: 34px; height: 34px; }
  .article-faq summary { min-height: 64px; padding: 16px; font-size: 14px; }
  .article-faq .faq-answer { padding: 0 16px 18px; }
  .related-head { padding-top: 60px; }
  .article-cta { padding: 76px 0; }
  .coming-card { padding: 35px 25px; }
  .standalone-price-grid { grid-template-columns: 1fr; gap: 48px; }
  .standalone-price-card { padding: 29px 24px 25px; }
  .price-value strong { font-size: 33px; }
  .pricing-page .standalone-pricing { padding-top: 76px; }
  .pricing-page .trust-row { position: relative; width: calc(100% + 36px); justify-content: flex-start; flex-wrap: nowrap; gap: 22px; margin-inline: -18px; margin-bottom: 42px; padding: 40px 18px 14px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-padding-inline: 18px; scroll-snap-type: x proximity; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .pricing-page .trust-row::-webkit-scrollbar { display: none; }
  .pricing-page .trust-label { position: absolute; top: 9px; left: 50%; width: max-content; transform: translateX(-50%); }
  .pricing-page .trust-row img { flex: 0 0 auto; max-width: 88px; height: 21px; scroll-snap-align: start; }
  .pricing-page .price-grid { grid-template-columns: 1fr; gap: 18px; }
  .pricing-page .price-card,
  .pricing-page .price-card:first-child,
  .pricing-page .price-card:last-child { padding: 26px 20px 24px; border-radius: 18px; }
  .pricing-page .price-card.featured { padding-top: 0; overflow: hidden; border: 2px solid var(--shell-teal); }
  .pricing-page .price-ribbon { position: static; margin: 0 -20px 24px; padding: 14px 20px; border-radius: 0; font-size: 14px; }
  .pricing-page .price-team,
  .pricing-page .price-meta { min-height: 0; }
  .standalone-demo { padding: 72px 0; }
  .shell-form { padding: 25px 20px; border-radius: 16px; }
  .shell-form-grid { grid-template-columns: 1fr; gap: 16px; }
  .shell-form label.full { grid-column: auto; }
  .shell-footer .footer-cta { padding: 70px 0 56px; }
  .shell-footer .footer-cta h2 { font-size: 38px; }
  .shell-footer .footer-cta-actions { display: grid; gap: 9px; }
  .footer-main-expanded { grid-template-columns: 1fr; gap: 32px; padding: 45px 0; }
  .footer-main-expanded .footer-brand-block { grid-column: auto; grid-row: auto; }
  .footer-column nav.footer-link-grid { columns: 1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; padding: 22px 0; }
  .footer-legal { order: 3; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   WARSTWA APPLE DLA PODSTRON (2026-08-31)
   Podstrony dostaja ten sam jezyk wizualny co strona glowna: Inter zamiast
   Plus Jakarta, wieksza i gestsza typografia, pigulkowe przyciski, karty bez
   obrysow z miekkim cieniem, spokojne szarosci.
   Wszystko scope'owane na `body.content-page` - strona glowna ma <body> bez
   klasy i trzyma swoja wersje tych regul w arkuszu inline.
   ========================================================================== */
/* Plus Jakarta Sans (naglowki, nawigacja) - samo-hosting zamiast fonts.googleapis.com: brak zewnetrznego
   zadania i cookies Google przy kazdym wejsciu, font-display swap (Core Web Vitals) */
@font-face { font-family: "Plus Jakarta Sans"; font-style: normal; font-weight: 200 800; font-display: swap; src: url("fonts/plus-jakarta-sans-var-latin-ext.woff2") format("woff2"); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: "Plus Jakarta Sans"; font-style: normal; font-weight: 200 800; font-display: swap; src: url("fonts/plus-jakarta-sans-var-latin.woff2") format("woff2"); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter-var-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter-var-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

body.content-page,
body.content-page button,
body.content-page input,
body.content-page select,
body.content-page textarea,
.site-header.shell-header,
.site-header.shell-header *,
.site-footer.shell-footer,
.site-footer.shell-footer * {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---- Typografia ---- */
body.content-page { --ink: #1d1d1f; --muted: #6e6e73; --soft: #f5f5f7; color: var(--ink); font-size: 17px; }
body.content-page h1, body.content-page h2, body.content-page h3 { word-spacing: normal; }
body.content-page .content-hero h1 { font-size: clamp(40px, 5vw, 64px); font-weight: 700; letter-spacing: -.025em; line-height: 1.05; }
body.content-page .content-hero-grid > div:first-child > p { color: var(--muted); font-size: clamp(17px, 1.7vw, 21px); font-weight: 400; line-height: 1.5; }
body.content-page .article-content h2,
body.content-page .listing-intro h2,
body.content-page .related-head h2 { font-size: clamp(30px, 3.4vw, 44px); font-weight: 600; letter-spacing: -.02em; line-height: 1.12; }
body.content-page .article-content p { color: #3a3a3c; font-size: 17px; line-height: 1.65; }
body.content-page .eyebrow,
body.content-page .section-kicker,
body.content-page .capability-eyebrow { color: var(--muted); font-size: 12px; font-weight: 500; letter-spacing: .01em; text-transform: none; }
body.content-page .capability-number { color: #c7c7cc; font-size: 12px; font-weight: 500; letter-spacing: 0; }

/* ---- Przyciski: pigulka 17px regular, bez cieni ---- */
/* Przyciski w jezyku Apple - JEDNO zrodlo prawdy dla strony glownej i podstron.
   Regula w arkuszu inline index.html przegrywala z bazowym `.button` z tego pliku
   (ta sama specyficznosc, pozniejsze wczytanie), przez co czesc przyciskow - m.in.
   CTA w kartach cennika i w stopce - zostawala przy starym stylu 13px/800
   i promieniu 10 px. Szerokosci komponentow zostaja bez zmian. */
.button {
  min-height: 0;
  padding: 11px 22px;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.18;
  text-transform: none;
  box-shadow: none !important;
}
.button:hover { transform: none; }
.button-outline { border: 1px solid rgba(14, 25, 43, .22); background: #fff; }
.button-outline:hover { border-color: var(--ink); background: var(--soft); }
body.content-page .text-link { min-height: 0; color: var(--shell-teal-deep) !important; font-size: 17px; font-weight: 400; }
body.content-page .card-link { color: var(--shell-teal-deep); font-size: 15px; font-weight: 400; letter-spacing: -.01em; }

/* ---- Karty bez obrysow ---- */
body.content-page .capability-card > .card-static,
body.content-page .capability-card > a,
body.content-page .related-card,
body.content-page .step-list li,
body.content-page .benefit-card,
body.content-page .article-aside nav,
body.content-page .card-search,
body.content-page .shell-form,
body.content-page .standalone-price-card,
body.content-page .coming-card {
  border: 0;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(14, 25, 43, .07);
}
body.content-page .capability-card > .card-static::after,
body.content-page .capability-card > a::after { content: none; }
body.content-page .capability-card > a:hover { border: 0; box-shadow: 0 10px 34px rgba(14, 25, 43, .1); transform: translateY(-3px); }
body.content-page .capability-card h3 { font-size: 21px; font-weight: 600; letter-spacing: -.015em; }
body.content-page .capability-card p { color: var(--muted); font-size: 15px; line-height: 1.55; }
body.content-page .capability-icon,
.mega-link-icon { border: 0; background: var(--soft); color: var(--shell-teal-deep); }

/* ---- Sekcja "W skrocie": jasna karta zamiast gradientu z obrysem ---- */
body.content-page .answer-section { border: 0; border-radius: 20px; background: var(--soft); box-shadow: none; }
body.content-page .answer-section::before { background: var(--shell-teal); }
body.content-page .example-card { border: 0; border-radius: 20px; background: var(--soft); box-shadow: none; }

/* ---- Hero podstrony: bez kolorowej poswiaty ---- */
body.content-page .content-hero { background: linear-gradient(180deg, #f7f9fc 0%, #fff 100%); }
body.content-page .content-hero::before { content: none; }
body.content-page .visual-glow { display: none; }
body.content-page .app-frame { border: 0; border-radius: 18px; box-shadow: 0 24px 64px rgba(14, 25, 43, .14); transform: none; }
body.content-page .breadcrumbs { color: var(--muted); font-size: 13px; font-weight: 400; }

/* ---- FAQ w jezyku Apple ---- */
body.content-page .article-faq summary { font-size: 19px; font-weight: 500; letter-spacing: -.01em; }
body.content-page .article-faq details { border-bottom: 1px solid rgba(0, 0, 0, .08); }

/* ---- Ciemne pasy: ten sam granat co stopka ---- */
body.content-page .cross-promo-card,
body.content-page .article-cta-card { border-radius: 24px; background: var(--shell-ink); }

/* ---- Rozwiniete menu (mega) - jak na stronie glownej ---- */
.site-header.shell-header .mega-panel { top: 62px; border: 0; border-radius: 18px; box-shadow: 0 18px 60px rgba(0, 0, 0, .13), 0 0 0 .5px rgba(0, 0, 0, .06); }
.site-header.shell-header .mega-layout { grid-template-columns: minmax(0, 1fr) 320px; min-height: 0; }
.site-header.shell-header .mega-main { padding: 34px 40px 38px; }
.site-header.shell-header .mega-panel-head { padding-bottom: 0; border-bottom: 0; }
.site-header.shell-header .mega-panel-head .eyebrow { display: none; }
.site-header.shell-header .mega-panel-title { margin: 0; font-size: 21px; font-weight: 600; letter-spacing: -.02em; }
.site-header.shell-header .mega-panel-head > a { color: var(--shell-teal); font-size: 13px; font-weight: 400; }
.site-header.shell-header .mega-panel-head > a:hover { text-decoration: underline; }
.site-header.shell-header .mega-main .mega-category-grid {
  display: block;
  columns: 3;
  column-gap: 38px;
  padding-top: 24px;
  gap: 0;
}
.site-header.shell-header .mega-main .mega-category { break-inside: avoid; margin: 0 0 26px; }
.site-header.shell-header .mega-main .mega-category nav { display: grid; grid-template-columns: 1fr; gap: 0; }
.site-header.shell-header #practice-mega .mega-main .mega-category-grid { columns: 2; }
.site-header.shell-header .mega-category-title { margin: 0 0 6px; color: #86868b; font-size: 12px; font-weight: 400; letter-spacing: 0; text-transform: none; }
.site-header.shell-header .mega-link { display: block; min-height: 0; padding: 5px 0; border-radius: 0; background: none !important; color: var(--ink); }
.site-header.shell-header .mega-link strong { font-size: 15px; font-weight: 500; letter-spacing: -.01em; line-height: 1.4; }
.site-header.shell-header .mega-link:hover strong { text-decoration: underline; }
.site-header.shell-header .mega-link-icon,
.site-header.shell-header .mega-arrow { display: none; }
.site-header.shell-header .mega-promo { justify-content: flex-start; padding: 34px 32px 32px; border-left: 1px solid rgba(14, 25, 43, .08); background: #fbfbfd; }
.site-header.shell-header .mega-promo-visual { border: 0; border-radius: 14px; box-shadow: 0 8px 24px rgba(14, 25, 43, .12); }
.site-header.shell-header .mega-promo-title { margin: 20px 0 0; font-size: 17px; font-weight: 600; letter-spacing: -.02em; }
.site-header.shell-header .mega-promo p:not(.mega-promo-title) { margin: 8px 0 20px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.site-header.shell-header .mega-promo .button { align-self: flex-start; width: auto; padding: 10px 20px; font-size: 15px; }

/* ---- Nawigacja i przelacznik jezyka ---- */
.site-header.shell-header .shell-nav-links > a,
.site-header.shell-header .nav-mega-trigger { font-size: 13px; font-weight: 400; letter-spacing: -.01em; }
.site-header.shell-header .shell-nav-links > a,
.site-header.shell-header .nav-mega-trigger { transition: color .18s ease, background-color .18s ease; }
.site-header.shell-header .shell-nav-links > a:hover,
.site-header.shell-header .shell-nav-links > a:focus-visible,
.site-header.shell-header .shell-nav-links > a[aria-current="page"],
.site-header.shell-header .nav-mega-trigger:hover,
.site-header.shell-header .nav-mega-trigger:focus-visible,
.site-header.shell-header .nav-mega-trigger[aria-expanded="true"],
.site-header.shell-header .nav-mega-trigger[aria-current="page"] { background: transparent; color: var(--shell-teal-deep); }
.site-header.shell-header .shell-language-button,
.site-footer.shell-footer .shell-language-button { min-height: 34px; border: 0; border-radius: 980px; background: transparent; color: var(--ink); font-size: 13px; font-weight: 400; }
.site-header.shell-header .shell-language-button:hover { background: var(--soft); }
.shell-globe { width: 15px; height: 15px; color: #86868b; }
.shell-language-menu { border: 0; border-radius: 14px; box-shadow: 0 12px 40px rgba(0, 0, 0, .16), 0 0 0 .5px rgba(0, 0, 0, .06); }
.shell-language-menu a { border-radius: 9px; font-size: 13px; font-weight: 400; color: var(--ink); }
.shell-language-menu a:hover { background: var(--soft); color: var(--ink); }
/* Wyzsza specyficznosc niz `body.content-page .button` - inaczej na podstronach
   CTA w naglowku dostawalo rozmiar przycisku z tresci (17px/44px). */
.site-header.shell-header .shell-nav .nav-cta { min-height: 34px; padding: 0 16px; border-radius: 980px; font-size: 15px; font-weight: 400; letter-spacing: -.01em; box-shadow: none !important; }
.site-header.shell-header .shell-nav .nav-cta:hover { transform: none; }
/* Powloka nie dziedziczy rozmiaru pisma strony - na podstronach body ma 17px,
   na stronie glownej 16px, a naglowek i stopka maja wygladac identycznie. */
.site-header.shell-header,
.site-footer.shell-footer { font-size: 16px; }
.site-footer.shell-footer .footer-column h3 { margin: 3px 0 20px; color: #86868b; font-size: 12px; font-weight: 400; letter-spacing: 0; line-height: 1.4; text-transform: none; }
.site-footer.shell-footer .footer-column a,
.site-footer.shell-footer .footer-column nav > span { color: #d2d2d7; font-size: 13px; font-weight: 400; letter-spacing: -.01em; line-height: 1.5; }
.site-footer.shell-footer .footer-column a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ---- Menu mobilne w jezyku Apple ---- */
@media (max-width: 900px) {
.site-header .menu-toggle { width: 40px; height: 40px; border: 0; border-radius: 980px; background: transparent; }
.site-header .menu-toggle:hover { background: var(--soft); }
.menu-icon { width: 18px; height: 11px; }
.menu-icon span { width: 18px; height: 1.5px; border-radius: 2px; }
.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { top: 5px; opacity: 0; }
.menu-icon span:nth-child(3) { top: 10px; }
.site-header.menu-open .menu-icon span:nth-child(1) { top: 5px; transform: rotate(45deg); }
.site-header.menu-open .menu-icon span:nth-child(3) { top: 5px; transform: rotate(-45deg); }
.mobile-menu { padding-top: 8px; background: #fff; box-shadow: none; border-top: 1px solid rgba(14, 25, 43, .08); }
.site-header.menu-open .mobile-menu { gap: 0; }
.mobile-menu > a,
.mobile-menu summary { min-height: 54px; padding: 0 2px; border-radius: 0; border-bottom: 1px solid rgba(14, 25, 43, .07); color: var(--ink); font-size: 19px; font-weight: 500; letter-spacing: -.02em; }
.mobile-menu summary::after { content: ""; width: 8px; height: 8px; margin-left: auto; margin-right: 6px; border-right: 1.6px solid #86868b; border-bottom: 1.6px solid #86868b; transform: translateY(-2px) rotate(45deg); transition: transform .22s ease; }
.mobile-menu details[open] summary { background: transparent; color: var(--ink); }
.mobile-menu details[open] summary::after { content: ""; transform: translateY(2px) rotate(225deg); }
.mobile-subnav { gap: 0; padding: 6px 0 14px 2px; }
.mobile-subnav a { min-height: 38px; padding: 0 2px; border-left: 0; color: #424245; font-size: 15px; font-weight: 400; letter-spacing: -.01em; }
.mobile-menu > .button { justify-self: start; width: auto; margin-top: 22px; padding: 11px 26px; border-radius: 980px; font-size: 17px; font-weight: 400; }
}

/* ==========================================================================
   SZABLON PODSTRONY - uproszczenie w jezyku Apple (2026-08-31, runda 19)
   Bylo: spis tresci w ramce, karta "W skrocie", cztery boksy krokow, trzy
   karty korzysci, karta przykladu, kafelkowe FAQ, kafelki powiazanych, ciemne
   CTA - i zaraz pod nim drugie ciemne CTA w stopce. Osiem roznych pudelek na
   jednym ekranie, nie wiadomo gdzie patrzec.
   Jest: jedna kolumna tresci, wloskowate linie zamiast ramek, jeden akcent
   (przycisk), FAQ dokladnie jak na stronie glownej.
   ========================================================================== */
/* Ta sama klasa siedzi na .shell-container, wiec musi respektowac margines
   strony (--shell-page), inaczej na telefonie tresc dotykala krawedzi ekranu. */
body.content-page .article-single { width: min(760px, var(--shell-page)); margin-inline: auto; }
body.content-page .article-body { padding: 84px 0 40px; }
body.content-page .article-body section { padding-bottom: 0; margin-bottom: 88px; scroll-margin-top: 110px; }
body.content-page .article-body section:last-child { margin-bottom: 0; }
body.content-page .article-content h2,
body.content-page .article-single h2 { margin: 0 0 22px; font-size: clamp(28px, 3vw, 38px); font-weight: 600; letter-spacing: -.02em; line-height: 1.14; }
body.content-page .article-single p { margin: 0 0 16px; color: #3a3a3c; font-size: 17px; line-height: 1.65; }
body.content-page .article-single p:last-child { margin-bottom: 0; }

/* Otwarcie: definicja czytana jako wieksze zdanie, bez karty i bez nadlinii */
body.content-page .article-lede { padding-bottom: 0 !important; }
body.content-page .article-lede p { color: var(--ink); font-size: clamp(19px, 2vw, 21px); line-height: 1.5; }
body.content-page .answer-section::before { content: none; }
body.content-page .article-lede,
body.content-page .example-card { background: transparent !important; box-shadow: none !important; border-radius: 0; padding: 0; }
body.content-page .section-kicker { display: none; }

/* Kroki: numer i tekst w jednym wierszu, rozdzielone wloskowata linia */
body.content-page .step-list { display: block; margin: 0; padding: 0; list-style: none; }
body.content-page .step-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: baseline;
  gap: 0 18px;
  padding: 18px 0;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, .1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body.content-page .step-list li:last-child { border-bottom: 1px solid rgba(0, 0, 0, .1); }
body.content-page .step-list li > span {
  width: auto;
  height: auto;
  display: block;
  background: transparent;
  color: #86868b;
  font-size: 15px;
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}
body.content-page .step-list li p { margin: 0; font-size: 17px; line-height: 1.55; }

/* Korzysci: trzy akapity obok siebie, bez kart i bez ptaszkow */
body.content-page .benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px 40px; }
body.content-page .benefit-card {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #3a3a3c;
  font-size: 17px;
  line-height: 1.65;
}
body.content-page .benefit-card strong { display: block; margin-bottom: 6px; color: var(--ink); font-weight: 600; }
body.content-page .benefit-card .check-icon { display: none; }

/* Przyklad: cytat-akapit oddzielony linia, bez szarej apli */
body.content-page .example-card { padding: 0 !important; color: var(--ink); }
body.content-page .example-card p { color: var(--ink); font-size: clamp(19px, 2vw, 21px); line-height: 1.55; }

/* FAQ 1:1 ze strona glowna: same wloskowate linie, pytanie 21px, szewron */
body.content-page .article-faq .faq-list { display: block; width: 100%; margin: 0; border: 0; }
body.content-page .article-faq details,
body.content-page .article-faq details[open] {
  overflow: visible;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, .12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body.content-page .article-faq details:last-child { border-bottom: 1px solid rgba(0, 0, 0, .12); }
body.content-page .article-faq summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 0;
  padding: 24px 46px 24px 0;
  color: var(--ink);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}
body.content-page .article-faq summary::-webkit-details-marker { display: none; }
body.content-page .article-faq summary::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  width: 13px;
  height: 13px;
  margin-top: -8px;
  border-right: 2px solid #6e6e73;
  border-bottom: 2px solid #6e6e73;
  border-radius: 2px;
  transform: rotate(45deg);
  transition: transform .3s cubic-bezier(.32, .72, 0, 1);
}
body.content-page .article-faq details[open] summary::before { margin-top: -2px; transform: rotate(-135deg); }
body.content-page .article-faq .faq-plus { display: none; }
body.content-page .article-faq .faq-answer { padding: 0 60px 28px 0; color: #6e6e73; font-size: 17px; line-height: 1.55; }
body.content-page .article-faq .faq-answer p { color: inherit; font-size: inherit; margin: 0; }

/* Powiazane: lista wierszy z wloskowata linia zamiast kafelkow */
body.content-page .related-section { padding: 0 0 96px; background: transparent; }
body.content-page .related-section h2 { margin-bottom: 6px; }
body.content-page .related-list { display: block; }
body.content-page .related-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, .1);
  color: var(--ink);
}
body.content-page .related-row:last-child { border-bottom: 1px solid rgba(0, 0, 0, .1); }
body.content-page .related-name { font-size: 21px; font-weight: 600; letter-spacing: -.01em; }
body.content-page .related-go { color: var(--shell-teal); font-size: 17px; transition: transform .2s ease; }
body.content-page .related-row:hover .related-name { text-decoration: underline; }
body.content-page .related-row:hover .related-go { transform: translateX(4px); }

/* Hero podstrony: kadr bez paska przegladarki, tak jak na stronie glownej */
body.content-page .app-frame-bar { display: none; }

@media (max-width: 900px) {
  body.content-page .article-body { padding: 60px 0 30px; }
  body.content-page .article-body section { margin-bottom: 56px; }
  body.content-page .benefit-grid { grid-template-columns: 1fr; gap: 22px; }
  body.content-page .related-section { padding-bottom: 72px; }
}

/* Naglowek i stopka to WSPOLNA powloka - typografia musi byc identyczna na
   stronie glownej i na podstronach. Reguly w arkuszu inline index.html
   przegrywaly, bo site-shell.css laduje sie pozniej przy tej samej
   specyficznosci - dlatego jedyne miejsce prawdy jest tutaj. */
.site-header.shell-header .shell-nav-links > a,
.site-header.shell-header .nav-mega-trigger,
.site-header.shell-header .shell-language-button,
.site-footer.shell-footer .shell-language-button,
.site-header.shell-header .mega-link strong,
.site-header.shell-header .mega-category-title {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ==========================================================================
   STRONY ZBIORCZE - hero z tasma zdjec, karty i blok "Warto poznac takze"
   (2026-08-31, runda 28). Wzorzec: apple.com/business.
   ========================================================================== */

/* ---- Hero: ciemny pas z przewijana tasma kadrow, pod nia tytul ----
   Kolor tla ten sam co sekcja "Task Manager w praktyce" na stronie glownej. */
body.content-page .listing-hero {
  position: relative;
  overflow: hidden;
  padding: 0 0 clamp(56px, 7vw, 88px);
  background: var(--shell-ink);
  color: #fff;
}
body.content-page .listing-hero::before { content: none; }

body.content-page .listing-hero .breadcrumbs { color: rgba(255, 255, 255, .55); }
body.content-page .listing-hero .breadcrumbs a { color: rgba(255, 255, 255, .55); }
body.content-page .listing-hero .breadcrumbs a:hover { color: #fff; }
body.content-page .listing-hero .breadcrumbs [aria-current="page"] { color: rgba(255, 255, 255, .8); }

.listing-hero-copy { max-width: 900px; padding-top: clamp(20px, 3vw, 38px); }
body.content-page .listing-hero-copy h1 { margin: 0; color: #fff; }
body.content-page .listing-hero-copy p { margin: 20px 0 0; max-width: 720px; color: rgba(255, 255, 255, .72); font-size: clamp(17px, 1.7vw, 21px); line-height: 1.5; }
body.content-page .listing-hero-copy .hero-actions { margin-top: 30px; }
body.content-page .listing-hero-copy .text-link { color: #fff !important; }

/* ---- Mniejszy odstep miedzy hero a lista ---- */
body.content-page .listing-section { padding: clamp(56px, 6vw, 76px) 0 clamp(72px, 8vw, 96px); }

/* ---- Karty: bez numeracji, spokojniejsze niz dotad ---- */
body.content-page .capability-card > a { min-height: 0; padding: 30px 28px 28px; border-radius: 20px; }
body.content-page .capability-card .capability-icon { width: 40px; height: 40px; border-radius: 12px; }
body.content-page .capability-card .capability-icon svg { width: 20px; height: 20px; }
body.content-page .capability-card h3 { margin-top: 22px; }
body.content-page .capability-card p { margin-top: 10px; }
body.content-page .capability-card .card-link { padding-top: 22px; }

/* ---- "Warto poznac takze": jasna karta, tekst po lewej, wizual po prawej ---- */
body.content-page .cross-promo { padding: 0 0 clamp(76px, 9vw, 112px); }
body.content-page .cross-promo-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(36px, 4.5vw, 68px);
  overflow: hidden;      /* kola tarczy AI wychodza poza karte */
  border-radius: 28px;
  /* Delikatny gradient zamiast ciemnej plachty - blok ma zapraszac,
     a nie konkurowac z ciemnym hero na gorze strony. */
  background: radial-gradient(120% 140% at 0% 0%, #eaf0fb 0%, #f5f5f7 55%, #f5f5f7 100%);
  color: var(--ink);
}
body.content-page .cross-copy .eyebrow { color: var(--muted); }
body.content-page .cross-promo-card h2 { margin: 14px 0 0; color: var(--ink); font-size: clamp(28px, 3.2vw, 40px); font-weight: 600; letter-spacing: -.02em; line-height: 1.12; }
body.content-page .cross-promo-card p { margin: 16px 0 0; max-width: 460px; color: var(--muted); font-size: 17px; line-height: 1.55; }
.cross-link { display: inline-flex; align-items: center; gap: 4px; margin-top: 22px; color: var(--shell-teal-deep); font-size: 17px; font-weight: 400; letter-spacing: -.01em; }
.cross-link span { font-size: 20px; line-height: 1; translate: 0 -1px; transition: transform .2s ease; }
.cross-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.cross-link:hover span { transform: translateX(3px); }

.cross-visual { display: flex; justify-content: center; min-width: 0; }
body.content-page .cross-visual .app-frame { width: 100%; border-radius: 16px; box-shadow: 0 22px 50px rgba(14, 25, 43, .16); }

/* Sygnet Asystenta AI: skosny pierscien z gradientem marki. Obraca sie powoli
   wokol wlasnej osi i lekko "oddycha" - ten sam charakter co znak w aplikacji. */
/* Sygnet AI siedzi na cichej "tarczy" z koncentrycznych kol - ten sam chwyt,
   ktorym Apple buduje tlo kafla Business. Kola wychodza poza karte, dlatego
   karta przycina (overflow: hidden + jej wlasny promien). */
.cross-visual--ai { position: relative; align-items: center; }
.cross-visual--ai::before,
.cross-visual--ai::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cross-visual--ai::before {
  width: 190%;
  background: radial-gradient(circle, rgba(64, 112, 212, .09) 0%, rgba(64, 112, 212, .05) 46%, rgba(64, 112, 212, 0) 70%);
}
.cross-visual--ai::after {
  width: 128%;
  border: 1px solid rgba(64, 112, 212, .12);
  box-shadow: 0 0 0 clamp(26px, 3vw, 48px) rgba(64, 112, 212, .045);
}
.cross-visual--ai .ai-orb { position: relative; z-index: 1; }
.ai-orb { display: block; width: clamp(150px, 20vw, 230px); aspect-ratio: 1; }
.ai-orb img { width: 100%; height: 100%; animation: ai-orb-spin 14s linear infinite, ai-orb-breathe 4.5s ease-in-out infinite; }
@keyframes ai-orb-spin { to { transform: rotate(360deg); } }
@keyframes ai-orb-breathe { 0%, 100% { opacity: .92; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .ai-orb img { animation: none; }
}

@media (max-width: 900px) {
  body.content-page .cross-promo-card { grid-template-columns: 1fr; text-align: left; }
  body.content-page .cross-visual { order: -1; }
  .ai-orb { width: clamp(120px, 34vw, 170px); }
}

/* ==========================================================================
   Warianty hero i bloku "Warto poznac takze" (2026-08-31, runda 30)
   ========================================================================== */

/* ---- Hero dzialu AI: jasny, z sygnetem na tarczy z okregow ----
   Ten sam jezyk co blok "Zobacz, jak Asystent AI wspiera Twoj zespol":
   chlodny gradient, koncentryczne kola, obracajacy sie sygnet. Tasmy nie ma. */
body.content-page .listing-hero--ai {
  padding: clamp(22px, 2.6vw, 40px) 0 clamp(56px, 7vw, 88px);
  background: radial-gradient(120% 130% at 88% 12%, #e6edfa 0%, #eff1f6 46%, #f5f5f7 100%);
  color: var(--ink);
}
body.content-page .listing-hero--ai .breadcrumbs,
body.content-page .listing-hero--ai .breadcrumbs a { color: var(--muted); }
body.content-page .listing-hero--ai .breadcrumbs a:hover { color: var(--ink); }
body.content-page .listing-hero--ai .breadcrumbs [aria-current="page"] { color: var(--ink); }
body.content-page .listing-hero--ai .listing-hero-copy { padding-top: clamp(34px, 5vw, 64px); padding-bottom: clamp(20px, 3vw, 40px); max-width: 660px; }
body.content-page .listing-hero--ai .listing-hero-copy h1 { color: var(--ink); }
body.content-page .listing-hero--ai .listing-hero-copy p { color: var(--muted); }
body.content-page .listing-hero--ai .listing-hero-copy .text-link { color: var(--shell-teal-deep) !important; }

/* Sygnet siedzi po prawej, poza kolumna tresci - na waskim ekranie schodzi
   pod tekst, zeby nie zabieral mu szerokosci. */
.hero-ai-visual {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: clamp(24px, 7vw, 130px);
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  pointer-events: none;
}
.hero-ai-visual::before,
.hero-ai-visual::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.hero-ai-visual::before {
  width: 200%;
  background: radial-gradient(circle, rgba(64, 112, 212, .1) 0%, rgba(64, 112, 212, .05) 46%, rgba(64, 112, 212, 0) 70%);
}
.hero-ai-visual::after {
  width: 132%;
  border: 1px solid rgba(64, 112, 212, .13);
  box-shadow: 0 0 0 clamp(28px, 3.4vw, 56px) rgba(64, 112, 212, .05);
}
.hero-ai-visual .ai-orb { position: relative; z-index: 1; width: clamp(150px, 19vw, 260px); }
body.content-page .listing-hero--ai .shell-container { position: relative; z-index: 1; }

@media (max-width: 900px) {
  /* Sygnet schodzi POD tresc. W zwyklym przeplywie ladowalby nad okruszkami
     (jest pierwszym dzieckiem sekcji), a okruszki maja byc na samej gorze -
     stad kolumna flex i jawna kolejnosc. */
  body.content-page .listing-hero--ai { display: flex; flex-direction: column; }
  body.content-page .listing-hero--ai .shell-container { order: 1; }
  .hero-ai-visual { order: 2; position: static; margin: clamp(30px, 7vw, 52px) auto 0; transform: none; }
  .hero-ai-visual .ai-orb { width: clamp(130px, 34vw, 190px); }
  body.content-page .listing-hero--ai .listing-hero-copy { max-width: none; padding-bottom: 0; }
}

/* ---- Centrum wiedzy: artykul instrukcji ----
   Tresc jest gestsza niz na podstronach opisowych (listy krokow, tabele, cytaty),
   wiec dostaje wlasne odstepy - ale ten sam stopien pisma, co reszta serwisu. */
body.content-page .instrukcja h2 { margin: 56px 0 18px; font-size: clamp(24px, 2.4vw, 30px); font-weight: 600; letter-spacing: -.02em; line-height: 1.2; }
body.content-page .instrukcja h2:first-child { margin-top: 0; }
body.content-page .instrukcja h3 { margin: 34px 0 12px; font-size: 21px; font-weight: 600; letter-spacing: -.01em; }
body.content-page .instrukcja h4 { margin: 26px 0 10px; font-size: 17px; font-weight: 600; }
body.content-page .instrukcja p { margin: 0 0 16px; color: #3a3a3c; font-size: 17px; line-height: 1.65; }
body.content-page .instrukcja ul,
body.content-page .instrukcja ol { margin: 0 0 18px; padding-left: 22px; color: #3a3a3c; font-size: 17px; line-height: 1.65; }
body.content-page .instrukcja li { margin-bottom: 8px; }
body.content-page .instrukcja li > ul,
body.content-page .instrukcja li > ol { margin: 8px 0 0; }
body.content-page .instrukcja li::marker { color: var(--muted); }
body.content-page .instrukcja strong { color: var(--ink); font-weight: 600; }
body.content-page .instrukcja a { color: var(--shell-teal-deep); }
body.content-page .instrukcja a:hover { text-decoration: underline; }
body.content-page .instrukcja code {
  padding: 2px 6px;
  border-radius: 5px;
  background: var(--soft);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .9em;
}
body.content-page .instrukcja pre {
  margin: 0 0 20px;
  padding: 18px 20px;
  overflow-x: auto;
  border-radius: 12px;
  background: var(--shell-ink);
}
body.content-page .instrukcja pre code { padding: 0; background: transparent; color: #e6ebf3; font-size: 14px; line-height: 1.6; }
/* Uwaga na marginesie tresci - kreska z boku zamiast apli, zeby nie robic kolejnego boksu. */
body.content-page .instrukcja blockquote {
  margin: 0 0 20px;
  padding: 2px 0 2px 20px;
  border-left: 2px solid rgba(64, 112, 212, .35);
}
body.content-page .instrukcja blockquote p { margin: 0; color: var(--muted); }
/* Tabela przewija sie we wlasnym pojemniku - strona nigdy nie jedzie w bok. */
.tabela-przewijana { margin: 0 0 22px; overflow-x: auto; }
body.content-page .instrukcja table { width: 100%; border-collapse: collapse; font-size: 15px; }
body.content-page .instrukcja th,
body.content-page .instrukcja td { padding: 11px 14px; border-bottom: 1px solid rgba(0, 0, 0, .1); text-align: left; vertical-align: top; }
body.content-page .instrukcja th { color: var(--muted); font-size: 13px; font-weight: 600; white-space: nowrap; }
body.content-page .instrukcja td { color: #3a3a3c; line-height: 1.55; }

/* ---- Centrum wiedzy: spis tematow ---- */
body.content-page .wiedza-grupa { margin-top: 64px; }
body.content-page .wiedza-grupa:first-of-type { margin-top: 40px; }
body.content-page .wiedza-grupa-head { margin-bottom: 24px; }
body.content-page .wiedza-grupa-head h2 { margin: 0; font-size: clamp(24px, 2.4vw, 30px); font-weight: 600; letter-spacing: -.02em; }
body.content-page .wiedza-grupa-head p { margin: 8px 0 0; color: var(--muted); font-size: 17px; }

@media (max-width: 620px) {
  body.content-page .instrukcja h2 { margin-top: 44px; }
  body.content-page .wiedza-grupa { margin-top: 48px; }
}

/* ---- Hero listingu ze zdjeciem na calej powierzchni ----
   Zdjecie jest tlem sekcji, tresc lezy na nim. Ten sam zabieg co w kaflu
   "Warto poznac takze": przyciemnienie od lewej daje kontrast pod napisem,
   prawa strona kadru zostaje czytelna. */
body.content-page .listing-hero--photo { padding-top: clamp(22px, 2.6vw, 40px); }
.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
body.content-page .listing-hero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(9, 15, 26, .88) 0%, rgba(9, 15, 26, .72) 34%, rgba(9, 15, 26, .34) 68%, rgba(9, 15, 26, .2) 100%);
}
body.content-page .listing-hero--photo > .shell-container { position: relative; z-index: 2; }
body.content-page .listing-hero--photo .listing-hero-copy { padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(10px, 2vw, 28px); }
body.content-page .listing-hero--photo .ai-mark { z-index: 3; right: clamp(12px, 2vw, 24px); bottom: clamp(12px, 2vw, 20px); }

@media (max-width: 760px) {
  /* Waski kadr pokazuje juz tylko srodek zdjecia, wiec przyciemnienie idzie z gory. */
  body.content-page .listing-hero--photo::after {
    background: linear-gradient(180deg, rgba(9, 15, 26, .52) 0%, rgba(9, 15, 26, .76) 45%, rgba(9, 15, 26, .9) 100%);
  }
}

/* ---- Wizerunek w prawej kolumnie megamenu ----
   Kafel jest pionowy, bo stoi w nim cala sylwetka. Postac dotyka dolnej krawedzi
   i lezy na tym samym gradiencie co hero dzialu, wiec menu i podstrona mowia
   tym samym jezykiem. */
.mega-promo-visual--osoba {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 0;
  background: radial-gradient(120% 120% at 72% 14%, #e6edfa 0%, #eff1f6 50%, #f5f5f7 100%);
  box-shadow: none;
}
.mega-promo-visual--osoba::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 50%;
  width: 74%;
  aspect-ratio: 1;
  border: 1px solid rgba(64, 112, 212, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(64, 112, 212, .045);
  transform: translateX(-50%);
}
.mega-promo-visual--osoba img {
  position: absolute;
  z-index: 1;
  top: 5%;
  left: 50%;
  width: auto;
  height: 122%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: top;
  transform: translateX(-50%);
}

/* ---- Sygnet AI w prawej kolumnie megamenu ----
   Ten sam jezyk co hero /ai, w miniaturze kafla promo. */
.mega-promo-visual--ai {
  display: grid;
  place-items: center;
  aspect-ratio: 1.74 / 1;
  border: 0;
  background: radial-gradient(120% 130% at 78% 18%, #e6edfa 0%, #eff1f6 48%, #f5f5f7 100%);
  box-shadow: none;
}
.mega-promo-visual--ai::before {
  content: "";
  position: absolute;
  width: 46%;
  aspect-ratio: 1;
  border: 1px solid rgba(64, 112, 212, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(64, 112, 212, .05);
}
.mega-promo-visual--ai .ai-orb { position: relative; z-index: 1; width: 34%; }
.mega-promo-visual { position: relative; }
.mega-promo-visual .ai-mark { right: 7px; bottom: 7px; }
.mega-promo-visual .ai-mark-btn { width: 22px; height: 22px; }
.mega-promo-visual .ai-mark-btn svg { width: 13px; height: 13px; }

/* ---- Hero z postacia w koszulce TM (/materialy) ----
   Ten sam gradient i kola co hero /ai, tyle ze w srodku stoi czlowiek.
   Postac wychodzi poza tarcze kol i dotyka dolnej krawedzi sekcji. */
body.content-page .listing-hero--person {
  /* Sekcja musi byc na tyle wysoka, zeby zmiescila cala postac - inaczej
     overflow ucina glowe. */
  min-height: clamp(400px, 36vw, 500px);
  padding-bottom: 0;
  overflow: hidden;
}
body.content-page .listing-hero--person .listing-hero-copy { padding-bottom: clamp(40px, 5vw, 64px); max-width: 620px; }
body.content-page .listing-hero--person .eyebrow { color: var(--shell-teal-deep); }

.hero-person-visual {
  position: absolute;
  z-index: 0;
  right: clamp(12px, 6vw, 118px);
  bottom: 0;
  display: grid;
  place-items: end center;
}
.hero-person-visual::before {
  content: "";
  position: absolute;
  bottom: clamp(30px, 6vw, 90px);
  left: 50%;
  width: clamp(300px, 34vw, 470px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64, 112, 212, .1) 0%, rgba(64, 112, 212, .05) 46%, rgba(64, 112, 212, 0) 70%);
  transform: translateX(-50%);
}
.hero-person-visual::after {
  content: "";
  position: absolute;
  bottom: clamp(30px, 6vw, 90px);
  left: 50%;
  width: clamp(210px, 23vw, 320px);
  aspect-ratio: 1;
  border: 1px solid rgba(64, 112, 212, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 clamp(20px, 2.6vw, 44px) rgba(64, 112, 212, .05);
  transform: translateX(-50%);
}
.hero-person-visual img { position: relative; z-index: 1; display: block; width: auto; height: clamp(320px, 31vw, 430px); }
.hero-person-visual .ai-mark { right: 4px; bottom: 12px; }

@media (max-width: 900px) {
  /* Postac schodzi POD tresc - w zwyklym przeplywie ladowalaby nad okruszkami. */
  body.content-page .listing-hero--person { display: flex; flex-direction: column; }
  body.content-page .listing-hero--person .shell-container { order: 1; }
  body.content-page .listing-hero--person .listing-hero-copy { max-width: none; padding-bottom: 0; }
  .hero-person-visual { order: 2; position: static; margin: clamp(26px, 6vw, 44px) auto 0; }
  .hero-person-visual img { width: auto; height: clamp(300px, 62vw, 420px); }
  .hero-person-visual::before,
  .hero-person-visual::after { bottom: clamp(20px, 5vw, 40px); }
  .hero-person-visual::before { width: clamp(260px, 62vw, 380px); }
  .hero-person-visual::after { width: clamp(180px, 43vw, 260px); }
}

/* ---- "Warto poznac takze" ze zdjeciem zespolu (wzorzec kafli apple.com/business) ----
   Zdjecie wypelnia cala karte, tekst lezy na nim. Przyciemnienie idzie od lewej,
   zeby napis mial kontrast, a prawa strona kadru zostala czytelna. */
body.content-page .cross-promo-card--photo {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  min-height: clamp(320px, 34vw, 460px);
  padding: clamp(32px, 4vw, 60px);
  background: var(--shell-ink);
  color: #fff;
}
.cross-photo { position: absolute; inset: 0; z-index: 0; }
/* Zdjecia sa kadrowane pod ten kafel (21:9), wiec domyslnie srodek. Gdyby ktores
   mialo glowy wyzej lub nizej, sekcja moze nadpisac --kadr. */
.cross-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% var(--kadr, 50%); }
body.content-page .cross-promo-card--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(9, 15, 26, .84) 0%, rgba(9, 15, 26, .66) 38%, rgba(9, 15, 26, .22) 72%, rgba(9, 15, 26, .12) 100%);
}
body.content-page .cross-promo-card--photo .cross-copy { position: relative; z-index: 2; max-width: 560px; }
body.content-page .cross-promo-card--photo .eyebrow { color: rgba(255, 255, 255, .68); }
body.content-page .cross-promo-card--photo h2 { color: #fff; }
body.content-page .cross-promo-card--photo p { color: rgba(255, 255, 255, .78); }
body.content-page .cross-promo-card--photo .cross-link { color: #fff; }
body.content-page .cross-promo-card--photo .ai-mark { z-index: 3; right: 16px; bottom: 16px; }

@media (max-width: 620px) {
  body.content-page .cross-promo-card--photo { min-height: 380px; }
  body.content-page .cross-promo-card--photo::after {
    background: linear-gradient(180deg, rgba(9, 15, 26, .35) 0%, rgba(9, 15, 26, .74) 46%, rgba(9, 15, 26, .9) 100%);
  }
}

/* ---- Oznaczenie grafik tworzonych z pomoca AI (art. 50 aktu o AI) ----
   Do tej pory znacznik zyl tylko w arkuszu strony glownej; od kiedy zdjecia
   pojawily sie takze na stronach zbiorczych, jego style musza byc we wspolnej
   powloce. Ikona (i) jest widoczna zawsze, opis otwiera sie na hover, focus
   i klik - inaczej na dotyku bylby nieosiagalny. */
.ai-mark { position: absolute; z-index: 3; right: 10px; bottom: 10px; }
.ai-mark-btn {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .42);
  color: #fff;
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background .2s ease;
}
.ai-mark-btn:hover { background: rgba(0, 0, 0, .62); }
.ai-mark-btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.ai-mark-btn svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; }
.ai-mark-tip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  width: max-content;
  max-width: min(260px, 70vw);
  padding: 9px 12px;
  border-radius: 12px;
  background: rgba(28, 28, 30, .94);
  color: #f5f5f7;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.ai-mark:hover .ai-mark-tip,
.ai-mark-btn:focus-visible + .ai-mark-tip,
.ai-mark-btn[aria-expanded="true"] + .ai-mark-tip { opacity: 1; visibility: visible; transform: translateY(0); }
.ai-mark--dark .ai-mark-btn { background: rgba(255, 255, 255, .18); }
.ai-mark--dark .ai-mark-btn:hover { background: rgba(255, 255, 255, .3); }

/* ==========================================================================
   Blog (tmp/build-blog.mjs): listing, kategorie, artykul
   Ten sam jezyk, co podstrony „W praktyce": hero ze zdjeciem (listing-hero--photo),
   jedna kolumna article-single, Inter, hairline'y, szare panele (--soft), zero kart
   z cieniami i obramowaniami. Tabele i listy dziedzicza krój i kolor tekstu.
   ========================================================================== */
body.content-page .blog-hero .listing-hero-copy { max-width: 820px; }
body.content-page .blog-hero--listing .listing-hero-copy { padding-top: clamp(60px, 9vw, 120px); padding-bottom: clamp(24px, 4vw, 48px); }
body.content-page .blog-hero--listing h1 { font-size: clamp(44px, 5.4vw, 68px); letter-spacing: -.03em; }
body.content-page .blog-hero .eyebrow { color: rgba(255, 255, 255, .78); }
body.content-page.blog-artykul .listing-hero-copy h1 { font-size: clamp(34px, 4.4vw, 58px); letter-spacing: -.028em; line-height: 1.06; text-wrap: balance; }
body.content-page.blog-artykul .listing-hero-copy p { max-width: 680px; }
.blog-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 0; margin-top: 26px; color: rgba(255, 255, 255, .72); font-size: 14px; font-weight: 500; }
.blog-meta > * { white-space: nowrap; }
.blog-meta > * + *::before { content: "·"; margin: 0 10px; color: rgba(255, 255, 255, .5); }   /* separator w pseudoelemencie - nie zostaje sam na koncu wiersza */
.blog-meta > span:first-child { color: #fff; font-weight: 600; }
body.content-page .blog-hero .hero-photo img { object-position: 50% 38%; }

/* pastylki kategorii: jasny pasek pod hero, pigulki jak przyciski strony */
.blog-kategorie { border-bottom: 1px solid rgba(0, 0, 0, .08); background: #fff; }
.blog-kategorie .shell-container { display: flex; flex-wrap: wrap; gap: 8px; padding: 18px 0; }
.blog-kategorie a { display: inline-flex; min-height: 38px; align-items: center; gap: 7px; padding: 0 16px; border-radius: 999px; background: var(--soft, #f5f5f7); color: var(--ink, #1d1d1f); font-size: 14px; font-weight: 500; text-decoration: none; transition: background .2s ease, color .2s ease; }
.blog-kategorie a span { color: var(--muted, #6e6e73); font-size: 12px; font-weight: 500; }
.blog-kategorie a:hover { background: #e8e8ed; }
.blog-kategorie a[aria-current="page"] { background: var(--ink, #1d1d1f); color: #fff; }
.blog-kategorie a[aria-current="page"] span { color: rgba(255, 255, 255, .6); }

/* listing: wyrozniony najnowszy + siatka 3 kolumn, karty bez ramek */
.blog-lista { padding: clamp(40px, 5vw, 72px) 0 clamp(72px, 8vw, 112px); }
.blog-wyroznione { margin-bottom: clamp(40px, 5vw, 64px); }
.blog-siatka { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(28px, 3vw, 44px) 28px; }
.blog-karta { min-width: 0; }
.blog-karta > a { display: flex; flex-direction: column; gap: 18px; color: inherit; text-decoration: none; }
.blog-karta-obraz { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 18px; background: var(--soft, #f5f5f7); }
.blog-karta-obraz img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.22, 1, .36, 1); }
.blog-karta > a:hover .blog-karta-obraz img { transform: scale(1.035); }
.blog-karta-tekst { display: flex; flex-direction: column; gap: 8px; }
.blog-karta-meta { display: flex; flex-wrap: wrap; gap: 6px 12px; color: var(--muted, #6e6e73); font-size: 13px; font-weight: 500; }
.blog-karta-kat { color: var(--shell-teal-deep); font-weight: 600; }
body.content-page .blog-karta h3 { margin: 0; font-size: 21px; font-weight: 600; letter-spacing: -.02em; line-height: 1.25; }
body.content-page .blog-karta h2 { margin: 0; font-size: clamp(28px, 3.4vw, 44px); font-weight: 600; letter-spacing: -.025em; line-height: 1.12; text-wrap: balance; }
.blog-karta > a:hover h2,
.blog-karta > a:hover h3 { text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 4px; }
.blog-karta-zajawka { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 4; color: var(--muted, #6e6e73); font-size: 15px; line-height: 1.55; }
.blog-karta .ai-mark { right: 10px; bottom: 10px; }
.blog-karta--duza > a { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: center; gap: clamp(28px, 4vw, 56px); }
.blog-karta--duza .blog-karta-obraz { border-radius: 22px; }
.blog-karta--duza .blog-karta-tekst { gap: 14px; }
.blog-karta--duza .blog-karta-zajawka { -webkit-line-clamp: 4; font-size: 17px; line-height: 1.55; }
.blog-karta-czytaj { margin-top: 6px; color: var(--shell-teal-deep); font-size: 15px; font-weight: 600; }
.blog-karta--duza .ai-mark { right: 12px; bottom: 12px; }

/* artykul: jedna kolumna jak w W praktyce, typografia dziedziczona z article-single */
body.content-page .blog-body { padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 80px); }
body.content-page .blog-tresc > * { margin: 0; }
body.content-page .blog-tresc > * + * { margin-top: 20px; }
body.content-page .blog-tresc > h2 { margin-top: clamp(48px, 6vw, 72px); font-size: clamp(28px, 3vw, 38px); font-weight: 600; letter-spacing: -.02em; line-height: 1.14; scroll-margin-top: 110px; text-wrap: balance; }
body.content-page .blog-tresc > h3 { margin-top: 40px; font-size: 22px; font-weight: 600; letter-spacing: -.015em; line-height: 1.3; scroll-margin-top: 110px; }
body.content-page .blog-tresc > h2 + h3 { margin-top: 24px; }
body.content-page .blog-tresc p { margin: 20px 0 0; color: #3a3a3c; font-size: 17px; line-height: 1.65; }   /* nadpisuje .article-single p (margines dolny) - rytm pionowy idzie z gory */
body.content-page .blog-tresc > p:first-of-type { color: var(--ink, #1d1d1f); font-size: clamp(19px, 2vw, 22px); line-height: 1.5; }
body.content-page .blog-tresc ul,
body.content-page .blog-tresc ol { margin: 18px 0 0; padding-left: 22px; color: #3a3a3c; font-size: 17px; line-height: 1.6; }
body.content-page .blog-tresc li p { margin: 0; }
body.content-page .blog-tresc li + li { margin-top: 8px; }
body.content-page .blog-tresc li > ul,
body.content-page .blog-tresc li > ol { margin-top: 8px; }
body.content-page .blog-tresc li::marker { color: var(--muted, #6e6e73); }
body.content-page .blog-tresc a { color: var(--shell-teal-deep); text-decoration: none; }
body.content-page .blog-tresc a:hover { text-decoration: underline; text-underline-offset: 3px; }
body.content-page .blog-tresc strong { color: var(--ink, #1d1d1f); font-weight: 600; }
body.content-page .blog-tresc code { padding: 2px 6px; border-radius: 6px; background: var(--soft, #f5f5f7); color: var(--ink, #1d1d1f); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .9em; }
body.content-page .blog-tresc pre { overflow: auto; padding: 18px 22px; border-radius: 16px; background: var(--soft, #f5f5f7); color: var(--ink, #1d1d1f); font-size: 14px; line-height: 1.6; }
body.content-page .blog-tresc pre code { padding: 0; background: transparent; }
body.content-page .blog-tresc hr { margin: 48px 0; border: 0; border-top: 1px solid rgba(0, 0, 0, .1); }
body.content-page .blog-tresc blockquote { padding: 2px 0 2px 22px; border-left: 2px solid rgba(0, 0, 0, .18); color: var(--muted, #6e6e73); }
body.content-page .blog-tresc blockquote p { margin: 0; color: inherit; }
body.content-page .blog-tresc blockquote p + p { margin-top: 10px; }

/* spis tresci: cicha lista z hairline'ami, bez karty */
.blog-spis { padding: 22px 0 26px; border-top: 1px solid rgba(0, 0, 0, .1); border-bottom: 1px solid rgba(0, 0, 0, .1); }
body.content-page .blog-tresc .blog-spis + * { margin-top: 36px; }
.blog-spis-tytul { display: block; color: var(--ink, #1d1d1f); font-size: 15px; font-weight: 600; }
body.content-page .blog-tresc .blog-spis ol { margin: 12px 0 0; padding: 0; list-style: none; columns: 2; column-gap: 32px; font-size: 15px; line-height: 1.45; }
body.content-page .blog-tresc .blog-spis li { margin: 0; padding: 6px 0; break-inside: avoid; }
body.content-page .blog-tresc .blog-spis a { color: var(--ink, #1d1d1f); }

/* „W skrocie": szary panel jak przyklad na podstronach, bez ramki i gradientu */
body.content-page .blog-tresc .blog-skrot { margin-top: 30px; padding: 22px 0 26px; border: 0; border-top: 1px solid rgba(0, 0, 0, .1); border-bottom: 1px solid rgba(0, 0, 0, .1); border-radius: 0; background: transparent; }   /* hairline'y jak na podstronach, nie szara karta */
body.content-page .blog-tresc .blog-skrot-tytul { margin: 0; color: var(--ink, #1d1d1f); font-size: 17px; font-weight: 600; letter-spacing: -.01em; text-transform: none; }
body.content-page .blog-tresc .blog-skrot p { margin-top: 10px; font-size: 16px; }
body.content-page .blog-tresc .blog-skrot ul,
body.content-page .blog-tresc .blog-skrot ol { margin-top: 12px; padding-left: 20px; font-size: 16px; line-height: 1.55; }
body.content-page .blog-tresc .blog-skrot li::marker { color: var(--ink, #1d1d1f); }

/* obrazy: szersze niz kolumna tekstu (jak zdjecia na apple.com), bez ramki i cienia */
body.content-page .blog-tresc .blog-figure { width: min(980px, calc(100vw - 40px)); margin-top: 36px; margin-left: 50%; transform: translateX(-50%); }
body.content-page .blog-tresc .blog-figure + * { margin-top: 36px; }
.blog-figure img { width: 100%; height: auto; border-radius: 18px; background: var(--soft, #f5f5f7); box-shadow: 0 0 0 1px rgba(0, 0, 0, .06); }   /* hairline, zeby jasna infografika miala krawedz na bialym */
.blog-figure figcaption { max-width: 760px; margin: 12px auto 0; color: var(--muted, #6e6e73); font-size: 14px; line-height: 1.55; }

/* tabele: krój i kolor dziedziczone, naglowek zwyklym tekstem, hairline'y jak w Apple */
body.content-page .blog-tresc .blog-table { margin-top: 28px; overflow-x: auto; border: 0; border-radius: 0; -webkit-overflow-scrolling: touch; }
body.content-page .blog-tresc .blog-table table { width: 100%; border-collapse: collapse; font: inherit; font-size: 15px; line-height: 1.5; }
body.content-page .blog-tresc .blog-table th { padding: 12px 16px 12px 0; border-bottom: 1px solid rgba(0, 0, 0, .3); background: transparent; color: var(--ink, #1d1d1f); font: inherit; font-size: 15px; font-weight: 600; letter-spacing: 0; text-align: left; text-transform: none; vertical-align: bottom; }
body.content-page .blog-tresc .blog-table td { padding: 12px 16px 12px 0; border-top: 0; border-bottom: 1px solid rgba(0, 0, 0, .1); background: transparent; color: #3a3a3c; vertical-align: top; }
body.content-page .blog-tresc .blog-table tr:nth-child(even) td { background: transparent; }
body.content-page .blog-tresc .blog-table td:first-child { min-width: 9em; color: var(--ink, #1d1d1f); font-weight: 600; }
body.content-page .blog-tresc .blog-table td { font-variant-numeric: tabular-nums; }
body.content-page .blog-tresc .blog-table th:last-child,
body.content-page .blog-tresc .blog-table td:last-child { padding-right: 0; }

/* FAQ i zrodla */
body.content-page .blog-tresc .blog-faq { margin-top: clamp(56px, 7vw, 80px); }
body.content-page .blog-tresc .blog-faq h2 { margin: 0 0 22px; font-size: clamp(28px, 3vw, 38px); font-weight: 600; letter-spacing: -.02em; line-height: 1.14; }
body.content-page .blog-tresc .blog-faq .faq-answer p { font-size: 17px; }
body.content-page .blog-tresc .blog-faq + .blog-zrodla { padding-top: 0; border-top: 0; }   /* FAQ konczy sie wlasnym hairline'em */
body.content-page .blog-tresc .blog-zrodla { margin-top: clamp(48px, 6vw, 72px); padding-top: 26px; border-top: 1px solid rgba(0, 0, 0, .1); }
body.content-page .blog-tresc .blog-zrodla h2 { margin: 0; font-size: 17px; font-weight: 600; letter-spacing: -.01em; }
body.content-page .blog-tresc .blog-zrodla ol { margin-top: 12px; padding-left: 20px; color: var(--muted, #6e6e73); font-size: 14px; line-height: 1.6; }
body.content-page .blog-tresc .blog-zrodla li + li { margin-top: 6px; }
body.content-page .blog-tresc .blog-zrodla a { color: var(--ink, #1d1d1f); text-decoration: none; }
body.content-page .blog-tresc .blog-zrodla a:hover { text-decoration: underline; text-decoration-color: rgba(0, 0, 0, .3); text-underline-offset: 3px; }
body.content-page .blog-tresc .blog-zrodlo-meta { margin-left: 8px; color: var(--muted, #6e6e73); white-space: nowrap; }
body.content-page .blog-tresc .blog-stopka-autora { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(0, 0, 0, .1); color: var(--muted, #6e6e73); font-size: 14px; line-height: 1.6; }

/* „Warto przeczytac takze": trzy karty jak na listingu, szare tlo sekcji */
.blog-powiazane { padding: clamp(56px, 7vw, 88px) 0 clamp(64px, 8vw, 104px); background: var(--soft, #f5f5f7); }
body.content-page .blog-powiazane h2 { margin: 0 0 clamp(26px, 3vw, 40px); font-size: clamp(28px, 3.2vw, 40px); font-weight: 600; letter-spacing: -.02em; line-height: 1.12; }
.blog-powiazane .blog-karta-obraz { background: #e8e8ed; }

@media (max-width: 960px) {
  .blog-siatka { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-karta--duza > a { grid-template-columns: 1fr; gap: 20px; }
  body.content-page .blog-karta h2 { font-size: 28px; }
  body.content-page .blog-tresc .blog-figure { width: 100%; margin-left: 0; transform: none; }
}
@media (max-width: 760px) {
  /* Artykuł na telefonie: zdjęcie w całości nad tytułem, tekst na granacie - przyciemnione
     zdjęcie pod tytułem zostawało ciemną plamą z pół twarzy przy krawędzi. */
  body.content-page.blog-artykul .listing-hero--photo { padding-top: 0; padding-bottom: 40px; }
  body.content-page.blog-artykul .listing-hero--photo .hero-photo { position: relative; inset: auto; aspect-ratio: 16 / 9; }
  body.content-page.blog-artykul .listing-hero--photo .hero-photo img { object-position: 50% 30%; }
  body.content-page.blog-artykul .listing-hero--photo::after { content: none; }
  body.content-page.blog-artykul .listing-hero--photo .breadcrumbs { margin-top: 22px; }
  body.content-page.blog-artykul .listing-hero--photo .listing-hero-copy { padding-top: 18px; }
  body.content-page.blog-artykul .listing-hero--photo .ai-mark { top: calc(100vw * 9 / 16 - 36px); bottom: auto; }
}
@media (max-width: 620px) {
  .blog-siatka { grid-template-columns: 1fr; gap: 32px; }
  .blog-kategorie .shell-container { width: auto; margin: 0; flex-wrap: nowrap; overflow-x: auto; padding: 14px 20px; scrollbar-width: none; }   /* pasek na cala szerokosc - pastylki nie ucinaja sie na krawedzi kontenera */
  .blog-kategorie .shell-container::-webkit-scrollbar { display: none; }
  .blog-kategorie a { flex: 0 0 auto; }
  body.content-page .blog-hero--listing h1 { font-size: 44px; }
  body.content-page.blog-artykul .listing-hero-copy h1 { font-size: 32px; }
  .blog-meta { font-size: 13px; }
  body.content-page .blog-body { padding-top: 40px; }
  body.content-page .blog-tresc > p:first-of-type { font-size: 19px; }
  body.content-page .blog-tresc .blog-table { -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 32px), transparent); mask-image: linear-gradient(to right, #000 calc(100% - 32px), transparent); }   /* prawa krawedz gasnie = da sie przewinac */
  body.content-page .blog-tresc .blog-table table { min-width: 560px; }
  .blog-spis { display: none; }   /* na telefonie spis 10 pozycji spychał lead poza ekran */
  body.content-page .blog-tresc .blog-skrot { padding: 20px 0 22px; }
  .blog-figure img { border-radius: 12px; }
  body.content-page .blog-tresc .blog-table table { font-size: 14px; }
  body.content-page .blog-tresc .blog-table th,
  body.content-page .blog-tresc .blog-table td { padding: 10px 12px 10px 0; }
  body.content-page .blog-tresc .blog-table td:first-child { min-width: 7em; }
}

/* ==========================================================================
   Podziekowanie po formularzu (/thx) i dokumenty prawne (/regulamin, /polityka-prywatnosci,
   /obowiazek-informacyjny, /licencja): jasne hero bez zdjecia, tresc w article-single.
   ========================================================================== */
body.content-page .prawna-hero { padding: clamp(40px, 6vw, 72px) 0 clamp(28px, 4vw, 48px); background: var(--soft, #f5f5f7); }
body.content-page .prawna-hero::before { content: none; }
/* podziekowanie: zdjecie zespolu na calej szerokosci jak hero artykulu, tytul duzy */
body.content-page .thx-hero .listing-hero-copy { max-width: 760px; padding-top: clamp(72px, 10vw, 140px); padding-bottom: clamp(24px, 4vw, 48px); }
body.content-page .thx-copy h1 { font-size: clamp(52px, 7vw, 96px); letter-spacing: -.04em; line-height: 1; }
body.content-page .thx-copy p { max-width: 620px; font-size: clamp(17px, 1.8vw, 21px); }
body.content-page .thx-hero .hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; margin-top: 30px; }
body.content-page .thx-body { padding-top: clamp(48px, 6vw, 80px); }
body.content-page .thx-body .step-list li p { margin: 0; }
body.content-page .thx-body .step-list li p strong { display: block; margin-bottom: 2px; color: var(--ink, #1d1d1f); font-weight: 600; }
body.content-page .thx-dalej .related-list { display: block; margin-top: 0; }
body.content-page .prawna-hero .listing-hero-copy { padding-top: clamp(16px, 3vw, 32px); max-width: 820px; }
body.content-page .prawna-hero .listing-hero-copy h1 { margin: 12px 0 0; color: var(--ink, #1d1d1f); font-size: clamp(32px, 4vw, 52px); font-weight: 700; letter-spacing: -.03em; line-height: 1.08; }   /* listing-hero-copy jest bialy (na zdjeciu) - tu tlo jasne */
body.content-page .prawna-hero .listing-hero-copy .eyebrow,
body.content-page .prawna-hero .breadcrumbs,
body.content-page .prawna-hero .breadcrumbs a { color: var(--muted, #6e6e73); }
body.content-page .prawna-hero .breadcrumbs [aria-current="page"] { color: var(--ink, #1d1d1f); }
body.content-page .prawna-body { padding-top: clamp(40px, 5vw, 64px); }
body.content-page .prawna-tresc > * { margin: 0; }
body.content-page .prawna-tresc > * + * { margin-top: 16px; }
body.content-page .prawna-tresc h2 { margin-top: 44px; font-size: clamp(22px, 2.4vw, 28px); font-weight: 600; letter-spacing: -.015em; line-height: 1.25; }
body.content-page .prawna-tresc p,
body.content-page .prawna-tresc li { color: #3a3a3c; font-size: 16px; line-height: 1.65; }
body.content-page .prawna-tresc ul { padding-left: 22px; }
body.content-page .prawna-tresc li + li { margin-top: 6px; }
body.content-page .prawna-tresc a { color: var(--shell-teal-deep); }
.shell-footer .footer-legal a { color: inherit; text-decoration: none; }
.shell-footer .footer-legal a:hover { text-decoration: underline; }

/* ==========================================================================
   Cookies: maly pasek w rogu + panel ustawien. Minimalnie, w jezyku strony.
   ========================================================================== */
.zgody-pasek { position: fixed; z-index: 400; right: 20px; bottom: 20px; width: min(380px, calc(100vw - 40px)); padding: 20px 22px 18px; border: 1px solid rgba(0, 0, 0, .08); border-radius: 18px; background: rgba(255, 255, 255, .96); box-shadow: 0 18px 50px rgba(14, 25, 43, .16); color: #1d1d1f; font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif; opacity: 0; transform: translateY(12px); transition: opacity .26s ease, transform .26s ease; -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.zgody-pasek.is-visible { opacity: 1; transform: none; }
.zgody-pasek[hidden] { display: none; }
.zgody-pasek p { margin: 0; font-size: 14px; line-height: 1.5; color: #3a3a3c; }
.zgody-pasek p a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
/* dwa przyciski dziela wiersz po rowno (w dluzszych jezykach zawijaja sie kazdy na cala szerokosc),
   link „Ustawienia" zawsze w osobnym wierszu ponizej - uklad nie zalezy od dlugosci tekstow */
.zgody-akcje { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 10px; margin-top: 14px; }
.zgody-btn { display: inline-flex; flex: 1 1 140px; min-height: 38px; align-items: center; justify-content: center; padding: 6px 14px; border: 0; border-radius: 999px; background: #1d1d1f; color: #fff; font: inherit; font-size: 13px; font-weight: 600; line-height: 1.25; text-align: center; cursor: pointer; }
.zgody-btn:hover { background: #000; }
.zgody-btn--light { background: #f5f5f7; color: #1d1d1f; }
.zgody-btn--light:hover { background: #e8e8ed; }
.zgody-link { flex-basis: 100%; margin-top: 4px; padding: 0; border: 0; background: transparent; color: #6e6e73; font: inherit; font-size: 13px; font-weight: 500; text-align: center; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.zgody-link:hover { color: #1d1d1f; }
/* podstrony: `.content-page button` (2 selektory) wygrywa z `.zgody-btn` i powieksza przyciski do 17px */
.content-page .zgody-btn { font-size: 13px; }
.content-page .zgody-link { font-size: 13px; }
.zgody-panel { position: fixed; z-index: 410; inset: 0; display: flex; align-items: flex-end; justify-content: center; padding: 20px; background: rgba(14, 25, 43, .32); opacity: 0; transition: opacity .26s ease; }
.zgody-panel.is-open { opacity: 1; }
.zgody-panel[hidden] { display: none; }
.zgody-panel-karta { width: min(520px, 100%); max-height: calc(100vh - 40px); overflow: auto; padding: 26px 26px 22px; border-radius: 22px; background: #fff; box-shadow: 0 24px 70px rgba(14, 25, 43, .3); color: #1d1d1f; font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif; outline: none; transform: translateY(16px); transition: transform .26s ease; }
.zgody-panel.is-open .zgody-panel-karta { transform: none; }
.zgody-panel-karta h2 { margin: 0; font-size: 20px; font-weight: 600; letter-spacing: -.01em; }
.zgody-panel-karta > p { margin: 8px 0 0; color: #6e6e73; font-size: 14px; line-height: 1.5; }
.zgody-opcja { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 16px 0; border-top: 1px solid rgba(0, 0, 0, .1); }
.zgody-opcje { margin-top: 18px; border-bottom: 1px solid rgba(0, 0, 0, .1); }
.zgody-opcja strong { display: block; font-size: 15px; font-weight: 600; }
.zgody-opcja span { display: block; margin-top: 3px; color: #6e6e73; font-size: 13px; line-height: 1.45; }
.zgody-switch { position: relative; display: inline-block; flex: 0 0 auto; width: 46px; height: 28px; }
.zgody-switch input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: pointer; }
.zgody-switch i { position: absolute; inset: 0; border-radius: 999px; background: #d2d2d7; transition: background .2s ease; }
.zgody-switch i::after { content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, .25); transition: transform .2s ease; }
.zgody-switch input:checked + i { background: #34c759; }
.zgody-switch input:checked + i::after { transform: translateX(18px); }
.zgody-switch input:disabled + i { background: #34c759; opacity: .55; cursor: not-allowed; }
.zgody-switch input:focus-visible + i { outline: 2px solid #4070d4; outline-offset: 2px; }
.zgody-panel-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 8px 14px; margin-top: 18px; }
@media (max-width: 620px) {
  .zgody-pasek { right: 12px; bottom: 12px; left: 12px; width: auto; padding: 16px 18px; }
  .zgody-panel { padding: 0; align-items: flex-end; }
  .zgody-panel-karta { border-radius: 22px 22px 0 0; max-height: 92vh; }
}
@media (prefers-reduced-motion: reduce) { .zgody-pasek, .zgody-panel, .zgody-panel-karta { transition: none; } }
