/* GoNet CRM - arkusz stylow strony statycznej */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: #ffffff; color: #1d2433;
  /* osobne wlasciwosci, bez skrotu "font": IE11 odrzuca caly skrot z nazwa -apple-system i wraca do Times New Roman */
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
main { display: block; }
button, input, textarea, select { font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }
/* skok do kotwicy: naglowek strony (72px) nie zaslania tytulu sekcji; IE11 ignoruje - tam naglowek nie jest przyklejony */
[id] { scroll-margin-top: 90px; }
img { max-width: 100%; }
/* proporcje z pliku - poza obrazkami z opisow changeloga (tam obowiazuja atrybuty width/height) */
img:not(.cl-img) { height: auto; }
a { color: #1f6fc5; }
a:hover { color: #13307a; }
h1, h2, h3, h4 { line-height: 1.25; color: #0b1f55; margin: 1.4em 0 .5em; }
h1 { font-size: 2.4rem; margin-top: 0; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.2rem; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.skip { position: absolute; left: -999px; top: 0; background: #0b1f55; color: #fff; padding: 8px 14px; z-index: 100; }
.skip:focus { left: 8px; }

/* Przyciski */
.btn {
  display: inline-block; padding: .7em 1.3em; border-radius: 999px; border: 2px solid #1f6fc5;
  color: #1f6fc5; background: #fff; font-weight: 600; text-decoration: none; line-height: 1.2;
  cursor: pointer; font-size: 1rem; transition: background .15s, color .15s, border-color .15s;
}
.btn:hover { background: #1f6fc5; color: #fff; }
.btn-accent { background: #b35309; border-color: #b35309; color: #fff; }
.btn-accent:hover { background: #974407; border-color: #974407; color: #fff; }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.8); color: #fff; }
.btn-ghost:hover { background: #fff; color: #0b1f55; }

/* Naglowek i menu */
.header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid #e2e7ef; }
.header-in { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo img { display: block; width: 164px; height: auto; }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; }
.nav-list > li { margin-left: 4px; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block; padding: 24px 12px; color: #1d2433; text-decoration: none; font-weight: 600; font-size: .98rem;
}
.nav-list > li > a:hover, .nav-list > li.is-active > a { color: #1f6fc5; }
.nav-list > li.nav-cta > a { padding: 0; }
.nav-list > li.nav-cta .btn { padding: .55em 1.1em; margin-left: 8px; }
.nav-list > li.nav-cta > a.btn-accent, .nav-list > li.nav-cta > a.btn-accent:hover { color: #fff; }
.nav-sub {
  list-style: none; margin: 0; padding: 8px 0; position: absolute; top: 100%; left: 0; min-width: 230px;
  background: #fff; border: 1px solid #e2e7ef; border-radius: 10px; box-shadow: 0 6px 24px rgba(11, 31, 85, .08);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .15s, transform .15s, visibility .15s;
}
.nav-sub a { display: block; padding: 8px 18px; color: #1d2433; text-decoration: none; font-size: .95rem; }
.nav-sub a:hover { background: #f4f7fb; color: #1f6fc5; }
.nav-list > li:hover > .nav-sub { opacity: 1; visibility: visible; transform: none; }
/* osobna regula: IE11 nie zna :focus-within i odrzucilby cala regule */
.nav-list > li:focus-within > .nav-sub { opacity: 1; visibility: visible; transform: none; }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle span:not(.sr) { display: block; width: 26px; height: 3px; margin: 5px 0; background: #0b1f55; border-radius: 2px; }

@media (max-width: 1000px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid #e2e7ef;
    box-shadow: 0 6px 24px rgba(11, 31, 85, .08); display: none; max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .nav.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; padding: 8px 20px 20px; }
  .nav-list > li > a { padding: 12px 0; border-bottom: 1px solid #e2e7ef; }
  .nav-list > li { margin-left: 0; }
  .nav-sub { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 6px 14px; }
  .nav-list > li.nav-cta { margin-top: 14px; }
  .nav-list > li.nav-cta .btn { margin: 0; display: block; text-align: center; }
}

/* Sekcje */
/* Strona glowna: zdjecie w tle + granatowe przejscie, tekst po prawej (wariant A) */
.hero { position: relative; background: #0b1f55 url(/assets/img/hero.jpg) no-repeat 20% 40%; background-size: cover; color: #fff; padding: 110px 0 120px; }
.hero:before { content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(90deg, rgba(11,31,85,.15) 0%, rgba(11,31,85,.75) 42%, rgba(11,31,85,.96) 70%); }
.hero .wrap { position: relative; }
.hero .hero-text { margin-left: auto; max-width: 560px; }
.hero h1 { color: #fff; }
.hero-text { max-width: 760px; }
.hero .eyebrow { text-transform: uppercase; letter-spacing: .12em; font-weight: 700; color: #9cc7f2; margin: 0 0 12px; }
.hero .lead { font-size: 1.2rem; color: #dce8f7; }
.hero-cta { margin-top: 28px; }
.hero-cta .btn { margin: 0 12px 12px 0; }
.page-hero { background: linear-gradient(135deg, #0b1f55 0%, #13307a 100%); color: #fff; padding: 44px 0 40px; }
.page-hero h1 { color: #fff; margin: 0; }
.page-hero .lead { color: #dce8f7; margin: 10px 0 0; font-size: 1.1rem; }
.crumbs { background: #f4f7fb; font-size: .9rem; padding: 10px 0; color: #5b6577; }
.crumbs a { color: #5b6577; }
.crumbs span { margin: 0 4px; }
.content { padding: 48px 0 64px; }

/* Tresc artykulow */
.prose { max-width: 860px; }
.prose > :first-child { margin-top: 0; }
.prose p, .prose li { color: #1d2433; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin: .3em 0; }
.prose img { border-radius: 6px; margin: 8px 0; }
.prose .img-right { float: right; margin: 6px 0 12px 20px; max-width: 45%; }
.prose .img-left { float: left; margin: 6px 20px 12px 0; max-width: 45%; }
.prose h2, .prose h3 { clear: both; }
.prose table { width: 100%; border-collapse: collapse; margin: 1em 0; display: block; overflow-x: auto; }
.prose td, .prose th { padding: 8px 10px; vertical-align: top; border-bottom: 1px solid #e2e7ef; }
.prose hr { border: 0; border-top: 1px solid #e2e7ef; margin: 2em 0; clear: both; }
.prose blockquote { margin: 1em 0; padding: .5em 1em; border-left: 4px solid #3a8fd6; background: #f4f7fb; }
.prose::after { content: ""; display: block; clear: both; }
.back { margin-top: 2em; clear: both; }

/* Kafle na stronie glownej */
.tiles { background: #f4f7fb; padding: 48px 0; }
.tiles-in { display: flex; flex-wrap: wrap; }
.wrap.tiles-in { padding-left: 9px; padding-right: 9px; }
.tiles-in > .tile { width: 31.3%; width: calc(33.333% - 22px); margin: 0 11px 22px; }
.tile {
  display: block; background: #fff; border-radius: 10px; padding: 26px; box-shadow: 0 6px 24px rgba(11, 31, 85, .08);
  color: #1d2433; text-decoration: none; border-top: 4px solid #1f6fc5; transition: transform .15s;
}
.tile:hover { transform: translateY(-3px); color: #1d2433; }
.tile-k { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: #1f6fc5; font-weight: 700; }
.tile h2 { font-size: 1.25rem; margin: .4em 0; }
.tile p { margin: 0; color: #5b6577; font-size: .97rem; }
.feature { padding: 56px 0; }
.feature.alt { background: #f4f7fb; }
.feature-in { display: flex; align-items: center; }
.feature-in > * { flex: 1 1 0%; min-width: 0; }
.feature-in > * + * { margin-left: 40px; }
.feature img { border-radius: 10px; box-shadow: 0 6px 24px rgba(11, 31, 85, .08); display: block; }
.feature h2 { margin-top: 0; }
.logos { padding: 56px 0; border-top: 1px solid #e2e7ef; }
.logos h2 { text-align: center; margin-top: 0; }
.logos-in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-around; margin: 24px 0; }
.logos-in > img { max-width: 14%; margin: 9px; }
.logos-in img { display: block; max-height: 70px; width: auto; filter: grayscale(1); opacity: .75; transition: filter .2s, opacity .2s; }
.logos-in img:hover { filter: none; opacity: 1; }

/* Karty (funkcjonalnosci, referencje) */
.cards { display: flex; flex-wrap: wrap; margin: 28px -11px 0; }
.cards > .card { width: 31.3%; width: calc(33.333% - 22px); margin: 0 11px 22px; }
.card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid #e2e7ef; border-radius: 10px;
  padding: 20px; color: #1d2433; text-decoration: none; transition: box-shadow .15s, transform .15s;
}
a.card:hover { box-shadow: 0 6px 24px rgba(11, 31, 85, .08); transform: translateY(-2px); color: #1d2433; }
/* stala szerokosc = miejsce zarezerwowane przed wczytaniem (CLS); 192px przy pliku 288px = zapas 1.5x na ekranach HiDPI */
.card img { width: 192px; max-width: 100%; height: auto; align-self: flex-start; margin-bottom: 12px; }
.card h2 { margin: 0 0 .4em; font-size: 1.1rem; }
.card p { margin: 0 0 .8em; color: #5b6577; font-size: .95rem; flex: 1 1 auto; }
.card .more { color: #1f6fc5; font-weight: 600; font-size: .95rem; }

/* Klienci */
.branch { border: 1px solid #e2e7ef; border-radius: 10px; margin: 14px 0; background: #fff; }
.branch > summary { cursor: pointer; padding: 16px 20px; font-weight: 700; color: #0b1f55; font-size: 1.1rem; list-style: none; }
.branch > summary::-webkit-details-marker { display: none; }
.branch > summary::before { content: "+"; display: inline-block; width: 1.4em; color: #1f6fc5; }
.branch[open] > summary::before { content: "–"; }
.branch .cnt { color: #5b6577; font-weight: 400; }
.branch-h { display: inline; font-size: 1.1rem; margin: 0; color: #0b1f55; }
.clients { padding: 0 20px 10px; }
.client { display: flex; align-items: flex-start; padding: 16px 0; border-top: 1px solid #e2e7ef; }
.client > img { flex: 0 0 auto; max-width: 150px; margin-right: 20px; }
.client > div { flex: 1 1 0%; min-width: 0; }
.client img { max-height: 90px; width: auto; }
.client h3 { margin: 0 0 .3em; font-size: 1.05rem; }
.client h3 a { color: #0b1f55; }
.client p { margin: 0; color: #5b6577; font-size: .95rem; }

/* Strefy */
.hub { display: flex; flex-wrap: wrap; margin: 0 -10px; }
.hub > .hub-item { width: 31.3%; width: calc(33.333% - 20px); margin: 0 10px 20px; }
.hub-item {
  display: block; padding: 24px; border-radius: 10px; background: #f4f7fb; color: #1d2433;
  text-decoration: none; border-left: 4px solid #1f6fc5; transition: background .15s;
}
.hub-item:hover { background: #e8eef7; color: #1d2433; }
.hub-item h2 { margin: 0 0 .3em; font-size: 1.15rem; }
.hub-item p { margin: 0; color: #5b6577; }

/* Formularze */
.form { margin-top: 28px; background: #f4f7fb; border-radius: 10px; padding: 28px; }
.grid2 { display: flex; flex-wrap: wrap; justify-content: space-between; }
.grid2 > * { width: 48%; width: calc(50% - 9px); }
.f { margin-bottom: 14px; }
.f label { display: block; font-weight: 600; font-size: .95rem; margin-bottom: 4px; }
.f input, .f textarea {
  width: 100%; padding: 10px 12px; border: 1px solid #c5cedb; border-radius: 8px; font-family: inherit; font-size: inherit; line-height: 1.4; background: #fff;
}
.f input:focus, .f textarea:focus { outline: 2px solid #3a8fd6; border-color: #3a8fd6; }
.req { color: #c0392b; }
.req-note { font-size: .88rem; color: #5b6577; }
.consent { font-size: .85rem; color: #5b6577; margin: 10px 0; }
.consent input, .chk input { margin-right: 6px; transform: scale(1.15); }
.step { border: 0; background: #fff; border-radius: 10px; padding: 18px 20px; margin: 0 0 16px; }
.step legend { font-weight: 700; color: #0b1f55; font-size: 1.1rem; padding: 0; float: left; width: 100%; margin-bottom: 10px; }
.step legend + * { clear: both; }
.stepno { display: inline-block; background: #1f6fc5; color: #fff; font-size: .75rem; padding: 3px 9px; border-radius: 999px; margin-right: 8px; vertical-align: middle; text-transform: uppercase; letter-spacing: .06em; }
.chk { display: block; padding: 5px 0; cursor: pointer; }
.actions { margin: 20px 0 8px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.noscript-msg { color: #c0392b; font-size: .92rem; }
.rodo { font-size: .8rem; color: #5b6577; margin-top: 16px; }
.rodo summary { cursor: pointer; }
.errors { color: #c0392b; }

/* Stopka */
.footer { background: #0b1f55; color: #c9d6ee; padding: 30px 0 0; font-size: .82rem; line-height: 1.5; }
.footer a { color: #e6eefb; text-decoration: none; }
.footer a:hover { text-decoration: underline; color: #fff; }
.foot-grid { display: flex; flex-wrap: wrap; }
.wrap.foot-grid { padding-left: 8px; padding-right: 8px; }
.foot-grid > .foot-col { width: 14.6%; width: calc(16.666% - 24px); margin: 0 12px 14px; }
.foot-col h2 { font-size: .9rem; margin: 0 0 6px; color: #fff; line-height: 1.4; }
.foot-col ul { list-style: none; margin: 0; padding: 0; }
.foot-col li { margin: 0; }
/* pole klikniecia min. 24px (WCAG 2.2 AA) */
.foot-col li a, .foot-col h2 a, .foot-contact a { display: inline-block; padding: 3px 0; min-height: 24px; }
.foot-contact p { margin: 0 0 6px; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 16px; padding: 12px 20px; font-size: .78rem; color: #9fb1d4; }
.foot-bottom p { margin: 0; }
.foot-bottom a { text-decoration: underline; }

/* Listy z dawnych punktorow "►" */
.prose ul.list-arrow { list-style: none; padding-left: 1.5em; }
.prose ul.list-arrow li:before { content: "\25BA"; display: inline-block; width: 1.5em; margin-left: -1.5em; color: #1f6fc5; font-size: .8em; }
/* lista obok obrazka oplywanego: punktory nie chowaja sie pod obrazkiem */
.prose ul, .prose ol { overflow: hidden; }
/* Dane kontaktowe: duze logotypy */
/* rozmiar z atrybutow width/height w HTML (generator) - miejsce zarezerwowane przed wczytaniem */
.prose img.logo-big { max-width: 100%; height: auto; margin: 0 24px 16px 0; }

/* Lista zmian (changelog) */
.cl-moduly { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; margin: 0 0 32px; }
.cl-moduly-t { font-weight: 700; color: #0b1f55; margin-right: 10px; }
.cl-mod { display: block; margin: 3px; padding: 5px; border: 1px solid #e2e7ef; border-radius: 6px; background: #fff; line-height: 0; }
.cl-mod img { width: 26px; height: 26px; }
.cl-mod.is-off img { filter: grayscale(100%); opacity: .45; }
.cl-mod.is-on { background: #e3f6ea; border-color: #9fdcb5; }
.cl-mod:hover { border-color: #3a8fd6; }
.cl-mod:hover img { filter: none; opacity: 1; }
.cl-hint { text-align: center; color: #5b6577; font-size: .9rem; margin: -20px 0 28px; }
.cl-list { max-width: 900px; margin: 0 auto; }
.cl-ver { position: relative; border-left: 3px solid #3486cb; padding: 0 0 26px 28px; margin-left: 8px; }
/* romb dokladnie na srodku osi: os = ramka 3px (srodek -1.5px), romb 12px -> left = -1.5 - 6 */
.cl-ver:before { content: ""; position: absolute; left: -7.5px; top: 34px; width: 12px; height: 12px; border: 2px solid #fff; background: #b35309; box-shadow: 0 0 0 2px #b35309;
  -ms-transform: rotate(45deg); transform: rotate(45deg); }
.cl-ver-head { margin-bottom: 8px; }
.cl-date { display: block; color: #5b6577; font-size: .9rem; font-weight: 600; }
.cl-ver h2 { margin: 2px 0 6px; font-size: 1.4rem; }
.cl-typ { display: flex; align-items: center; font-size: 1rem; margin: 14px 0 6px; color: #1d2433; }
.cl-typ img { margin-right: 8px; }
.cl-items { margin: 0 0 6px; padding-left: 1.3em; }
.cl-items li { margin: 6px 0; }
.cl-items li.typ3 { color: #b3261e; }
.cl-items li.typ2 { font-weight: 600; }
.cl-items li p { margin: .3em 0; }
.cl-items img { vertical-align: middle; }
.wersja2 { color: #6b7486; font-size: .85rem; font-weight: 400; }
.stable { color: #0a7a00; font-size: .85rem; font-weight: 400; }
.beta { color: #d62d20; font-size: .85rem; font-weight: 400; }
.archiv { color: #6b7486; font-size: .85rem; font-weight: 400; }
.gen-time { text-align: center; color: #6b7486; font-size: .8rem; margin-top: 30px; }

/* Filmy */
.films-filter { margin: 0 0 24px; }
.film { display: flex; align-items: flex-start; background: #fff; border: 1px solid #e2e7ef; border-radius: 10px; padding: 16px; margin: 0 0 20px; }
.film-thumb { position: relative; display: block; flex: 0 0 auto; width: 356px; max-width: 100%; margin-right: 22px; line-height: 0; }
.film-thumb img { width: 356px; max-width: 100%; height: auto; border-radius: 6px; }
.film-play { position: absolute; left: 50%; top: 50%; width: 64px; height: 64px; margin: -32px 0 0 -32px; border-radius: 50%;
  background: #b35309; color: #fff; font-size: 26px; line-height: 64px; text-align: center; opacity: .92; }
.film-thumb:hover .film-play { background: #974407; opacity: 1; }
.film-body { flex: 1 1 0%; min-width: 0; }
.film-body h2 { margin: 0 0 4px; font-size: 1.3rem; }
.film-body h2 a { color: #0b1f55; text-decoration: none; }
.film-sub { color: #5b6577; margin: 0 0 8px; }
.film-desc { font-size: .95rem; }
.film-tags { margin: 10px 0 0; }
.film-tag { display: inline-block; margin: 0 6px 6px 0; padding: 3px 10px; border-radius: 999px; background: #e8f1fb; color: #13307a; font-size: .85rem; text-decoration: none; }
.film-tag:hover { background: #d3e5f7; }
.film-meta { color: #6b7486; font-size: .85rem; margin-top: 8px; }
.video-box { background: #000; border-radius: 10px; line-height: 0; }
.video-box video { width: 100%; max-height: 75vh; }

/* Wersja "sama tresc" (changelog/filmy otwierane z GoNet): bez menu i stopki, maly tytul */
/* uklad jak na dawnych stronach: tylko wysrodkowany tytul, bez podtytulu i podpowiedzi */
.embed .page-hero { background: none; color: #1d2433; padding: 22px 0 0; text-align: center; }
.embed .page-hero h1 { color: #0b1f55; font-size: 1.6rem; }
.embed .page-hero .lead, .embed .cl-hint { display: none; }
.embed .cl-moduly { margin-bottom: 28px; }
.embed .content { padding: 20px 0 30px; }
.embed [id] { scroll-margin-top: 10px; }

/* Pliki do pobrania */
.pl-uwaga { background: #fff6e8; border-left: 4px solid #b35309; border-radius: 0 8px 8px 0; padding: 12px 16px; margin: 0 0 20px; }
.pl-uwaga p { margin: 0; }
.pl-pomoc { display: flex; flex-wrap: wrap; align-items: center; margin: 0 0 28px; }
.pl-pomoc .btn { margin: 0 16px 8px 0; }
.pl-pomoc span { color: #5b6577; margin-bottom: 8px; }
.acc-sek { border: 1px solid #e2e7ef; border-radius: 10px; margin: 0 0 12px; background: #fff; }
.acc-h { margin: 0; font-size: 1.1rem; }
.acc-btn { display: block; width: 100%; text-align: left; background: none; border: 0; padding: 16px 48px 16px 20px; cursor: pointer;
  font-weight: 700; font-size: 1.1rem; color: #0b1f55; position: relative; min-height: 24px; }
.acc-btn:hover { background: #f4f7fb; }
.acc-btn:after { content: "+"; position: absolute; right: 20px; top: 50%; margin-top: -14px; font-size: 1.4rem; color: #1f6fc5; line-height: 28px; }
.acc-sek.otwarta .acc-btn:after { content: "\2013"; }
.acc-ile { display: inline-block; margin-left: 8px; padding: 0 9px; border-radius: 999px; background: #e8f1fb; color: #13307a; font-size: .8rem; font-weight: 600; vertical-align: middle; }
.js .acc-sek .acc-tresc { display: none; }
.js .acc-sek.otwarta .acc-tresc { display: block; }
.acc-tresc { padding: 0 12px 12px; overflow-x: auto; }
.pl-tab { width: 100%; border-collapse: collapse; font-size: .95rem; }
.pl-tab th { text-align: left; color: #5b6577; font-weight: 600; font-size: .85rem; padding: 8px 10px; border-bottom: 2px solid #e2e7ef; white-space: nowrap; }
.pl-tab td { padding: 10px; border-bottom: 1px solid #eef1f6; vertical-align: middle; }
.pl-tab tr:last-child td { border-bottom: 0; }
.pl-num { white-space: nowrap; }
.pl-plik a { display: inline-flex; align-items: center; font-weight: 600; text-decoration: none; color: #13307a; }
.pl-plik a:hover .pl-nazwa { text-decoration: underline; }
.pl-ikona { display: inline-block; width: 42px; margin-right: 10px; padding: 5px 0; border-radius: 5px; text-align: center; font-size: .68rem;
  font-weight: 700; letter-spacing: .04em; color: #fff; background: #1f6fc5; flex: 0 0 auto; }
.pl-ikona.pl-zip { background: #7a5a00; }
.pl-ikona.pl-xlam { background: #1d6b36; }
.pl-nazwa { word-break: break-all; }
.pl-zn { display: inline-block; margin-left: 8px; padding: 1px 8px; border-radius: 999px; font-size: .75rem; font-weight: 600; }
.pl-zn.stable { background: #e3f6ea; color: #0a7a00; }
.pl-zn.beta { background: #fde8e7; color: #b3261e; }
.pl-zn.archiv { background: #eef1f6; color: #5b6577; }
.pl-sha { display: block; margin: 4px 0 0 52px; font-size: .75rem; color: #6b7486; }
.pl-sha code { font-size: .75rem; }
.pl-stat { position: relative; display: inline-block; cursor: help; white-space: nowrap; }
.pl-liczba { display: inline-block; min-width: 3em; font-weight: 600; margin-right: 6px; vertical-align: middle; }
.pl-spark { vertical-align: middle; }
.pl-spark rect { fill: #3a8fd6; }
.pl-spark rect.pusty { fill: #dfe6f0; }
.pl-pasek { display: block; margin: 4px 0 0 3.4em; }
.pl-pasek rect { fill: #b35309; }
.pl-pasek rect.tlo { fill: #eef1f6; }
.pl-tip { display: none; position: absolute; right: 0; bottom: 100%; margin-bottom: 8px; width: 240px; padding: 10px 12px; border-radius: 8px;
  background: #0b1f55; color: #fff; font-size: .8rem; line-height: 1.45; white-space: normal; box-shadow: 0 6px 24px rgba(11,31,85,.25); z-index: 5; }
.pl-tip b { color: #fff; }
.pl-mies { display: block; margin-top: 6px; color: #c9d6ee; }
.pl-mies span { display: inline-block; margin-right: 8px; }
.pl-stat:hover .pl-tip, .pl-stat:focus .pl-tip { display: block; }
.pl-bezp { margin-top: 32px; padding: 20px 24px; background: #f4f7fb; border-radius: 10px; }
.pl-bezp h2 { margin-top: 0; font-size: 1.25rem; }
.pl-bezp code { background: #fff; padding: 1px 6px; border-radius: 4px; }

/* Responsywnosc (bez grid - zgodnie z IE11) */
@media (max-width: 1000px) {
  .foot-grid > .foot-col { width: 31.3%; width: calc(33.333% - 24px); }
  .logos-in > img { max-width: 22%; }
  .cards > .card { width: 47%; width: calc(50% - 22px); }
  .hub > .hub-item { width: 47%; width: calc(50% - 20px); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.4rem; }
  .hero { padding: 64px 0 72px; background-position: 15% center; }
  .hero:before { background: rgba(11,31,85,.86); }
  .hero .hero-text { margin-left: 0; }
  .grid2 > * { width: 100%; }
  .tiles-in > .tile, .cards > .card { width: 94%; width: calc(100% - 22px); }
  .hub > .hub-item { width: 94%; width: calc(100% - 20px); }
  .feature-in { display: block; }
  .feature-in > * + * { margin-left: 0; margin-top: 24px; }
  .foot-grid > .foot-col { width: 46%; width: calc(50% - 24px); }
  .logos-in > img { max-width: 29%; }
  .client { display: block; }
  .client > img { margin: 0 0 10px; }
  .prose .img-right, .prose .img-left { float: none; margin: 10px 0; max-width: 100%; }
  .form { padding: 18px; }
  /* tabela plikow jako karty */
  .pl-tab thead { display: none; }
  .pl-tab, .pl-tab tbody, .pl-tab tr, .pl-tab td { display: block; width: auto; }
  .pl-tab tr { border-bottom: 1px solid #e2e7ef; padding: 8px 0; }
  .pl-tab td { border: 0; padding: 3px 4px; }
  .pl-tab td[data-l]:before { content: attr(data-l) ": "; color: #6b7486; font-size: .85rem; }
  .pl-tab td.pl-plik:before { content: none; }
  .pl-sha { margin-left: 0; }
  .pl-tip { right: auto; left: 0; }
  .film { display: block; }
  .film-thumb { margin: 0 0 12px; }
}
@media print {
  .header, .footer, .crumbs, .nav-toggle { display: none; }
  .hero, .page-hero { background: none; color: #000; padding: 0; }
  .hero h1, .page-hero h1 { color: #000; }
}
