:root{
  /* ===== KOLORY (mocniejsze, bardziej “żywe”) ===== */
  --bg1:#071a3a;    /* głębokie tło (granat) */
  --bg2:#0b2a63;    /* granat 2 */
  --bg3:#0f3b8a;    /* niebieski akcent tła */
  --bg4:#f6c445;    /* żółty akcent tła (subtelnie) */

  --paper:#ffffff;
  --paper2:rgba(255,255,255,.86);
  --line:rgba(15,23,42,.10);

  --text:#0b1220;
  --muted:rgba(11,18,32,.72);

  /* Brand: NIEBIESKI jako dominanta */
  --brand:#1d4ed8;
  --brand2:#2563eb;
  --brand3:#0ea5e9; /* delikatny cyan dla “life” */
  --brandDeep:#1237a6;

  /* Akcent (żółty) – tylko w detalach */
  --accent:#f6c445;
  --accent2:#ffd76a;
  --accentBg:rgba(246,196,69,.18);
  --accentBorder:rgba(246,196,69,.30);

  --ok:#16a34a;

  --shadow: 0 22px 70px rgba(2,6,23,.18);
  --shadow2: 0 14px 34px rgba(2,6,23,.14);
  --shadow3: 0 10px 24px rgba(2,6,23,.10);

  --radius:18px;
  --radius2:22px;
  --radius3:28px;

  --container:1120px;

  --focus: 0 0 0 4px rgba(37,99,235,.22);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ overflow-y: scroll; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  overflow-x:hidden;

  /* ===== TŁO: wyraźnie NIE białe, “premium tech” ===== */
  background:
    radial-gradient(1100px 700px at 12% -10%, rgba(37,99,235,.45), transparent 55%),
    radial-gradient(900px 580px at 88% 0%, rgba(14,165,233,.25), transparent 58%),
    radial-gradient(800px 520px at 50% 115%, rgba(246,196,69,.18), transparent 60%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 35%, #0b2a63 65%, #0a2557 100%);
}

/* “płótno” pod całą stroną – żeby karty wyglądały lepiej */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 520px at 20% 25%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(800px 480px at 80% 40%, rgba(255,255,255,.05), transparent 60%);
  mix-blend-mode: overlay;
  opacity:.9;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }
img{ max-width:100%; display:block; height:auto; }

.container{ width:min(var(--container), calc(100% - 40px)); margin:0 auto; }
.muted{ color:var(--muted); }
strong{ font-weight:800; }

/* ===== globalne tło dla sekcji (żeby nie było “biało”) ===== */
.section, .pagehead, .footer, .topbar, .header{
  position:relative;
}

/* =========================
   ACCESS
   ========================= */
.skip-link{ position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto;
  background:var(--paper);
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
  z-index:9999;
  outline:2px solid rgba(37,99,235,.55);
}

/* =========================
   TOPBAR
   ========================= */
.topbar{
  background: rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:10px 0; font-size:14px;
}
.topbar__left{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.topbar__right{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.topbar__link{ color: rgba(255,255,255,.78); }
.topbar__link:hover{ color:#fff; text-decoration:none; }

/* Chip – żółty akcent */
.chip{
  display:inline-flex; align-items:center;
  padding:6px 10px; border-radius:999px;
  background: rgba(246,196,69,.16);
  border:1px solid rgba(246,196,69,.28);
  color:#fff;
  font-weight:900;
}

/* =========================
   HEADER + NAV
   ========================= */
.header{
  position:sticky; top:0; z-index:1000;
  background: rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
  color:#fff;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}
@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .topbar, .header{
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}
.header__inner{ display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0; }

.brand{ display:flex; align-items:center; gap:10px; }
.brand__logo{ border-radius:10px; box-shadow: 0 14px 28px rgba(0,0,0,.25); }
.brand__name{ font-weight:900; letter-spacing:.2px; color:#fff; }

.nav{ display:flex; align-items:center; gap:10px; }
.nav__link{
  padding:10px 12px;
  border-radius:12px;
  color: rgba(255,255,255,.78);
  font-weight:900;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.nav__link:hover{
  color:#fff;
  background: rgba(255,255,255,.10);
  text-decoration:none;
}
.nav__link.active{
  color:#fff;
  background: rgba(37,99,235,.22);
  border:1px solid rgba(37,99,235,.28);
}

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  cursor:pointer;
}
.nav-toggle span{ display:block; height:2px; width:18px; margin:4px auto; background:rgba(255,255,255,.90); border-radius:2px; }

/* =========================
   BUTTONS – 100% niebieskie (ładne)
   ========================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  color:#fff;
  font-weight:900;
  text-decoration:none !important;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.14); }
.btn:focus{ outline:none; box-shadow: var(--focus); }

.btn--primary{
  border-color: rgba(37,99,235,.35);
  background: linear-gradient(135deg, var(--brand2) 0%, var(--brand) 40%, var(--brandDeep) 100%);
  box-shadow: 0 18px 40px rgba(29,78,216,.30);
}
.btn--primary:hover{
  filter: brightness(1.05);
  box-shadow: 0 22px 55px rgba(29,78,216,.36);
}

/* Ghost: białawy */
.btn--ghost{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.20);
}
.btn--ghost:hover{ background: rgba(255,255,255,.16); }

/* =========================
   HERO (na ciemnym tle)
   ========================= */
.hero{ padding:56px 0 0; color:#fff; }

.hero__grid{
  display:grid;
  grid-template-columns: 1.2fr .95fr;
  gap:34px;
  align-items:center;
  padding: 26px 0 70px;
}

.hero h1{
  font-size: clamp(34px, 3.2vw, 54px);
  line-height:1.05;
  margin:14px 0 12px;
  letter-spacing:-.4px;
}
.lead{
  font-size: clamp(16px, 1.25vw, 18px);
  line-height:1.65;
  color: rgba(255,255,255,.84);
  margin:0 0 18px;
}

.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(246,196,69,.30);
  background: rgba(246,196,69,.14);
  color:#fff;
  font-weight:900;
  font-size:14px;
}

.hero__actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; }

.hero__proof{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-top:20px;
}
.proof{
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
}
.proof strong{ display:block; margin-bottom:4px; color:#fff; }
.proof span{ color: rgba(255,255,255,.82); }

.hero__card{
  border-radius: var(--radius3);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.10);
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
}
.hero__card img{
  aspect-ratio: 16/11;
  object-fit:cover;
  filter: saturate(1.08) contrast(1.06);
}
.hero__cardText{ padding:16px 16px 18px; }
.hero__cardText h3{ margin:0 0 6px; color:#fff; }
.hero__cardText p{ margin:0; color: rgba(255,255,255,.82); }

.hero__badges{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }
.badge{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(246,196,69,.30);
  background: rgba(246,196,69,.14);
  color:#fff;
  font-weight:900;
  font-size:13px;
}

/* =========================
   SECTIONS – teraz “karty” na tle ciemnym
   ========================= */
.section{ padding:72px 0; color: var(--text); }
.section--alt{ padding:72px 0; }

.section__head{ display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:24px; }
.section__head h2{ margin:0; font-size: clamp(22px, 2vw, 30px); color:#fff; letter-spacing:-.2px; }
.section__head p{ margin:0; max-width:560px; color: rgba(255,255,255,.82); }

/* sekcje pod spodem nie są białe – mają “panel” */
.section .container{
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  border-radius: var(--radius3);
  padding: 22px;
  box-shadow: 0 22px 70px rgba(0,0,0,.18);
}

/* =========================
   CARDS
   ========================= */
.cards{ display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
.card{
  padding:18px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  box-shadow: 0 16px 44px rgba(0,0,0,.14);
  color:#fff;
}
.card__icon{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius:14px;
  background: rgba(37,99,235,.22);
  border:1px solid rgba(246,196,69,.28);
  margin-bottom:12px;
  font-size:20px;
}
.card h3{ margin:0 0 8px; color:#fff; }
.card p{ margin:0; color: rgba(255,255,255,.82); }
.card__link{ display:inline-block; margin-top:10px; font-weight:900; color: var(--accent2); }

/* =========================
   PAGEHEAD
   ========================= */
.pagehead{
  padding:38px 0 24px;
  border-bottom:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color:#fff;
}
.pagehead h1{ margin:0 0 10px; font-size: clamp(26px, 2.6vw, 40px); color:#fff; }
.pagehead p{ margin:0; max-width:760px; color: rgba(255,255,255,.82); }

/* =========================
   TOOLBAR
   ========================= */
.toolbar{
  margin-top:16px;
  display:flex; gap:14px; align-items:center; justify-content:space-between;
  flex-wrap:wrap;
}
.chips{ display:flex; gap:10px; flex-wrap:wrap; }

.chipbtn{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.82);
  font-weight:900;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.chipbtn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.14); }
.chipbtn.is-active{
  color:#fff;
  border-color: rgba(37,99,235,.40);
  background: rgba(37,99,235,.24);
}

.search input{
  width:min(360px, 72vw);
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  color:#fff;
  outline:none;
}
.search input::placeholder{ color: rgba(255,255,255,.60); }
.search input:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: var(--focus);
}

/* =========================
   PRODUCTS
   ========================= */
.products{ display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }

.product{
  border-radius: var(--radius3);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.10);
  overflow:hidden;
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
  transition: transform .15s ease, box-shadow .15s ease;
  color:#fff;
}
.product:hover{ transform: translateY(-2px); box-shadow: 0 26px 70px rgba(0,0,0,.22); }

.product__media{ position:relative; }
.product__media img{
  width:100%;
  aspect-ratio: 16/11;
  object-fit:cover;
  background: rgba(255,255,255,.10);
  filter: saturate(1.08) contrast(1.06);
}
.product__tag{
  position:absolute;
  left:12px; top:12px;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(0,0,0,.35);
  border:1px solid rgba(246,196,69,.30);
  font-size:13px;
  font-weight:900;
  color:#fff;
  backdrop-filter: blur(10px);
}

.product__body{ padding:16px 16px 18px; }
.product__title{ margin:0 0 8px; font-size:18px; color:#fff; }
.product__desc{ margin:0 0 12px; color: rgba(255,255,255,.82); line-height:1.6; min-height: 64px; }

.product__meta{ display:flex; gap:12px; margin:10px 0 14px; flex-wrap:wrap; }
.metaitem{
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.10);
}
.metaitem span{ display:block; font-size:12px; margin-bottom:4px; color: rgba(255,255,255,.68); }

/* =========================
   CONTACT
   ========================= */
.contactgrid{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; align-items:start; }
.contactcard, .mapcard{
  padding:18px;
  border-radius: var(--radius3);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
  color:#fff;
}
.contactitem{
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.10);
}
.contactitem span{ display:block; font-size:12px; margin-bottom:4px; color: rgba(255,255,255,.70); }
.mapwrap{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.10);
  margin-top:12px;
}
.mapwrap iframe{ width:100%; height:340px; border:0; display:block; }

/* =========================
   FOOTER
   ========================= */
.footer{
  padding:44px 0 18px;
  border-top:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:#fff;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap:16px;
}

.footer h4{ margin:0 0 10px; color:#fff; }
.footer__list{ list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.footer__list a{ color: rgba(255,255,255,.78); }
.footer__list a:hover{ color:#fff; text-decoration:none; }
.footer__bottom{
  margin-top:18px; padding-top:16px; border-top:1px solid rgba(255,255,255,.12);
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  color: rgba(255,255,255,.78);
}

/* =========================
   PRODUKTY (produkty-container / produkt)
   ========================= */
.produkty-container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
  margin-top: 14px;
  margin-bottom: 34px;
}

.produkt{
  border-radius: var(--radius3);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.10);
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
  color:#fff;
}
.produkt:hover{ transform: translateY(-2px); box-shadow: 0 26px 70px rgba(0,0,0,.22); }

.produkt img{
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  background: rgba(255,255,255,.10);
  filter: saturate(1.08) contrast(1.06);
}

.produkt h3{ margin: 14px 16px 8px; font-size: 18px; line-height: 1.2; color:#fff; }

.produkt p{
  margin: 0 16px 12px;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  flex: 1;
}

.cena,
.ilosc{
  display: block;
  margin: 0 16px 10px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.10);
  font-weight: 900;
  color:#fff;
}

/* CTA na wyrobach – NIEBIESKI, nie żółty */
.kup-teraz{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 6px 16px 16px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(37,99,235,.40);
  background: linear-gradient(135deg, var(--brand2) 0%, var(--brand) 45%, var(--brandDeep) 100%);
  color: #fff;
  font-weight: 900;
  text-decoration: none !important;
  box-shadow: 0 18px 40px rgba(29,78,216,.30);
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease;
}
.kup-teraz:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 22px 55px rgba(29,78,216,.36);
}

/* =========================
   RESPONSYWNOŚĆ
   ========================= */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .products{ grid-template-columns: repeat(2, 1fr); }
  .footer__grid{ grid-template-columns: 1fr; }
  .produkty-container{ grid-template-columns: repeat(2, 1fr); }

  .section .container{ padding:18px; }
}

@media (max-width: 720px){
  .topbar__inner{ flex-direction:column; align-items:flex-start; }

  .nav-toggle{ display:block; }
  .nav{
    position:absolute; left:0; right:0; top:100%;
    background: rgba(8,26,58,.85);
    border-bottom:1px solid rgba(255,255,255,.12);
    padding:12px 20px 18px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
  .nav--open{ display:flex; }
  .nav__link{ width:100%; }
  .nav__cta{ width:100%; justify-content:center; margin-left:0; }

  .products{ grid-template-columns: 1fr; }
  .produkty-container{ grid-template-columns: 1fr; }
  .contactgrid{ grid-template-columns: 1fr; }
  .hero__proof{ grid-template-columns: 1fr; }

  .section .container{ padding:16px; }
}

/* =========================================
   CZYTELNOŚĆ / KONTRAST – DOPISZ NA KOŃCU
   ========================================= */

/* 1) Ustalamy “tekst na ciemnym tle” jako standard UI */
:root{
  --onDark: rgba(255,255,255,.92);
  --onDark2: rgba(255,255,255,.82);
  --onDark3: rgba(255,255,255,.70);
  --onDark4: rgba(255,255,255,.58);
}

/* 2) Globalne podstawy czytelności */
body{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* 3) Teksty w ciemnych obszarach (topbar/header/hero/sekcje/panels) */
.topbar,
.header,
.hero,
.pagehead,
.footer,
.section .container{
  color: var(--onDark);
}

/* akapity/opisy – czytelniejsze niż wcześniej */
.lead,
.section__head p,
.hero__cardText p,
.card p,
.product__desc,
.produkt p,
.footer__bottom,
.topbar__link{
  color: var(--onDark2);
}

/* muted ma być “muted”, ale nadal czytelne */
.muted{
  color: var(--onDark3);
}

/* bardzo małe opisy (np. label w metaitem) */
.metaitem span,
.contactitem span,
.search input::placeholder{
  color: var(--onDark4);
}

/* 4) Linki na ciemnym tle – bardziej “premium” i czytelne */
a{
  color: inherit;
}
a:hover{
  text-decoration: none;
}
.footer__list a,
.topbar__link{
  color: var(--onDark2);
}
.footer__list a:hover,
.topbar__link:hover{
  color: #fff;
}

/* 5) Karty – podbijamy kontrast tła, żeby tekst nie ginął */
.section .container,
.card,
.product,
.produkt,
.contactcard,
.mapcard{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.16);
}

/* 6) Metaitemy (np. “Cena”, “Ilość”) – czytelniejsze */
.metaitem,
.cena,
.ilosc,
.contactitem{
  background: rgba(0,0,0,.18);
  border-color: rgba(255,255,255,.16);
}

/* 7) Tag na zdjęciu – mocniejszy kontrast */
.product__tag{
  background: rgba(0,0,0,.55);
  border-color: rgba(246,196,69,.38);
}

/* 8) Input (szukajka) – lepszy kontrast */
.search input{
  background: rgba(0,0,0,.18);
  border-color: rgba(255,255,255,.16);
}
.search input:focus{
  border-color: rgba(37,99,235,.70);
  box-shadow: 0 0 0 4px rgba(37,99,235,.22);
}

/* 9) Nagłówki – zawsze pełna biel, bo to “hierarchia” */
h1,h2,h3,h4{
  color:#fff;
}

/* 10) Drobna poprawa czytelności w listach/tekstach stopki */
.footer__bottom{
  color: var(--onDark3);
}

/* Google Translate – blokada psucia layoutu */
.goog-te-banner-frame,
.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}

body {
  top: 0 !important;
}

/* iframe od Google nie zmienia szerokości */
iframe.goog-te-menu-frame {
  max-width: 100vw !important;
}

.brand__logo{
  width:36px;
  height:36px;
  border-radius:10px;
  object-fit:contain;
  background:rgba(255,255,255,.7);
  border:1px solid rgba(15,23,42,.10);
  box-shadow: 0 12px 26px rgba(37,99,235,.18);
}


