/* =========================================================
   Biały, responsywny motyw – minimalistyczny landing
   ========================================================= */

/* --- Zmienne / baza --- */
:root {
  --bg: #f7f9fc;
  --card: #fff;
  --muted: #5E6470;
  --text: #111827;
  --brand: #2563eb;
  --brand-d: #507cbe;
  --danger: #dc2626;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial,
    "Noto Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

/* --- Layout / utils --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-26 {
  margin-top: 26px;
}

/* =========================================================
   Header / nawigacja
   ========================================================= */




header {
  position: fixed;
  top:0; left:0; right:0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e7eb;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* .brand{display:flex;align-items:center;gap:10px;text-decoration:none} */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: url("/assets/logo-oknobalans-lekkie.webp") no-repeat center/contain;
  /* ---box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);--- */
}

/* --- Przyciski w headerze --- */
.call-btn {
  padding: 10px 16px;
  border-radius: 12px;
  background: #10b981 !important;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 0;
}

.call-btn:hover {
  background: var(--brand-d);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

/* Icon button (np. dokument) */
.icon-btn {
  padding: 10px 12px; /* IDENTYCZNY top/bottom jak .call-btn */
  min-width: 44px; /* pilnuje proporcji */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  border-radius: 12px;
  text-decoration: none;
  border: 0;
  line-height: 1;
}

.icon-btn:hover {
  background: var(--brand-d);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.icon-doc {
  width: 20px;
  height: 20px;
  color: #fff;
}

/* prawa sekcja nagłówka */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* =========================================================
   Nawigacja: ikona „okno” + panel
   ========================================================= */

/* IKONA MENU – OKNO */
.window-toggle {
  width: 32px;
  height: 32px;
  padding: 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}

.window-toggle span {
  display: block;
  width: 100%;
  height: 100%;
  background: #111827;
  border-radius: 4px;
  transition: 0.25s ease;
}

/* efekt otwarcia (menu rozwinięte) – wariant 1 */
#site-header.nav-open .window-toggle .w1 {
  transform: translate(-2px, -2px) scale(0.75);
  opacity: 0.6;
}

#site-header.nav-open .window-toggle .w2 {
  transform: translate(2px, -2px) scale(0.75);
  opacity: 0.6;
}

#site-header.nav-open .window-toggle .w3 {
  transform: translate(-2px, 2px) scale(0.75);
  opacity: 0.6;
}

#site-header.nav-open .window-toggle .w4 {
  transform: translate(2px, 2px) scale(0.75);
  opacity: 0.6;
}

/* efekt otwarcia (menu rozwinięte) – wariant 2 */
header.nav-open .window-toggle .w1 {
  transform: translate(-2px, -2px) scale(0.75);
  opacity: 0.6;
}

header.nav-open .window-toggle .w2 {
  transform: translate(2px, -2px) scale(0.75);
  opacity: 0.6;
}

header.nav-open .window-toggle .w3 {
  transform: translate(-2px, 2px) scale(0.75);
  opacity: 0.6;
}

header.nav-open .window-toggle .w4 {
  transform: translate(2px, 2px) scale(0.75);
  opacity: 0.6;
}

/* PANEL NAWIGACJI */
.nav-panel {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.nav-panel-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px 16px;
  display: none;
}

/* po kliknięciu w ikonkę okna – wariant 1 */
#site-header.nav-open .nav-panel-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
}

/* po kliknięciu w ikonkę okna – wariant 2 */
header.nav-open .nav-panel-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
}

/* główna lista linków */
.main-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-link,
.nav-parent-btn {
  width: 100%;
  padding: 8px 12px;
  border-radius: 10px;
  border: 0;
  background: transparent;
  font: inherit;
  color: #111827;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
}

.nav-link:hover,
.nav-parent-btn:hover {
  background: #eef2ff;
}

.nav-caret {
  font-size: 11px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

/* rotacja careta */
.nav-parent.open .nav-caret {
  transform: rotate(180deg);
}

/* podmenu */
.nav-submenu {
  list-style: none;
  padding: 4px 0 4px 14px;
  margin: 0;
  display: none;
}

.nav-submenu li a {
  display: block;
  padding: 6px 8px;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  color: #4b5563;
}

.nav-submenu li a:hover {
  background: #eef2ff;
  color: var(--brand, #2563eb);
}

.nav-parent.open .nav-submenu {
  display: block;
}

/* prawa kolumna panelu */
.nav-panel-aside {
  font-size: 14px;
  color: #4b5563;
}

.nav-panel-aside h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.nav-panel-badges {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.nav-panel-badge {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef2ff;
  border: 1px solid #e0e7ff;
  color: #1e3a8a;
}

/* =========================================================
   Hero / sekcje landingowe
   ========================================================= */

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  padding: 0 0 0 0;
}

.hero_v2 {
  display: grid;
  gap: 28px;
  align-items: stretch;
  margin: 0 0 34px;
  padding: 0 0 0 0;
}

.hero > * {
  height: 100%;
}

.hero-card {
  background: var(--card);
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  padding: 22px 28px 22px 28px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.hero-card h1{
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 20ch;
}



.hero p {
  font-size: 18px;
  margin: 0 0 18px;
}

.hero-photo {
  margin: 12px 0 18px;
  border-radius: 16px;
  overflow: hidden;
  max-height: 260px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 18px;
}

.badge {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  padding: 8px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: default;
backdrop-filter: blur(10px);
}

.blog-pill{
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  backdrop-filter: blur(10px);
}

.badges-light .badge {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  backdrop-filter: none;
}

.badges-light .badge:hover {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}



.badge:hover {
  background: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25);
}

.badge-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.badge-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}


.badge-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.55);
  backdrop-filter: blur(2px);
}

.badge-modal__box {
  position: relative;
  max-width: 520px;
  width: calc(100% - 32px);
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  border: 1px solid #e5e7eb;
}

.badge-modal__title {
  margin: 0 0 8px;
  font-size: 18px;
  color: #111827;
}

.badge-modal__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
}

.badge-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: #f3f4f6;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: #111827;
}

.badge-modal__close:hover {
  background: #e5e7eb;
}




/* --- Feature boxes --- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature {
  background: var(--card);
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px;
}

.feature h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* =========================================================
   Formularz
   ========================================================= */

.form-card {
  background: var(--card);
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  padding: 22px;
}

.form-card h2 {
margin-top: 0px;
}


.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Pola formularza – jednakowa wysokość dla input/select/date */
label {
  font-size: 14px;
  color: #374151;
}

/* wspólne ustawienia dla wszystkich pól w .form-card */
.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  height: 48px; /* ⬅️ ta sama wysokość dla input, select, date */
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #d1d5db;
  color: var(--text);
  font-size: 14px;
  line-height: 1.4;
  box-sizing: border-box;
}

/* textarea ma być wyższa */
.form-card textarea {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

/* --- SELECT: ujednolicony wygląd (Chrome / Safari) --- */
.form-card select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  background-color: #fff;
  padding-right: 40px; /* miejsce na strzałkę */
  background-image: linear-gradient(45deg, transparent 50%, #6b7280 50%),
    linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

/* --- DATE: powiększony placeholder i ten sam wygląd --- */
.form-card input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 14px;
}

/* tekst „rrrr-mm-dd” w środku (Safari/Chrome) */
.form-card input[type="date"]::-webkit-datetime-edit,
.form-card input[type="date"]::-webkit-datetime-edit-text,
.form-card input[type="date"]::-webkit-datetime-edit-year-field,
.form-card input[type="date"]::-webkit-datetime-edit-month-field,
.form-card input[type="date"]::-webkit-datetime-edit-day-field {
  font-size: 14px;
}

/* Focus dla pól */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Checkbox (RODO) – żeby nie dziedziczył "48px" */
.form-card input[type="checkbox"] {
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 4px;
  background: transparent;
  border: 1px solid #d1d5db;
}

/* Submit / helper / error */
.submit {
  width: 100%;
  padding: 10px 14px 10px 14px;
  border-radius: 14px;
  background: var(--brand);
  color: #fff;
  border: 0;
  font-weight: 800;
  font-size: 16px;
  margin-top: 10px;
  cursor: pointer;
}

.submit:hover {
  background: var(--brand-d);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.helper {
  font-size: 12px;
  color: var(--muted);
}

.error {
  color: var(--danger);
  font-size: 13px;
  margin-top: 6px;
  display: none;
}

/* =========================================================
   Logotypy / opinie / FAQ
   ========================================================= */

.logos {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0.9;
  justify-content: center;
}

.logo {
  height: 60px;
/*   filter: grayscale(1) brightness(1); */
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.review {
  border: 1px solid #050d1c;
  border-radius: 18px;
  padding: 16px;
  background: var(--card);
}

.review small {
  color: #6b7280;
}

.opinie-placeholder {
  overflow: visible; /* nie ucina boksów wewnątrz widgetu */
  min-height: 280px;
}

@media (max-width: 900px) {
  .opinie-placeholder {
    overflow: hidden;   /* kluczowe */
  }
}



.faq {
  margin-bottom: 34px;

}

.faq details {
  background: var(--card);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

/* =========================================================
   Mapa / obszary
   ========================================================= */

.map-placeholder {
  height: 280px;
  overflow: hidden; /* przytnie nadmiar */
  border-radius: 16px; /* opcjonalnie, żeby dopasować do kart */
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block; /* usuwa dziury po inline-elementach */
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
  list-style: none;
  padding-left: 0;
  margin: 12px 0 0;
}

.area-grid li {
  padding: 8px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
}

/* =========================================================
   Footer / cookie / dialog
   ========================================================= */

.footer {
  margin-top: 40px;
  border-top: 1px solid #e5e7eb;
  color: #6b7280;
  padding: 22px 0;
  font-size: 14px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Pasek z ikonkami social */
.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Pojedyncza ikonka */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #f3f4f6;
  text-decoration: none;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: #6b7280;
  transition: fill 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

/* Efekt hover – lekki podskok i kolor brandu */
.social-link:hover {
  background: #e0ebff;
}

.social-link:hover svg {
  fill: var(--brand);
  transform: translateY(-1px);
}

#cookie {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 40;
  display: none;
}

#cookie .card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 12px;
  color: #374151;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

#cookie button {
  background: var(--brand);
  border: 0;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 800;
  color: #fff;
}

.btn-secondary {
  background: #f3f4f6;
  color: #111827;
  border: 1px solid #e5e7eb;
}

dialog#thanks {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 0;
  background: #ffffff;
  color: #111827;
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.2);
}

/* =========================================================
   Blog / content
   ========================================================= */



.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.post-card {
  background: var(--card);
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-card h3 {
  margin: 0;
}

.post-card a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
}

.post-meta {
  font-size: 12px;
  color: var(--muted);
}

.post-content {
  background: var(--card);
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 34px;
}

.post-content h1 {
  margin-top: 0;
}

.post-content img {
  max-width: 100%;
  border-radius: 12px;
}

.prose p {
  line-height: 1.7;
}

.tag {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef2ff;
  border: 1px solid #e0e7ff;
  color: #1e3a8a;
  font-size: 12px;
  margin-right: 6px;
}

.breadcrumbs-card {
  background: var(--card);
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 12px 18px;
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
}

/* --- Krótkie intro pod H1 (ai-intro) --- */
.ai-intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin: 8px 0 18px;
}

/* --- Szybkie podsumowanie (quick-facts) --- */
.quick-facts {
  margin-top: 24px;
}

.quick-facts .post-content,
.quick-facts-card {
  background: var(--card);
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px 20px;
}

.quick-facts h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
}


    


.quick-facts ul {
  margin: 0;
  padding-left: 18px;
}

.quick-facts li {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 14px;
}

/* =========================================================
   Tabele: Cennik / diagnoza
   ========================================================= */

/* --- Cennik (tabela) --- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 24px;
  font-size: 0.975rem;
  line-height: 1.5;
}

.price-table th,
.price-table td {
  padding: 12px 14px;
  vertical-align: top;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.price-table thead th {
  text-align: left;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.035);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.price-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.02);
}

/* Lepsza czytelność kolumn cenowych */
.price-table td:last-child,
.price-table th:last-child {
  white-space: nowrap;
}

/* Mobile: zamień w „karty” */
@media (max-width: 720px) {
  .price-table,
  .price-table thead,
  .price-table tbody,
  .price-table tr,
  .price-table th,
  .price-table td {
    display: block;
  }

  .price-table thead {
    display: none; /* ukryj nagłówek, bo będą etykiety z :before */
  }

  .price-table tr {
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    margin-bottom: 12px;
    background: #fff;
  }

  .price-table td {
    border: 0;
    padding: 4px 0;
  }

  .price-table td:nth-child(1) {
    font-weight: 700;
    margin-bottom: 6px;
  }

  .price-table td:nth-child(2)::before {
    content: "Zakres: ";
    font-weight: 600;
  }

  .price-table td:nth-child(3)::before {
    content: "Cena: ";
    font-weight: 600;
  }
}

/* --- Tabela: objaw – przyczyna – rozwiązanie (diag-table) --- */
.diag-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 24px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.diag-table th,
.diag-table td {
  padding: 10px 12px;
  vertical-align: top;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.diag-table thead th {
  text-align: left;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.diag-table tbody tr:hover {
  background: rgba(0, 0, 0, 0.015);
}

/* Mobile: „karty” jak w cenniku */
@media (max-width: 720px) {
  .diag-table,
  .diag-table thead,
  .diag-table tbody,
  .diag-table tr,
  .diag-table th,
  .diag-table td {
    display: block;
  }

  .diag-table thead {
    display: none;
  }

  .diag-table tr {
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    margin-bottom: 10px;
    background: #fff;
  }

  .diag-table td {
    border: 0;
    padding: 4px 0;
  }

  .diag-table td:nth-child(1) {
    font-weight: 700;
    margin-bottom: 4px;
  }

  .diag-table td:nth-child(2)::before {
    content: "Przyczyna: ";
    font-weight: 600;
  }

  .diag-table td:nth-child(3)::before {
    content: "Rozwiązanie: ";
    font-weight: 600;
  }
}

/* =========================================================
   Bloki: RODO / lokalne SEO
   ========================================================= */

/* --- RODO: układ jak u konkurencji --- */
.terms {
  margin: 16px 0;
}

/* cały wiersz jest jednym label */
.terms-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.4;
  color: #374151;
  cursor: pointer;
}

/* “kolumna” na checkbox */
.terms-checkbox-wrap {
  flex: 0 0 auto;
  margin-top: 3px; /* lekkie wyrównanie do tekstu */
}

/* sam checkbox bez dodatkowych marginesów */
.terms-checkbox-wrap input[type="checkbox"] {
  margin: 0;
}

/* tekst po prawej */
.terms-text {
  flex: 1 1 auto;
  min-width: 0; /* kluczowe dla Safari – nie ściska tekstu */
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

/* mobile – tylko trochę większy margines */
@media (max-width: 600px) {
  .terms {
    margin: 20px 0;
  }
}

/* --- Blok lokalny (local-seo) --- */
.local-seo {
  margin-top: 26px;
}

.local-seo .post-content,
.local-seo-card {
  background: var(--card);
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px 20px;
}

.local-seo h2 {
  margin-top: 0;
  margin-bottom: 8px;
}

.local-seo p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* =========================================================
   Dodatki: telefon w headerze (ikona) + mobile wyrównania
   ========================================================= */

/* ikona telefonu */
.call-ico {
  width: 20px;
  height: 20px;
  display: none; /* na desktop ukryta, bo jest tekst */
}

/* MOBILE: zielony przycisk telefoniczny z ikoną */
@media (max-width: 800px) {
  .call-btn.call-btn--phone {
    background: #10b981 !important; /* zielony */
    color: #fff !important; /* biała ikonka */
    min-width: 44px;
    min-height: 44px; /* rozwiązuje problem z wysokością */
    padding: 10px 12px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1; /* ważne: nie puchnie wysokość */
    border-radius: 12px;
  }

  .call-btn.call-btn--phone .call-ico {
    display: block;
  }

  .call-btn.call-btn--phone .call-text {
    display: none; /* znika napis */
  }
}

/* MOBILE: ujednolicenie „kafelków” w headerze do 44x44 */
@media (max-width: 800px) {
  /* wyrównanie kontenera */
  .nav-right {
    height: 44px;
    align-items: center;
  }

  /* KAŻDY kafelek w headerze ma być 44x44 i wypełniać wysokość */
  .nav-right .icon-btn,
  .nav-right .call-btn {
    height: 44px;
    width: 44px;
    min-width: 44px;
    padding: 0 !important; /* usuwa 10px góra/dół z icon-btn */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    line-height: 1;
  }

  /* ikonka w środku */
  .nav-right .icon-doc,
  .nav-right .call-ico {
    width: 20px;
    height: 20px;
    display: block;
  }
}

/* =========================================================
   Responsywność (global)
   ========================================================= */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .reviews {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  header .call-btn {
    padding: 12px 14px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  #site-header.nav-open .nav-panel-inner {
    grid-template-columns: 1fr;
  }

  header.nav-open .nav-panel-inner {
    grid-template-columns: 1fr;
  }
}

/* Mobile: ułóż ładniej stopkę */
@media (max-width: 720px) {
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-links {
    margin-top: 6px;
  }
}

html, body { overflow-x: hidden; }
main#top{
  margin-top: 86px; /* dopasuj */
}

.hero-card.first_field{
  position: relative;
  overflow: hidden;
color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* BIAŁA MGŁA */
.hero-card.first_field::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* im wyżej, tym bielej */
  z-index: 0;
}

/* treść nad mgłą */
.hero-card.first_field > *{
  position: relative;
  z-index: 1;
}


/* =========================================================
   OFERTA — karty (BIAŁA MGŁA na zdjęciach + znika na hover)
   ========================================================= */

.oferta-section{
  margin-top: 26px;
}

.oferta-heading{
  margin: 0 0 10px;
}

.oferta-lead{
  margin: 0 0 16px;
}

/* GRID */
.oferta-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

/* KARTA */
.oferta-card{
  background: var(--card, #fff);
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* wariant lokalny */
.oferta-card--local{
  background: #f9fafb;
}

/* wrapper zdjęcia – stały kadr */
.oferta-img-wrap{
  position: relative;
  overflow: hidden;
  line-height: 0;
  aspect-ratio: 16 / 9;
  background: #e5e7eb;
}

/* ZDJĘCIE – bez przyciemniania */
.oferta-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: none; /* ważne: usuwamy brightness/contrast */
}

/* BIAŁA MGŁA (overlay) */
.oferta-img-wrap::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.60); /* siła mgły */
  z-index: 1;
  pointer-events: none;
  transition: opacity .25s ease;
}

/* opcjonalnie: delikatny mleczny gradient dla “ładniejszej mgły” */
.oferta-img-wrap::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0.12) 60%,
    rgba(255,255,255,0.0) 100%);
  z-index: 2;
  pointer-events: none;
  transition: opacity .25s ease;
}

/* najechanie: mgła znika */
.oferta-card:hover .oferta-img-wrap::before,
.oferta-card:hover .oferta-img-wrap::after{
  opacity: 0;
}

/* klawiatura: jak wejdziesz tabem w link w karcie */
.oferta-card:focus-within .oferta-img-wrap::before,
.oferta-card:focus-within .oferta-img-wrap::after{
  opacity: 0;
}

/* treść */
.oferta-body{
  padding: 16px;
}

.oferta-title{
  margin: 0 0 6px;
  font-size: 18px;
}

.oferta-link{
  color: var(--brand, #2563eb);
  font-weight: 700;
  text-decoration: none;
}

.oferta-link:hover{
  text-decoration: underline;
}

/* CTA wariant (bo masz w HTML oferta-card--cta) */
.oferta-card--cta{
  border-style: dashed;
}

/* MOBILE */
@media (max-width: 600px){
  .oferta-img-wrap{ aspect-ratio: 16 / 10; }
}
/* ================= BLOG NOWY DESIGN ================= */

.blog-page{
margin-top:20px;
}

/* HERO */

.blog-hero{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
align-items:center;
margin-bottom:40px;
}

.blog-hero img{
width:100%;
border-radius:18px;
}

.blog-hero-text h1{
font-size:34px;
margin-bottom:10px;
}

.blog-hero-text p{
color:#5E6470;
font-size:18px;
}


/* FEATURED */

.blog-featured{
margin-bottom:40px;
}

.featured-card{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
background:#fff;
border:1px solid #e5e7eb;
border-radius:18px;
padding:20px;
}

.featured-card img{
width:100%;
border-radius:12px;
}

.featured-content h3{
margin-top:0;
font-size:22px;
}

.read-more{
font-weight:700;
color:#2563eb;
}


/* GRID */

.blog-grid-new{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.post-card-new{
background:#fff;
border:1px solid #e5e7eb;
border-radius:18px;
overflow:hidden;
transition:.25s;
}

.post-card-new:hover{
transform:translateY(-4px);
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.post-card-new img{
width:100%;
height:160px;
object-fit:cover;
}

.post-card-new h3{
font-size:18px;
padding:14px 16px 0 16px;
}

.post-card-new p{
padding:0 16px 16px;
color:#5E6470;
font-size:14px;
}


/* PROBLEMS */

.blog-problems{
margin-top:40px;
}

.problem-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(200px,1fr));
gap:10px;
}

.problem-grid a{
background:#fff;
border:1px solid #e5e7eb;
padding:10px 14px;
border-radius:12px;
text-decoration:none;
font-weight:600;
}

.problem-grid a:hover{
background:#eef2ff;
}


/* MOBILE */

@media (max-width:900px){

.blog-hero{
grid-template-columns:1fr;
}

.featured-card{
grid-template-columns:1fr;
}

.blog-grid-new{
grid-template-columns:1fr;
}

}/* =========================================================
   BLOG INDEX — NOWA WERSJA MODERN
   ========================================================= */


/* HERO */
.blog-hero-v2{
  position: relative;
  min-height: 540px;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 34px;
  background:
    linear-gradient(135deg, rgba(15,23,42,.88), rgba(37,99,235,.58));
  box-shadow:
    0 24px 70px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.blog-hero-v2__bg{
  position: absolute;
  inset: 0;
}

.blog-hero-v2__bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.03);
}

.blog-hero-v2__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 34%),
    linear-gradient(135deg, rgba(15,23,42,.84) 0%, rgba(15,23,42,.55) 45%, rgba(37,99,235,.48) 100%);
  backdrop-filter: blur(1px);
}

.blog-hero-v2__content{
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 56px 42px 46px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 540px;
}

.blog-hero-v2__top{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.blog-pill{
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.blog-pill--soft{
  background: rgba(255,255,255,.08);
}

.blog-hero-v2 h1{
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.blog-hero-v2__lead{
  margin: 0;
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,.86);
}

.blog-hero-v2__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.blog-btn{
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform .2s ease,
    box-shadow .25s ease,
    background-color .25s ease,
    border-color .25s ease;
}

.blog-btn:hover{
  transform: translateY(-2px);
}

.blog-btn--primary{
  background: #ffffff;
  color: #111827;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
}

.blog-btn--ghost{
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

/* SECTION HEAD */
.blog-section-head{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.blog-section-head h2{
  margin: 4px 0 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.blog-kicker{
  display: inline-block;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-head-link{
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  opacity: .8;
}

.blog-head-link:hover{
  opacity: 1;
}

/* FEATURED POST */
.blog-highlight{
  margin-bottom: 34px;
}

.featured-post-modern{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(229,231,235,.85);
  box-shadow: 0 18px 50px rgba(17,24,39,.08);
  backdrop-filter: blur(18px);
}

.featured-post-modern__media{
  position: relative;
  min-height: 100%;
  display: block;
  overflow: hidden;
}

.featured-post-modern__media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,24,39,.12), transparent 50%);
}

.featured-post-modern__media img{
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.featured-post-modern:hover .featured-post-modern__media img{
  transform: scale(1.05);
}

.featured-post-modern__body{
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-post-modern__meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.featured-post-modern__meta span{
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f3f6fb;
  color: #4b5563;
  font-size: 12px;
  font-weight: 700;
}

.featured-post-modern__body h3{
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.featured-post-modern__body h3 a{
  text-decoration: none;
  color: #111827;
}

.featured-post-modern__body p{
  margin: 0 0 18px;
  color: #5E6470;
  font-size: 16px;
  line-height: 1.75;
}

.featured-post-modern__tags{
  margin-bottom: 18px;
}

/* CATEGORIES */
.blog-categories-modern{
  margin-bottom: 34px;
}

.category-cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card{
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 170px;
  padding: 22px;
  text-decoration: none;
  color: #111827;
  border-radius: 24px;
  border: 1px solid rgba(229,231,235,.9);
  background:
    radial-gradient(circle at top right, rgba(37,99,235,.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
  box-shadow: 0 14px 34px rgba(17,24,39,.06);
  transition:
    transform .2s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.category-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(17,24,39,.10);
  border-color: rgba(37,99,235,.18);
}

.category-card__icon{
  font-size: 28px;
  line-height: 1;
}

.category-card strong{
  font-size: 18px;
  line-height: 1.2;
}

.category-card small{
  font-size: 14px;
  color: #5E6470;
  line-height: 1.6;
}

/* POSTS GRID */
.blog-list-modern{
  margin-bottom: 18px;
}

.posts-grid-modern{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.post-modern{
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(229,231,235,.9);
  background: rgba(255,255,255,.88);
  box-shadow: 0 14px 34px rgba(17,24,39,.06);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.post-modern:hover{
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(17,24,39,.11);
  border-color: rgba(37,99,235,.16);
}

.post-modern__thumb{
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.post-modern__thumb::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,24,39,.10), transparent 48%);
}

.post-modern__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.post-modern:hover .post-modern__thumb img{
  transform: scale(1.05);
}

.post-modern__body{
  padding: 20px 20px 22px;
}

.post-modern__meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.post-modern__meta span{
  color: #6b7280;
  font-size: 12px;
  font-weight: 700;
}

.post-modern__body h3{
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.post-modern__body h3 a{
  text-decoration: none;
  color: #111827;
}

.post-modern__body p{
  margin: 0 0 14px;
  color: #5E6470;
  font-size: 15px;
  line-height: 1.7;
}

.blog-link-arrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  text-decoration: none;
  font-weight: 800;
}

.blog-link-arrow span{
  transition: transform .2s ease;
}

.blog-link-arrow:hover span{
  transform: translateX(3px);
}

/* PAGINATION */
.blog-pagination{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.blog-pagination__item{
  min-width: 48px;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111827;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(229,231,235,.95);
  box-shadow: 0 8px 20px rgba(17,24,39,.05);
  font-weight: 800;
  transition:
    transform .2s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    background-color .25s ease;
}

.blog-pagination__item:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(17,24,39,.08);
  border-color: rgba(37,99,235,.22);
}

.blog-pagination__item.is-current{
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #fff;
  border-color: transparent;
}

.blog-pagination__next{
  gap: 8px;
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .category-cards{
    grid-template-columns: repeat(2, 1fr);
  }

  .posts-grid-modern{
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-post-modern{
    grid-template-columns: 1fr;
  }

  .featured-post-modern__media img{
    min-height: 320px;
  }
}

@media (max-width: 800px){
  .blog-hero-v2{
    min-height: 500px;
    border-radius: 24px;
  }

  .blog-hero-v2__content{
    min-height: 500px;
    padding: 28px 22px 24px;
  }

  .blog-hero-v2 h1{
    max-width: none;
  }

  .blog-section-head{
    flex-direction: column;
    align-items: flex-start;
  }

  .category-cards,
  .posts-grid-modern{
    grid-template-columns: 1fr;
  }

  .featured-post-modern__body{
    padding: 24px 20px;
  }

  .featured-post-modern__body h3{
    font-size: 28px;
  }

  .post-modern__body h3{
    font-size: 20px;
  }
}


/* =========================================================
   DESKTOP — niższy header
   ========================================================= */
@media (min-width: 801px) {

  header {
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px);
  }

  /* górny rząd */
  .nav {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 72px;           /* było dużo wyżej */
    padding: 6px 20px;
  }

  .brand {
    gap: 10px;
    font-size: 16px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .nav-right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    gap: 12px;
  }

  .window-toggle {
    display: none;
  }

  /* mniejsze przyciski po prawej */
  .icon-btn {
    width: 42px;
    height: 42px;
    min-width: 42px;
    padding: 0;
    border-radius: 12px;
  }

  .icon-doc {
    width: 18px;
    height: 18px;
  }

  .call-btn.call-btn--phone {
    padding: 10px 18px !important;
    min-height: 42px;
    border-radius: 12px;
    font-size: 15px;
  }

  .call-btn.call-btn--phone .call-ico {
    display: none;
  }

  .call-btn.call-btn--phone .call-text {
    display: inline;
  }

  /* dolny rząd z menu */
  .nav-panel {
    background: #fff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: none;
  }

  .nav-panel-inner {
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 6px 20px;          /* było za dużo */
  }

  .nav-panel-aside {
    display: none;
  }

  .main-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .main-nav > li {
    position: relative;
  }

  .nav-link,
  .nav-parent-btn {
    width: auto;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    white-space: nowrap;
  }

  .nav-caret {
    font-size: 10px;
  }

  .nav-submenu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 220px;
    padding: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
    z-index: 50;
  }

  .nav-parent:hover .nav-submenu,
  .nav-parent.open .nav-submenu {
    display: block;
  }

  /* kluczowe — mniejszy odsuw treści */
  main#top {
    margin-top: 118px;
  }
}


/* =========================================================
   DESKTOP — chowaj dolne menu przy scrollu w dół
   ========================================================= */
@media (min-width: 801px) {

  header {
    transition: box-shadow .25s ease, background-color .25s ease;
  }

  .nav-panel {
    overflow: visible; /* ważne: dropdown może wyjść poza pasek */
    max-height: 70px;
    opacity: 1;
    transform: translateY(0);
    transition:
      max-height .28s ease,
      opacity .22s ease,
      transform .22s ease,
      border-color .22s ease;
  }

  /* stan schowany */
  header.nav-hide-menu .nav-panel {
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    border-top-color: transparent;
    border-bottom-color: transparent;
    pointer-events: none;
  }

  /* gdy menu schowane, header robi się niższy */
  header.nav-hide-menu .nav {
    min-height: 64px;
  }

  header.nav-hide-menu .brand-logo {
    width: 34px;
    height: 34px;
  }

  header.nav-hide-menu .brand {
    font-size: 15px;
  }

  /* submenu zawsze nad wszystkim */
  .main-nav > li {
    position: relative;
    z-index: 60;
  }

  .nav-submenu {
    z-index: 70;
  }
}