:root{
  --bg:#111a2a;
  --bg2:#0b1220;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --text:#e8edf7;
  --muted:#b8c4db;
  --brand:#39c6ff;
  --brand2:#7cf2ff;
  --line:rgba(255,255,255,.12);
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --radius:18px;
  --max:1120px;
  --ring:0 0 0 4px rgba(57,198,255,.22);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(57,198,255,.08), transparent 75%),
              radial-gradient(900px 500px at 90% 10%, rgba(124,242,255,.05), transparent 75%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  line-height:1.6;
}
a{color:inherit}
img{max-width:100%; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.skip{position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden}
.skip:focus{left:18px; top:18px; width:auto; height:auto; background:#000; padding:10px 12px; border-radius:12px; outline:none; box-shadow:var(--ring); z-index:9999}

.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(7,12,22,.72);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:12px 0;
}
.brand{
  display:flex; align-items:center; gap:12px; text-decoration:none;
}
.brand-badge{
  width:42px; height:42px; border-radius:14px;
  background:linear-gradient(135deg, rgba(57,198,255,.22), rgba(124,242,255,.10));
  border:1px solid rgba(57,198,255,.26);
  box-shadow:0 10px 30px rgba(57,198,255,.12);
  display:grid; place-items:center;
}
.brand-title{font-weight:800; letter-spacing:.2px}
.brand-sub{font-size:12px; color:var(--muted); margin-top:-2px}
.nav{
  display:flex; align-items:center; gap:18px;
}
.nav a{
  text-decoration:none; color:var(--muted);
  font-weight:600; font-size:14px;
  padding:10px 10px; border-radius:12px;
}
.nav a:hover{color:var(--text); background:rgba(255,255,255,.05)}
.nav a[aria-current="page"]{color:var(--text); background:rgba(57,198,255,.12); border:1px solid rgba(57,198,255,.18)}

.actions{display:flex; align-items:center; gap:10px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px; padding:11px 14px; border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  color:var(--text); text-decoration:none;
  font-weight:800; font-size:14px;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}
.btn:hover{background:rgba(255,255,255,.07)}
.btn:focus{outline:none; box-shadow:var(--ring)}
.btn-primary{
  border:1px solid rgba(57,198,255,.35);
  background:linear-gradient(135deg, rgba(57,198,255,.95), rgba(124,242,255,.80));
  color:#03111c;
}
.btn-primary:hover{filter:saturate(1.08) brightness(1.03)}
.icon{
  width:18px; height:18px; opacity:.95;
}

.mobile-toggle{display:none}

.hero{
  padding:54px 0 22px;
}
.hero-grid{
  display:grid; gap:22px;
  grid-template-columns: 1.2fr .8fr;
  align-items:stretch;
}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid rgba(57,198,255,.25);
  background:rgba(57,198,255,.10);
  color:var(--text);
  padding:8px 12px; border-radius:999px;
  font-weight:800; font-size:12px;
}
.h1{
  font-size:44px; line-height:1.1; margin:14px 0 10px;
  letter-spacing:-.6px;
}
.lead{color:var(--muted); font-size:16px; margin:0 0 16px}
.hero-card{
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.hero-list{
  display:grid; gap:10px; margin:0; padding:0; list-style:none;
}
.hero-list li{
  display:flex; gap:10px; align-items:flex-start;
  padding:10px 12px; border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}
.kpi{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:10px;
  margin-top:14px;
}
.kpi .k{
  padding:12px 12px; border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
}
.k .v{font-weight:900; font-size:18px}
.k .l{font-size:12px; color:var(--muted); margin-top:2px}

.section{padding:34px 0}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:16px;
  margin-bottom:16px;
}
.h2{font-size:26px; margin:0; letter-spacing:-.3px}
.sub{margin:0; color:var(--muted); font-size:14px}
.grid{
  display:grid; gap:14px;
  grid-template-columns: repeat(3, 1fr);
}
.card{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  border-radius:var(--radius);
  padding:16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
}
.card:hover{transform:translateY(-1px); transition:transform .16s ease}
.card .title{font-weight:900; margin:0 0 6px}
.card .desc{margin:0; color:var(--muted); font-size:14px}
.card ul{margin:10px 0 0; padding-left:18px; color:var(--muted); font-size:14px}

.two{
  display:grid; gap:14px;
  grid-template-columns: 1fr 1fr;
}
.badges{
  display:flex; flex-wrap:wrap; gap:10px; margin-top:10px
}
.badge{
  padding:8px 10px; border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color:var(--muted);
  font-size:12px; font-weight:800;
}

.cta-band{
  margin:14px 0 8px;
  border:1px solid rgba(57,198,255,.25);
  background:linear-gradient(135deg, rgba(57,198,255,.14), rgba(124,242,255,.07));
  border-radius:22px;
  padding:18px;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.cta-band .big{font-weight:900}
.cta-band .small{color:var(--muted); font-size:14px; margin-top:2px}

.faq details{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  border-radius:16px;
  padding:12px 14px;
}
.faq details + details{margin-top:10px}
.faq summary{
  cursor:pointer;
  font-weight:900;
}
.faq p{color:var(--muted); margin:10px 0 0}

.footer{
  border-top:1px solid var(--line);
  margin-top:26px;
  padding:22px 0;
  color:var(--muted);
  background:rgba(0,0,0,.20);
}
.footer-grid{
  display:grid; gap:12px;
  grid-template-columns: 1.4fr .6fr .6fr;
  align-items:start;
}
.footer a{color:var(--muted); text-decoration:none}
.footer a:hover{color:var(--text)}
.smallprint{font-size:12px; color:rgba(184,196,219,.78); margin-top:10px}

.sticky-call{
  position:fixed; bottom:14px; left:50%;
  transform:translateX(-50%);
  z-index:60;
  display:none;
  width:min(520px, calc(100% - 18px));
  border-radius:18px;
  border:1px solid rgba(57,198,255,.30);
  background:rgba(7,12,22,.78);
  backdrop-filter: blur(14px);
  box-shadow:var(--shadow);
  padding:10px;
}
.sticky-call-inner{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.sticky-call .meta{display:flex; flex-direction:column}
.sticky-call .meta b{font-size:14px}
.sticky-call .meta span{font-size:12px; color:var(--muted)}
.sticky-call .btn{flex:0 0 auto}

.breadcrumbs{color:var(--muted); font-size:12px; margin-top:10px}
.breadcrumbs a{color:var(--muted); text-decoration:none}
.breadcrumbs a:hover{color:var(--text)}

.pagehead{padding:28px 0 10px}
.pagehead h1{margin:0; font-size:34px; letter-spacing:-.5px}
.pagehead p{margin:8px 0 0; color:var(--muted)}

.form{
  display:grid; gap:10px;
}
.input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(0,0,0,.18);
  color:var(--text);
  font-size:14px;
}
textarea{min-height:120px; resize:vertical}
.input:focus, textarea:focus{outline:none; box-shadow:var(--ring); border-color: rgba(57,198,255,.35)}

@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .two{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .h1{font-size:36px}
  .nav{display:none}
  .mobile-toggle{display:inline-flex}
  .sticky-call{display:block}
}
body{
background:#18253a !important;
}

/* ===== FINAL PREMIUM HERO / HEADER FIX ===== */

/* ogólne tło strony - delikatnie ciemniejsze i bardziej premium */
body {
  background:
    radial-gradient(1200px 560px at 16% 0%, rgba(57,198,255,.10), transparent 68%),
    radial-gradient(900px 500px at 86% 8%, rgba(124,242,255,.07), transparent 68%),
    linear-gradient(180deg, #101827 0%, #0c1424 100%) !important;
}

/* nagłówek i stopka */
.topbar,
.footer {
  background: linear-gradient(180deg, rgba(19,29,46,.94), rgba(12,19,31,.96)) !important;
  backdrop-filter: blur(12px);
  border-color: rgba(255,255,255,.10) !important;
}

/* logo + telefon w jednej linii, ale bez przesadzonego rozmiaru */
.topbar-inner {
  flex-wrap: nowrap !important;
  gap: 14px !important;
}
.brand {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
  gap: 10px !important;
}
.brand-badge {
  width: 38px !important;
  height: 38px !important;
  border-radius: 13px !important;
}
.brand-badge img {
  width: 26px !important;
  height: 26px !important;
}
.brand-title {
  white-space: nowrap !important;
  font-size: 17px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: .01em !important;
}
.brand-sub {
  display: none !important;
}
.actions {
  flex: 0 0 auto !important;
  flex-wrap: nowrap !important;
  gap: 10px !important;
}
.actions .btn,
.actions a[href^="tel:"] {
  white-space: nowrap !important;
}
.actions a[href^="tel:"] {
  min-width: 162px !important;
  justify-content: center !important;
}

/* hero - ciemne premium tło z grafiką nowoczesnego domu */
.hero {
  position: relative;
  padding: 56px 0 28px !important;
  background:
    linear-gradient(180deg, rgba(7,12,22,.40), rgba(7,12,22,.18)),
    url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20viewBox%3D%270%200%201600%20900%27%3E%0A%20%20%3Cdefs%3E%0A%20%20%20%20%3ClinearGradient%20id%3D%27bg%27%20x1%3D%270%27%20y1%3D%270%27%20x2%3D%271%27%20y2%3D%271%27%3E%0A%20%20%20%20%20%20%3Cstop%20offset%3D%270%25%27%20stop-color%3D%27%2308111f%27/%3E%0A%20%20%20%20%20%20%3Cstop%20offset%3D%2758%25%27%20stop-color%3D%27%230b1830%27/%3E%0A%20%20%20%20%20%20%3Cstop%20offset%3D%27100%25%27%20stop-color%3D%27%2310294b%27/%3E%0A%20%20%20%20%3C/linearGradient%3E%0A%20%20%20%20%3CradialGradient%20id%3D%27g1%27%20cx%3D%2720%25%27%20cy%3D%2716%25%27%20r%3D%2740%25%27%3E%0A%20%20%20%20%20%20%3Cstop%20offset%3D%270%25%27%20stop-color%3D%27%2339c6ff%27%20stop-opacity%3D%27.28%27/%3E%0A%20%20%20%20%20%20%3Cstop%20offset%3D%27100%25%27%20stop-color%3D%27%2339c6ff%27%20stop-opacity%3D%270%27/%3E%0A%20%20%20%20%3C/radialGradient%3E%0A%20%20%20%20%3CradialGradient%20id%3D%27g2%27%20cx%3D%2788%25%27%20cy%3D%2714%25%27%20r%3D%2732%25%27%3E%0A%20%20%20%20%20%20%3Cstop%20offset%3D%270%25%27%20stop-color%3D%27%237cf2ff%27%20stop-opacity%3D%27.18%27/%3E%0A%20%20%20%20%20%20%3Cstop%20offset%3D%27100%25%27%20stop-color%3D%27%237cf2ff%27%20stop-opacity%3D%270%27/%3E%0A%20%20%20%20%3C/radialGradient%3E%0A%20%20%3C/defs%3E%0A%20%20%3Crect%20width%3D%271600%27%20height%3D%27900%27%20fill%3D%27url%28%23bg%29%27/%3E%0A%20%20%3Crect%20width%3D%271600%27%20height%3D%27900%27%20fill%3D%27url%28%23g1%29%27/%3E%0A%20%20%3Crect%20width%3D%271600%27%20height%3D%27900%27%20fill%3D%27url%28%23g2%29%27/%3E%0A%20%20%3Cg%20opacity%3D%27.12%27%20stroke%3D%27%23c7e8ff%27%20stroke-width%3D%271%27%3E%0A%20%20%20%20%3Cpath%20d%3D%27M0%20740H1600%27/%3E%3Cpath%20d%3D%27M0%20650H1600%27/%3E%3Cpath%20d%3D%27M0%20560H1600%27/%3E%3Cpath%20d%3D%27M0%20470H1600%27/%3E%0A%20%20%20%20%3Cpath%20d%3D%27M180%200V900%27/%3E%3Cpath%20d%3D%27M360%200V900%27/%3E%3Cpath%20d%3D%27M540%200V900%27/%3E%3Cpath%20d%3D%27M720%200V900%27/%3E%0A%20%20%20%20%3Cpath%20d%3D%27M900%200V900%27/%3E%3Cpath%20d%3D%27M1080%200V900%27/%3E%3Cpath%20d%3D%27M1260%200V900%27/%3E%3Cpath%20d%3D%27M1440%200V900%27/%3E%0A%20%20%3C/g%3E%0A%20%20%3Cg%20opacity%3D%27.85%27%20stroke%3D%27%239edfff%27%20stroke-width%3D%273%27%20fill%3D%27none%27%3E%0A%20%20%20%20%3Cpath%20d%3D%27M910%20600H1290V770H760V690L910%20600Z%27/%3E%0A%20%20%20%20%3Cpath%20d%3D%27M1000%20525H1300V770%27/%3E%0A%20%20%20%20%3Cpath%20d%3D%27M1045%20505H1255L1320%20575%27/%3E%0A%20%20%20%20%3Crect%20x%3D%271018%27%20y%3D%27620%27%20width%3D%2782%27%20height%3D%27150%27%20rx%3D%276%27/%3E%0A%20%20%20%20%3Crect%20x%3D%271120%27%20y%3D%27638%27%20width%3D%27112%27%20height%3D%2774%27%20rx%3D%278%27/%3E%0A%20%20%20%20%3Crect%20x%3D%27790%27%20y%3D%27705%27%20width%3D%27122%27%20height%3D%2765%27%20rx%3D%277%27/%3E%0A%20%20%3C/g%3E%0A%20%20%3Cg%20opacity%3D%27.95%27%3E%0A%20%20%20%20%3Ccircle%20cx%3D%271058%27%20cy%3D%27665%27%20r%3D%278%27%20fill%3D%27%239be7ff%27/%3E%0A%20%20%20%20%3Ccircle%20cx%3D%271165%27%20cy%3D%27677%27%20r%3D%278%27%20fill%3D%27%239be7ff%27/%3E%0A%20%20%20%20%3Ccircle%20cx%3D%27855%27%20cy%3D%27735%27%20r%3D%278%27%20fill%3D%27%239be7ff%27/%3E%0A%20%20%20%20%3Ccircle%20cx%3D%271248%27%20cy%3D%27560%27%20r%3D%278%27%20fill%3D%27%239be7ff%27/%3E%0A%20%20%20%20%3Cpath%20d%3D%27M1058%20665C1108%20658%201137%20665%201165%20677%27%20stroke%3D%27%237cf2ff%27%20stroke-width%3D%272%27%20stroke-dasharray%3D%276%208%27%20fill%3D%27none%27/%3E%0A%20%20%20%20%3Cpath%20d%3D%27M1058%20665C984%20683%20924%20712%20855%20735%27%20stroke%3D%27%237cf2ff%27%20stroke-width%3D%272%27%20stroke-dasharray%3D%276%208%27%20fill%3D%27none%27/%3E%0A%20%20%20%20%3Cpath%20d%3D%27M1165%20677C1216%20651%201236%20614%201248%20560%27%20stroke%3D%27%237cf2ff%27%20stroke-width%3D%272%27%20stroke-dasharray%3D%276%208%27%20fill%3D%27none%27/%3E%0A%20%20%3C/g%3E%0A%20%20%3Cg%20opacity%3D%27.7%27%3E%0A%20%20%20%20%3Crect%20x%3D%27138%27%20y%3D%27170%27%20width%3D%27336%27%20height%3D%2774%27%20rx%3D%2718%27%20fill%3D%27rgba%28255%2C255%2C255%2C.04%29%27%20stroke%3D%27%239edfff%27%20stroke-opacity%3D%27.25%27%20stroke-width%3D%272%27/%3E%0A%20%20%20%20%3Crect%20x%3D%27138%27%20y%3D%27274%27%20width%3D%27270%27%20height%3D%2716%27%20rx%3D%278%27%20fill%3D%27%23a7e7ff%27%20fill-opacity%3D%27.14%27/%3E%0A%20%20%20%20%3Crect%20x%3D%27138%27%20y%3D%27309%27%20width%3D%27430%27%20height%3D%2716%27%20rx%3D%278%27%20fill%3D%27%23a7e7ff%27%20fill-opacity%3D%27.10%27/%3E%0A%20%20%20%20%3Crect%20x%3D%27138%27%20y%3D%27344%27%20width%3D%27340%27%20height%3D%2716%27%20rx%3D%278%27%20fill%3D%27%23a7e7ff%27%20fill-opacity%3D%27.10%27/%3E%0A%20%20%3C/g%3E%0A%3C/svg%3E") center/cover no-repeat !important;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.hero::before {
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(640px 320px at 20% 30%, rgba(57,198,255,.18), transparent 70%),
    linear-gradient(90deg, rgba(9,16,28,.72) 0%, rgba(9,16,28,.52) 42%, rgba(9,16,28,.28) 70%, rgba(9,16,28,.12) 100%);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  pointer-events:none;
}
.hero > .container {
  position: relative;
  z-index: 1;
}

/* czytelność tekstu w hero */
.hero .h1,
.hero h1 {
  color: #f3f7ff !important;
  text-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.hero .lead,
.hero p,
.hero .sub {
  color: #d1ddef !important;
}

/* ukryj badge z premium */
.hero .pill {
  display:none !important;
}

/* karty - premium granat, ale czytelne */
.hero-card,
.card,
.kpi .k,
.faq details {
  background: linear-gradient(180deg, rgba(38,57,89,.94), rgba(27,41,66,.98)) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.24) !important;
}
.hero-card .title,
.card .title,
.kpi .k .v,
.faq details summary {
  color: #eef4ff !important;
}
.hero-card .desc,
.card .desc,
.card li,
.hero-list li,
.kpi .k .l,
.faq details p {
  color: #c9d6ea !important;
}

/* badge i przyciski zachowują premium klimat */
.badge {
  background: rgba(34,52,81,.92) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  color: #dce7f7 !important;
}

/* subtelna poprawa sekcji niżej */
.section-head .sub,
.pagehead p,
.breadcrumbs,
.pagehead .sub,
.cta-band .small {
  color:#97a9c3 !important;
}
.cta-band {
  background: linear-gradient(135deg, rgba(57,198,255,.16), rgba(124,242,255,.08)) !important;
  border:1px solid rgba(57,198,255,.18) !important;
}
.cta-band .big {
  color:#eff5ff !important;
}

/* mobilka */
@media (max-width: 1080px) {
  .brand-title { font-size: 16px !important; }
  .actions a[href^="tel:"] { min-width: auto !important; }
}
@media (max-width: 760px) {
  .topbar-inner {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
  .actions {
    width: 100% !important;
    justify-content: space-between !important;
  }
}
