/* ============================================================
   STERILCO — dostawca surowców chemicznych
   Arkusz stylów głównych | jasna kolorystyka: granat / błękit / zieleń
   ============================================================ */

:root{
  --navy:       #0d3b73;
  --navy-deep:  #082a55;
  --blue:       #1c74c4;
  --sky:        #2fa3dc;
  --green:      #3fa63c;
  --green-dark: #2e8c2c;
  --ink:        #14293f;
  --muted:      #56708a;
  --bg:         #f5fafd;
  --bg-alt:     #eaf4fb;
  --card:       #ffffff;
  --line:       #d9e8f4;
  --shadow-sm:  0 2px 10px rgba(13,59,115,.07);
  --shadow-md:  0 10px 30px rgba(13,59,115,.12);
  --shadow-lg:  0 24px 60px rgba(13,59,115,.16);
  --radius:     16px;
  --grad:       linear-gradient(135deg,var(--navy) 0%,var(--blue) 60%,var(--sky) 100%);
  --grad-green: linear-gradient(135deg,var(--green-dark),var(--green));
  --font: "Segoe UI","Trebuchet MS",system-ui,-apple-system,"Helvetica Neue",Arial,sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation:none!important; transition:none!important; }
}
body{
  font-family:var(--font);
  color:var(--ink);
  background:var(--bg);
  line-height:1.65;
  font-size:1.0625rem;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:var(--blue); text-decoration:none; }
a:hover{ color:var(--navy); }
ul{ list-style:none; }
.container{ width:min(1180px,92%); margin-inline:auto; }

/* ---------- typografia ---------- */
h1,h2,h3,h4{ line-height:1.2; color:var(--navy); font-weight:700; letter-spacing:-.01em; }
h1{ font-size:clamp(2rem,4.6vw,3.4rem); }
h2{ font-size:clamp(1.6rem,3vw,2.4rem); }
h3{ font-size:1.25rem; }
.lead{ font-size:clamp(1.05rem,1.6vw,1.25rem); color:var(--muted); }
.eyebrow{
  display:inline-flex; align-items:center; gap:.5rem;
  font-size:.8rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color:var(--green-dark); margin-bottom:.9rem;
}
.eyebrow::before{ content:""; width:26px; height:3px; border-radius:2px; background:var(--grad-green); }
.grad-text{
  background:var(--grad);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
}

/* ---------- przyciski ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55rem;
  padding:.85rem 1.7rem; border-radius:999px; border:0; cursor:pointer;
  font:inherit; font-size:1rem; font-weight:600; white-space:nowrap;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary{ background:var(--grad); color:#fff; box-shadow:0 8px 22px rgba(28,116,196,.35); }
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 12px 28px rgba(28,116,196,.45); color:#fff; }
.btn-green{ background:var(--grad-green); color:#fff; box-shadow:0 8px 22px rgba(63,166,60,.32); }
.btn-green:hover{ transform:translateY(-2px); color:#fff; }
.btn-ghost{ background:#fff; color:var(--navy); border:1.5px solid var(--line); box-shadow:var(--shadow-sm); }
.btn-ghost:hover{ border-color:var(--blue); color:var(--blue); transform:translateY(-2px); }
.btn svg{ flex:none; }

/* ---------- pasek górny ---------- */
.topbar{
  background:var(--navy-deep); color:#cfe3f7; font-size:.85rem;
  padding:.45rem 0;
}
.topbar .container{ display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; }
.topbar a{ color:#fff; font-weight:600; }
.topbar span b{ color:#8fd18d; font-weight:600; }
@media (max-width:640px){ .topbar span:first-child{ display:none; } }

/* ---------- nagłówek ---------- */
.site-header{
  position:sticky; top:0; z-index:900;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.site-header .container{ display:flex; align-items:center; gap:2rem; min-height:76px; }
.brand img{ height:44px; width:auto; }
.main-nav{ margin-left:auto; }
.main-nav ul{ display:flex; gap:.35rem; align-items:center; }
.main-nav a{
  display:block; padding:.55rem .95rem; border-radius:999px;
  color:var(--ink); font-weight:600; font-size:.98rem;
  transition:background .2s,color .2s;
}
.main-nav a:hover{ background:var(--bg-alt); color:var(--blue); }
.main-nav a[aria-current="page"]{ background:var(--bg-alt); color:var(--navy); }
.main-nav .nav-cta{ background:var(--grad); color:#fff; margin-left:.5rem; box-shadow:0 6px 16px rgba(28,116,196,.3); }
.main-nav .nav-cta:hover{ background:var(--grad); color:#fff; opacity:.92; }
.nav-toggle{
  display:none; margin-left:auto; background:none; border:1.5px solid var(--line);
  border-radius:10px; padding:.5rem .65rem; cursor:pointer;
}
.nav-toggle span{ display:block; width:22px; height:2px; background:var(--navy); margin:5px 0; border-radius:2px; transition:.25s; }
@media (max-width:960px){
  .nav-toggle{ display:block; }
  .main-nav{
    position:absolute; left:0; right:0; top:100%;
    background:#fff; border-bottom:1px solid var(--line);
    box-shadow:var(--shadow-md);
    display:none; padding:1rem 4%;
  }
  .main-nav.open{ display:block; }
  .main-nav ul{ flex-direction:column; align-items:stretch; gap:.25rem; }
  .main-nav .nav-cta{ margin-left:0; text-align:center; }
  body.nav-open .nav-toggle span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2){ opacity:0; }
  body.nav-open .nav-toggle span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
}

/* ---------- sekcje ---------- */
.section{ padding:clamp(3.5rem,7vw,6rem) 0; }
.section-alt{ background:linear-gradient(180deg,#fff 0%,var(--bg-alt) 100%); }
.section-head{ max-width:720px; margin-bottom:2.6rem; }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-head.center .eyebrow{ justify-content:center; }
.section-head p{ margin-top:.8rem; color:var(--muted); }

/* ---------- hero ---------- */
.hero{
  position:relative; overflow:hidden;
  background:
    radial-gradient(900px 460px at 88% -10%, rgba(47,163,220,.18), transparent 60%),
    radial-gradient(700px 420px at -8% 110%, rgba(63,166,60,.14), transparent 60%),
    linear-gradient(180deg,#ffffff 0%, var(--bg-alt) 100%);
}
.hero::before{
  content:""; position:absolute; inset:0; pointer-events:none; opacity:.5;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='104' viewBox='0 0 120 104'%3E%3Cpath d='M30 0l30 17.3v34.6L30 69.3 0 52V17.3zM90 34.6l30 17.3v34.6L90 104 60 86.6V52z' fill='none' stroke='%231c74c4' stroke-opacity='.08' stroke-width='1.5'/%3E%3C/svg%3E");
}
.hero .container{
  position:relative; display:grid; grid-template-columns:1.1fr .9fr;
  gap:3rem; align-items:center; padding:clamp(3.5rem,7vw,6.5rem) 0;
}
.hero-badge{
  display:inline-flex; align-items:center; gap:.5rem;
  background:#fff; border:1px solid var(--line); border-radius:999px;
  padding:.4rem 1rem; font-size:.85rem; font-weight:600; color:var(--navy);
  box-shadow:var(--shadow-sm); margin-bottom:1.4rem;
}
.hero-badge .dot{ width:9px; height:9px; border-radius:50%; background:var(--green); box-shadow:0 0 0 4px rgba(63,166,60,.18); }
.hero p.lead{ margin:1.3rem 0 2.1rem; max-width:34rem; }
.hero-actions{ display:flex; gap:.9rem; flex-wrap:wrap; }
.hero-trust{ display:flex; gap:1.8rem; flex-wrap:wrap; margin-top:2.6rem; }
.hero-trust div{ font-size:.9rem; color:var(--muted); }
.hero-trust strong{ display:block; font-size:1.45rem; color:var(--navy); }

/* wizual hero – kolaż produktów */
.hero-visual{ position:relative; min-height:440px; }
.hero-visual .blob{
  position:absolute; inset:8% 4%;
  background:var(--grad); border-radius:38% 62% 58% 42%/45% 42% 58% 55%;
  opacity:.12; filter:blur(2px);
}
.hero-card{
  position:absolute; background:#fff; border-radius:var(--radius);
  box-shadow:var(--shadow-md); border:1px solid var(--line);
  padding:.7rem; width:170px; transition:transform .3s ease;
}
.hero-card:hover{ transform:translateY(-6px) scale(1.03); }
.hero-card img{ border-radius:10px; aspect-ratio:1; object-fit:cover; }
.hero-card figcaption{ font-size:.8rem; font-weight:600; color:var(--navy); padding:.5rem .2rem 0; text-align:center; }
.hero-card:nth-child(2){ top:0; left:6%; animation:float 7s ease-in-out infinite; }
.hero-card:nth-child(3){ top:24%; right:0; width:190px; animation:float 8s ease-in-out 1.2s infinite; }
.hero-card:nth-child(4){ bottom:0; left:20%; width:180px; animation:float 9s ease-in-out .6s infinite; }
.hero-chip{
  position:absolute; z-index:2; display:flex; align-items:center; gap:.5rem;
  background:#fff; border:1px solid var(--line); border-radius:999px;
  box-shadow:var(--shadow-sm); padding:.45rem .95rem;
  font-size:.82rem; font-weight:700; color:var(--navy);
}
.hero-chip.c1{ top:12%; right:14%; color:var(--green-dark); }
.hero-chip.c2{ bottom:14%; right:6%; }
@keyframes float{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-12px);} }
@media (max-width:960px){
  .hero .container{ grid-template-columns:1fr; }
  .hero-visual{ min-height:380px; }
}
@media (max-width:520px){
  .hero-card{ width:132px!important; }
  .hero-visual{ min-height:320px; }
}

/* ---------- pasek zaufania / marquee branż ---------- */
.trust-strip{ background:var(--navy-deep); color:#fff; padding:1.05rem 0; overflow:hidden; }
.trust-strip .container{ display:flex; gap:2.5rem; flex-wrap:wrap; justify-content:center; font-size:.92rem; }
.trust-strip span{ display:inline-flex; align-items:center; gap:.55rem; opacity:.92; }
.trust-strip svg{ color:#7fc97d; }

/* ---------- karty ogólne ---------- */
.grid{ display:grid; gap:1.4rem; }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
@media (max-width:1020px){ .grid-4{ grid-template-columns:repeat(2,1fr);} .grid-3{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:640px){ .grid-4,.grid-3,.grid-2{ grid-template-columns:1fr;} }

.card{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius);
  padding:1.7rem; box-shadow:var(--shadow-sm);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:#bcd8ee; }
.card h3{ margin:.9rem 0 .5rem; }
.card p{ color:var(--muted); font-size:.97rem; }
.icon-badge{
  width:52px; height:52px; border-radius:14px; display:grid; place-items:center;
  background:var(--bg-alt); color:var(--blue);
}
.card:hover .icon-badge{ background:var(--grad); color:#fff; }

/* ---------- karty branż ---------- */
.industry-card{ position:relative; overflow:hidden; }
.industry-card::after{
  content:""; position:absolute; right:-30px; bottom:-30px; width:110px; height:110px;
  background:radial-gradient(circle,rgba(47,163,220,.13),transparent 70%);
  border-radius:50%;
}
.industry-card .tags{ display:flex; flex-wrap:wrap; gap:.4rem; margin-top:.9rem; }
.industry-card .tags li{
  font-size:.78rem; font-weight:600; color:var(--navy);
  background:var(--bg-alt); border-radius:999px; padding:.22rem .7rem;
}

/* ---------- karty produktów ---------- */
.product-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; box-shadow:var(--shadow-sm); display:flex; flex-direction:column;
  transition:transform .25s ease, box-shadow .25s ease;
}
.product-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.product-card .ph{
  aspect-ratio:1/1; background:#fff; display:grid; place-items:center; position:relative; overflow:hidden;
  border-bottom:1px solid var(--line);
}
.product-card .ph img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.product-card:hover .ph img{ transform:scale(1.06); }
.product-card .cat-chip{
  position:absolute; top:.75rem; left:.75rem;
  background:rgba(255,255,255,.92); color:var(--green-dark);
  border:1px solid var(--line); font-size:.72rem; font-weight:700;
  letter-spacing:.05em; text-transform:uppercase;
  padding:.2rem .65rem; border-radius:999px;
}
.product-card .body{ padding:1.1rem 1.2rem 1.3rem; display:flex; flex-direction:column; gap:.4rem; flex:1; }
.product-card h3{ font-size:1.05rem; }
.product-card .formula{ font-size:.82rem; font-weight:700; color:var(--sky); letter-spacing:.03em; }
.product-card p{ color:var(--muted); font-size:.9rem; flex:1; }

/* filtry katalogu */
.catalog-tools{ display:flex; flex-wrap:wrap; gap:.8rem; align-items:center; margin-bottom:2rem; }
.catalog-search{ position:relative; flex:1 1 260px; }
.catalog-search input{
  width:100%; padding:.8rem 1.1rem .8rem 2.8rem; border-radius:999px;
  border:1.5px solid var(--line); background:#fff; font:inherit; font-size:.98rem;
  box-shadow:var(--shadow-sm); color:var(--ink);
}
.catalog-search input:focus{ outline:none; border-color:var(--blue); box-shadow:0 0 0 4px rgba(28,116,196,.12); }
.catalog-search svg{ position:absolute; left:1rem; top:50%; transform:translateY(-50%); color:var(--muted); }
.filter-group{ display:flex; flex-wrap:wrap; gap:.5rem; }
.filter-btn{
  border:1.5px solid var(--line); background:#fff; color:var(--ink);
  font:inherit; font-size:.88rem; font-weight:600; cursor:pointer;
  padding:.5rem 1.05rem; border-radius:999px; transition:.2s;
}
.filter-btn:hover{ border-color:var(--sky); color:var(--blue); }
.filter-btn.active{ background:var(--grad); border-color:transparent; color:#fff; box-shadow:0 6px 14px rgba(28,116,196,.3); }
.catalog-empty{
  display:none; text-align:center; padding:3rem 1rem; color:var(--muted);
  border:1.5px dashed var(--line); border-radius:var(--radius); background:#fff;
}
.catalog-count{ font-size:.9rem; color:var(--muted); margin-bottom:1.2rem; }
.catalog-count b{ color:var(--navy); }

/* ---------- sekcja liczbowa ---------- */
.stats-band{ background:var(--grad); color:#fff; }
.stats-band .grid{ text-align:center; }
.stats-band .stat b{ display:block; font-size:clamp(2rem,4vw,3rem); font-weight:800; }
.stats-band .stat span{ opacity:.85; font-size:.95rem; }

/* ---------- split (obraz + tekst) ---------- */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:3.5rem; align-items:center; }
.split .media{ position:relative; }
.split .media img{ border-radius:20px; box-shadow:var(--shadow-lg); border:1px solid var(--line); width:100%; }
.split .media::before{
  content:""; position:absolute; inset:auto -18px -18px auto; width:60%; height:60%;
  border-radius:20px; background:var(--grad-green); opacity:.12; z-index:-1;
}
.split ul.checks{ margin-top:1.4rem; display:grid; gap:.8rem; }
.split ul.checks li{ display:flex; gap:.8rem; align-items:flex-start; color:var(--ink); }
.split ul.checks svg{ flex:none; margin-top:.25rem; color:var(--green); }
@media (max-width:900px){ .split{ grid-template-columns:1fr; gap:2.2rem; } }

/* ---------- oś czasu ---------- */
.timeline{ position:relative; margin-top:2.5rem; }
.timeline::before{
  content:""; position:absolute; left:19px; top:0; bottom:0; width:3px;
  background:linear-gradient(var(--sky),var(--green)); border-radius:2px;
}
.timeline li{ position:relative; padding:0 0 2.2rem 64px; }
.timeline li:last-child{ padding-bottom:0; }
.timeline .year{
  position:absolute; left:0; top:0; width:42px; height:42px; border-radius:50%;
  background:#fff; border:3px solid var(--sky); color:var(--navy);
  display:grid; place-items:center; font-size:.72rem; font-weight:800;
}
.timeline h3{ margin-bottom:.3rem; }
.timeline p{ color:var(--muted); font-size:.97rem; max-width:46rem; }

/* ---------- wartości / ikonki listy ---------- */
.value-list{ display:grid; gap:1.1rem; margin-top:1.6rem; }
.value-list li{
  display:flex; gap:1rem; background:#fff; border:1px solid var(--line);
  border-radius:14px; padding:1.1rem 1.3rem; box-shadow:var(--shadow-sm);
}
.value-list b{ color:var(--navy); display:block; }
.value-list span{ color:var(--muted); font-size:.95rem; }

/* ---------- aktualności ---------- */
.post-card{ display:flex; flex-direction:column; overflow:hidden; padding:0; }
.post-card .thumb{
  height:170px; background:var(--grad); position:relative; overflow:hidden;
  display:grid; place-items:center; color:#fff;
}
.post-card .thumb img{ width:100%; height:100%; object-fit:cover; }
.post-card .thumb .badge{
  position:absolute; top:.8rem; left:.8rem; background:rgba(255,255,255,.93);
  color:var(--navy); font-size:.75rem; font-weight:700; border-radius:999px; padding:.25rem .75rem;
}
.post-card .body{ padding:1.4rem 1.5rem 1.6rem; display:flex; flex-direction:column; gap:.6rem; flex:1; }
.post-card time{ font-size:.82rem; color:var(--muted); font-weight:600; }
.post-card h3{ font-size:1.12rem; margin:0; }
.post-card p{ flex:1; }
.post-card .more{ font-weight:700; font-size:.92rem; color:var(--green-dark); }
.post-card .more:hover{ color:var(--green); }

/* ---------- CTA ---------- */
.cta-band{
  background:var(--navy-deep) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='104' viewBox='0 0 120 104'%3E%3Cpath d='M30 0l30 17.3v34.6L30 69.3 0 52V17.3zM90 34.6l30 17.3v34.6L90 104 60 86.6V52z' fill='none' stroke='%23ffffff' stroke-opacity='.06' stroke-width='1.5'/%3E%3C/svg%3E");
  color:#fff; text-align:center; border-radius:24px; padding:clamp(2.5rem,5vw,4.5rem) 2rem;
  box-shadow:var(--shadow-lg);
}
.cta-band h2{ color:#fff; margin-bottom:.8rem; }
.cta-band p{ color:#c9ddf2; max-width:38rem; margin:0 auto 1.8rem; }
.cta-band .actions{ display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.cta-band .btn-ghost{ background:transparent; color:#fff; border-color:rgba(255,255,255,.35); }
.cta-band .btn-ghost:hover{ border-color:#fff; color:#fff; }

/* ---------- strona nagłówkowa (hero podstron) ---------- */
.page-hero{
  background:
    radial-gradient(700px 300px at 85% 0%, rgba(47,163,220,.16), transparent 60%),
    linear-gradient(180deg,#fff, var(--bg-alt));
  padding:clamp(3rem,6vw,4.5rem) 0;
  border-bottom:1px solid var(--line);
}
.page-hero .lead{ margin-top:1rem; max-width:46rem; }
.breadcrumbs{ font-size:.85rem; color:var(--muted); margin-bottom:1.2rem; }
.breadcrumbs a{ color:var(--muted); }
.breadcrumbs a:hover{ color:var(--blue); }
.breadcrumbs span{ color:var(--navy); font-weight:600; }

/* ---------- kontakt ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1.15fr; gap:2.5rem; align-items:start; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-card{ display:flex; gap:1rem; align-items:flex-start; }
.contact-card .icon-badge{ flex:none; }
.contact-card b{ display:block; color:var(--navy); }
.contact-card a{ font-weight:600; }
.form-card{ background:#fff; border:1px solid var(--line); border-radius:20px; padding:2rem; box-shadow:var(--shadow-md); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }
.field{ margin-bottom:1rem; }
.field label{ display:block; font-size:.88rem; font-weight:700; color:var(--navy); margin-bottom:.35rem; }
.field input,.field textarea,.field select{
  width:100%; padding:.75rem 1rem; border-radius:12px; border:1.5px solid var(--line);
  font:inherit; font-size:.97rem; background:var(--bg); color:var(--ink);
}
.field input:focus,.field textarea:focus,.field select:focus{
  outline:none; border-color:var(--blue); box-shadow:0 0 0 4px rgba(28,116,196,.12); background:#fff;
}
.field textarea{ min-height:130px; resize:vertical; }
.consent-check{ display:flex; gap:.6rem; align-items:flex-start; font-size:.83rem; color:var(--muted); margin:1rem 0 1.3rem; }
.consent-check input{ margin-top:.3rem; }
.form-note{ font-size:.85rem; color:var(--muted); margin-top:1rem; }

/* ---------- treści prawne ---------- */
.legal{ max-width:820px; }
.legal h2{ font-size:1.35rem; margin:2.4rem 0 .8rem; }
.legal h3{ font-size:1.1rem; margin:1.6rem 0 .5rem; }
.legal p,.legal li{ color:#33506b; font-size:.98rem; }
.legal ul,.legal ol{ padding-left:1.4rem; margin:.6rem 0 1rem; }
.legal ul{ list-style:disc; }
.legal ol{ list-style:decimal; }
.legal table{ width:100%; border-collapse:collapse; margin:1rem 0; font-size:.92rem; }
.legal th,.legal td{ border:1px solid var(--line); padding:.6rem .8rem; text-align:left; vertical-align:top; }
.legal th{ background:var(--bg-alt); color:var(--navy); }
.legal .updated{ font-size:.85rem; color:var(--muted); font-style:italic; }

/* ---------- stopka ---------- */
.site-footer{
  background:linear-gradient(180deg,var(--navy-deep),#051d3d);
  color:#b9d0e8; margin-top:4rem; font-size:.95rem;
}
.site-footer .cols{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:2.5rem;
  padding:3.5rem 0 2.5rem;
}
@media (max-width:960px){ .site-footer .cols{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .site-footer .cols{ grid-template-columns:1fr; } }
.site-footer .logo-box{ background:#fff; border-radius:12px; padding:.65rem 1rem; display:inline-block; margin-bottom:1.1rem; }
.site-footer .logo-box img{ height:38px; }
.site-footer h4{ color:#fff; font-size:.95rem; letter-spacing:.08em; text-transform:uppercase; margin-bottom:1.1rem; }
.site-footer ul li{ margin-bottom:.55rem; }
.site-footer a{ color:#b9d0e8; }
.site-footer a:hover{ color:#fff; }
.site-footer .green-dot{ color:#7fc97d; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12); padding:1.2rem 0;
  display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; font-size:.85rem;
}
.footer-bottom button{
  background:none; border:0; color:#b9d0e8; font:inherit; font-size:.85rem;
  cursor:pointer; text-decoration:underline;
}
.footer-bottom button:hover{ color:#fff; }

/* ---------- baner cookies (Consent Mode v2) ---------- */
.cookie-banner{
  position:fixed; z-index:1200; left:1rem; right:1rem; bottom:1rem;
  max-width:520px; margin-inline:auto;
  background:#fff; border:1px solid var(--line); border-radius:20px;
  box-shadow:var(--shadow-lg); padding:1.5rem 1.6rem;
  display:none;
}
.cookie-banner.visible{ display:block; animation:cookieIn .4s ease; }
@keyframes cookieIn{ from{ opacity:0; transform:translateY(24px);} to{ opacity:1; transform:none;} }
.cookie-banner h2{ font-size:1.08rem; display:flex; align-items:center; gap:.55rem; margin-bottom:.5rem; }
.cookie-banner p{ font-size:.88rem; color:var(--muted); margin-bottom:1.1rem; }
.cookie-banner p a{ font-weight:600; }
.cookie-actions{ display:flex; gap:.6rem; flex-wrap:wrap; }
.cookie-actions .btn{ padding:.6rem 1.15rem; font-size:.88rem; }
.cookie-prefs{ display:none; margin:0 0 1.1rem; border-top:1px solid var(--line); padding-top:1rem; }
.cookie-prefs.visible{ display:block; }
.cookie-prefs label{
  display:flex; gap:.7rem; align-items:flex-start; font-size:.86rem;
  padding:.5rem 0; color:var(--ink);
}
.cookie-prefs label b{ color:var(--navy); }
.cookie-prefs label span{ display:block; color:var(--muted); font-size:.8rem; }
.cookie-prefs input{ margin-top:.25rem; }
.cookie-prefs input:disabled{ opacity:.6; }

/* ---------- animacje wejścia ---------- */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible{ opacity:1; transform:none; }
.reveal-d1{ transition-delay:.1s; } .reveal-d2{ transition-delay:.2s; } .reveal-d3{ transition-delay:.3s; }
@media (prefers-reduced-motion:reduce){ .reveal{ opacity:1; transform:none; } }

/* ---------- 404 ---------- */
.err-wrap{ text-align:center; padding:6rem 0; }
.err-wrap .code{
  font-size:clamp(5rem,14vw,9rem); font-weight:800; line-height:1;
  background:var(--grad); -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
}

/* ---------- drobiazgi ---------- */
.mt-1{ margin-top:1rem; } .mt-2{ margin-top:2rem; } .mt-3{ margin-top:3rem; }
.center{ text-align:center; }
.skip-link{
  position:absolute; left:-9999px; top:0; background:var(--navy); color:#fff;
  padding:.6rem 1rem; border-radius:0 0 10px 0; z-index:2000;
}
.skip-link:focus{ left:0; color:#fff; }
