/* SZOD.pl — wariant 3 refined: więcej bieli, błękitu i eleganckie tytuły */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@600;700;800&display=swap');
:root{
  --bg:#F4F8FC;
  --bg-2:#EAF2FA;
  --panel:#FFFFFF;
  --panel-soft:#F7FAFD;
  --panel-elevated:#EAF2FA;
  --line:rgba(255,255,255,.12);
  --line-soft:rgba(255,255,255,.075);

  --text:#0A1726;
  --text-strong:#06111D;
  --muted:#52677E;
  --muted-2:#6F8296;

  --gold:#236FA8;
  --gold-2:#7DBCEB;
  --gold-dark:#0E4E7D;
  --gold-text:#FFFFFF;

  --light:#FFFFFF;
  --light-2:#EAF2FA;
  --light-text:#06111D;
  --light-muted:#52677E;

  --danger:#ff8a8a;
  --success:#86efac;

  --radius-xl:28px;
  --radius-lg:22px;
  --radius-md:18px;
  --shadow:0 28px 90px rgba(0,0,0,.48);
  --max:1280px;
  --ease:cubic-bezier(.16,1,.3,1);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.72;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-3;
  background:radial-gradient(circle at 12% 10%,rgba(35,111,168,.12),transparent 34%),radial-gradient(circle at 82% 8%,rgba(125,188,235,.18),transparent 30%),linear-gradient(135deg,#F7FBFF 0%,#EAF2FA 48%,#DCEAF6 100%);
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);
  background-size:86px 86px;
  mask-image:linear-gradient(to bottom,black,transparent 78%);
  opacity:.45;
}
a{text-decoration:none;color:inherit}
img,svg{max-width:100%;display:block}
p{color:var(--muted)}
ul{padding-left:1.25rem;color:var(--muted)}
li{margin:.4rem 0}
strong,b{color:var(--text-strong)}
.container{width:min(var(--max),calc(100% - 48px));margin:auto}
.serif,.hero h1,.section-title,.page-title,.content h2{font-family:'Playfair Display',Georgia,'Times New Roman',serif;font-weight:700}

/* HEADER */
.topbar{
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  z-index: 50;
  background: rgba(248,251,254,.82);
  border-bottom: 1px solid rgba(10,23,38,.10);
  box-shadow: 0 12px 36px rgba(10,23,38,.06);
}
.nav{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:950;
  color:var(--text);
}
.brand-mark{
  width:44px;height:44px;
  border-radius:16px;
  display:grid;
  place-items:center;
  color:var(--gold-text);
  background:linear-gradient(135deg,#A9D8FF,#F6FBFF);
  box-shadow:0 18px 38px rgba(143,183,216,.19);
  font-weight:950;
}
.brand small{
  display:block;
  font-size:10px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:800;
}
.menu{
  display:flex;
  align-items:center;
  gap:6px;
  list-style:none;
  padding:0;
}
.menu li{margin:0}
.menu a{
  display:block;
  padding:10px 12px;
  border-radius:999px;
  color:var(--muted);
  font-size:13.5px;
  font-weight:800;
}
.menu a:hover,
.menu a.active{
  color:var(--text);
  background:rgba(255,255,255,.075);
}
.menu .nav-cta{
  color:var(--gold-text)!important;
  background:linear-gradient(135deg,#A9D8FF,#F6FBFF)!important;
  padding-inline:16px;
}
.burger{
  display:none;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  color:var(--text);
  border-radius:14px;
  width:44px;
  height:44px;
  font-size:25px;
  cursor:pointer;
}

/* GENERAL */
.kicker{
  display:inline-flex;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(143,183,216,.10);
  border:1px solid rgba(143,183,216,.24);
  color:var(--gold);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:12px;
}
.gradient{
  background:linear-gradient(135deg,#FFFFFF,#DDF2FF,#7BC8FF);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:15px 22px;
  font-weight:950;
  border:1px solid rgba(255,255,255,.13);
  transition:.25s var(--ease);
  cursor:pointer;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  background:linear-gradient(135deg,#A9D8FF,#F6FBFF);
  color:var(--gold-text)!important;
  box-shadow:0 22px 52px rgba(143,183,216,.20);
}
.btn-secondary{
  background:rgba(255,255,255,.055);
  color:var(--text)!important;
}
.btn-light{
  background:var(--light);
  color:var(--light-text)!important;
  border-color:rgba(0,0,0,.08);
}
.actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:30px}

/* HERO */
.hero{
  min-height:92vh;
  display:flex;
  align-items:center;
  padding:128px 0 68px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:38px;
  align-items:center;
}
.hero h1{
  font-size:clamp(38px,5.4vw,72px);
  line-height:.98;
  letter-spacing:-1.6px;
  margin:22px 0;
}
.lead{font-size:18.5px;max-width:790px}
.chips{display:flex;flex-wrap:wrap;gap:9px;margin-top:28px}
.chips span{
  font-size:12px;
  color:var(--muted);
  padding:8px 11px;
  border:1px solid rgba(255,255,255,.09);
  border-radius:999px;
  background:rgba(255,255,255,.035);
}
.visual{position:relative;min-height:520px}
.halo{
  position:absolute;
  right:46px;top:62px;
  width:320px;height:320px;
  border-radius:50%;
  background:radial-gradient(circle at 35% 35%,rgba(255,255,255,.9),rgba(143,183,216,.28) 23%,rgba(255,255,255,.055) 60%,transparent 72%);
  animation:float 7s ease-in-out infinite;
}
.glass{
  position:absolute;
  border-radius:var(--radius-xl);
  background:linear-gradient(180deg,rgba(255,255,255,.13),rgba(255,255,255,.05));
  border:1px solid rgba(234,246,255,.18);
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
  color:var(--text);
}
.main-card{right:0;top:56px;width:min(460px,100%);padding:26px}
.card-top{display:flex;justify-content:space-between;gap:22px;align-items:flex-start}
.seal{
  width:62px;height:62px;
  border-radius:22px;
  background:linear-gradient(135deg,var(--gold),#F4F8FC);
  color:var(--gold-text);
  display:grid;
  place-items:center;
  font-weight:950;
  flex:0 0 auto;
}
.wave{
  height:170px;
  border-radius:24px;
  overflow:hidden;
  margin:24px 0;
  background:linear-gradient(180deg,rgba(143,183,216,.08),rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
}
.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.stat{
  padding:15px;
  border-radius:18px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.08);
}
.stat strong{display:block;color:var(--gold);font-size:24px}
.stat span{color:var(--muted);font-size:12px}
.small-card{left:0;top:220px;width:225px;padding:22px;animation:float 8s ease-in-out infinite}
.effect-card{right:70px;bottom:8px;width:315px;padding:23px}
.progress{
  height:9px;border-radius:999px;
  background:rgba(255,255,255,.10);
  overflow:hidden;margin:18px 0;
}
.progress i{
  display:block;height:100%;width:82%;
  border-radius:inherit;
  background:linear-gradient(90deg,#7BC8FF,#F6FBFF);
}

/* MARQUEE */
.marquee{overflow:hidden;border-block:1px solid var(--line);background:rgba(255,255,255,.025)}
.marquee-track{display:flex;gap:12px;width:max-content;padding:18px 0;animation:marquee 34s linear infinite}
.marquee span{
  white-space:nowrap;
  color:var(--muted);
  padding:10px 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.035);
}

/* SECTIONS */
.section{padding:78px 0}
.section.alt{background:linear-gradient(180deg,rgba(255,255,255,.025),transparent)}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:34px;
  margin-bottom:42px;
}
.section-title{
  font-size:clamp(30px,3.9vw,50px);
  line-height:1.04;
  letter-spacing:-1.3px;
}
.section-head p{max-width:570px}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card,.panel,.content-box{
  border-radius:var(--radius-xl);
  background:linear-gradient(180deg,rgba(255,255,255,.115),rgba(255,255,255,.052));
  border:1px solid rgba(234,246,255,.14);
  box-shadow:0 18px 58px rgba(0,0,0,.22);
}
.card{
  position:relative;
  overflow:hidden;
  padding:26px;
  transition:.32s var(--ease);
}
.card:hover{transform:translateY(-7px);border-color:rgba(143,183,216,.32)}
.icon{
  width:50px;height:50px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:rgba(143,183,216,.11);
  border:1px solid rgba(143,183,216,.20);
  color:var(--gold);
  margin-bottom:18px;
}
.card h3{font-size:22px;margin-bottom:10px}
.split{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.panel{padding:30px;box-shadow:var(--shadow)}
.list-clean{display:grid;gap:12px;margin-top:22px;padding:0}
.list-clean li{
  list-style:none;
  padding:15px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.045);
  border:1px solid rgba(255,255,255,.075);
  color:var(--muted);
}
.tabs{display:flex;flex-wrap:wrap;gap:9px;margin:22px 0}
.tab{
  border:1px solid rgba(255,255,255,.09);
  background:rgba(255,255,255,.055);
  color:var(--muted);
  border-radius:999px;
  padding:12px 15px;
  font-weight:900;
  cursor:pointer;
}
.tab.active{
  color:var(--gold-text);
  background:linear-gradient(135deg,#A9D8FF,#F6FBFF);
}
.tab-panel{display:none}
.tab-panel.active{display:block}
.kpi{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.kpi .panel{text-align:center}
.counter{font-size:40px;line-height:1;font-weight:950;color:var(--gold)}

/* LIGHT SECTIONS - FIXED CONTRAST */
.light-section{
  background:linear-gradient(135deg,#F4F8FC,#DCE7F1);
  color:var(--light-text);
  border-block:1px solid rgba(0,0,0,.08);
}
.light-section p,
.light-section li,
.light-section .muted{
  color:var(--light-muted);
}
.light-section .kicker{
  color:#1A3A58;
  border-color:rgba(79,126,168,.24);
  background:rgba(79,126,168,.08);
}
.light-section .section-title,
.light-section h2,
.light-section h3,
.light-section b,
.light-section strong{
  color:var(--light-text);
}
.light-section .card,
.light-section .panel,
.light-section .content-box{
  background:rgba(255,255,255,.58);
  border-color:rgba(0,0,0,.08);
  box-shadow:0 22px 60px rgba(85,58,16,.14);
  color:var(--light-text);
}
.light-section .btn-secondary{
  background:rgba(21,17,10,.08);
  color:var(--light-text)!important;
  border-color:rgba(21,17,10,.14);
}

/* PAGE */
.page-hero{padding:150px 0 58px}
.breadcrumbs{
  color:var(--gold);
  font-weight:900;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:1px;
}
.page-title{
  font-size:clamp(42px,5.5vw,78px);
  line-height:1;
  letter-spacing:-2px;
  margin:18px 0;
}
.page-lead{font-size:19px;max-width:850px}
.content-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:24px}
.content{display:grid;gap:22px}
.content h2{
  font-size:36px;
  line-height:1.08;
  margin-bottom:6px;
}
.content h3{font-size:22px;margin:6px 0}
.content-box{padding:28px}
.note{
  border-left:4px solid var(--gold);
  padding:18px 20px;
  background:rgba(143,183,216,.08);
  border-radius:0 var(--radius-md) var(--radius-md) 0;
  color:var(--muted);
}

/* FORM */
.contact-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:24px}
.form{display:grid;gap:16px}
.form label{display:grid;gap:7px;color:var(--text);font-weight:850}
.form input,.form textarea{
  width:100%;
  border:1px solid rgba(234,246,255,.16);
  border-radius:18px;
  background:rgba(255,255,255,.055);
  color:var(--text);
  padding:15px 16px;
  font:inherit;
  outline:none;
}
.form input::placeholder,.form textarea::placeholder{color:#7F8EA1}
.form input:focus,.form textarea:focus{
  border-color:rgba(143,183,216,.48);
  box-shadow:0 0 0 4px rgba(143,183,216,.10);
}
.check{
  display:flex!important;
  flex-direction:row;
  align-items:flex-start;
  gap:10px;
  color:var(--muted)!important;
  font-weight:600!important;
}
.check input{width:auto;margin-top:6px}
.error{display:none;color:var(--danger);font-size:13px}
.field-error input,.field-error textarea{border-color:var(--danger)}
.field-error .error{display:block}
.form-message{
  padding:14px 16px;
  border-radius:18px;
  display:none;
}
.form-message.show{
  display:block;
  background:rgba(143,183,216,.12);
  border:1px solid rgba(143,183,216,.22);
}

/* FOOTER */
.footer{padding:62px 0 30px;border-top:1px solid var(--line);background:rgba(0,0,0,.18)}
.footer-grid{display:grid;grid-template-columns:1.35fr 1fr 1fr 1fr;gap:28px}
.footer h4{margin-bottom:14px}
.footer a,.footer p{display:block;color:var(--muted);margin-bottom:8px}
.footer a:hover{color:var(--gold)}
.bottom{
  margin-top:32px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  color:#7F8EA1;
  font-size:13px;
}

/* THANK YOU */
.thanks{
  min-height:80vh;
  display:grid;
  place-items:center;
  padding:140px 0 70px;
}
.thanks .panel{max-width:760px;text-align:center}

/* ANIMATIONS */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.reveal.active{opacity:1;transform:none}
.delay-1{transition-delay:.08s}
.delay-2{transition-delay:.16s}
.delay-3{transition-delay:.24s}
@keyframes float{50%{transform:translateY(-16px) rotate(2deg)}}
@keyframes marquee{to{transform:translateX(-50%)}}

/* RESPONSIVE */
@media(max-width:1100px){
  .menu{
    display:none;
    position:absolute;
    top:84px;
    left:24px;
    right:24px;
    padding:14px;
    border-radius:24px;
    background:#FFFFFF;
    border:1px solid var(--line);
    box-shadow:var(--shadow);
    flex-direction:column;
    align-items:stretch;
  }
  .menu.open{display:flex}
  .menu a{padding:13px 14px}
  .burger{display:block}
  .hero-grid,.split,.content-grid,.contact-grid{grid-template-columns:1fr}
  .visual{min-height:520px}
  .cards{grid-template-columns:1fr 1fr}
  .kpi{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .section-head{display:block}
}
@media(max-width:680px){
  .container{width:min(100% - 32px,var(--max))}
  .nav{height:76px}
  .menu{top:76px;left:16px;right:16px}
  .hero{padding-top:124px}
  .hero h1,.page-title{font-size:38px;letter-spacing:-1.2px}
  .lead,.page-lead{font-size:17px}
  .actions .btn{width:100%}
  .visual{min-height:auto}
  .halo{display:none}
  .glass{position:relative;left:auto!important;right:auto!important;top:auto!important;bottom:auto!important;width:100%!important;margin-top:16px}
  .cards,.kpi,.footer-grid{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
  .section{padding:68px 0}
  .panel,.card,.content-box{padding:24px}
  .page-hero{padding-top:126px}
}

/* RICH FINAL EXTENSION */
.image-band{display:grid;grid-template-columns:1.05fr .95fr;gap:24px;align-items:stretch}
.visual-frame{position:relative;min-height:380px;border-radius:var(--radius-xl);overflow:hidden;border:1px solid rgba(234,246,255,.16);background:radial-gradient(circle at 20% 18%,rgba(143,183,216,.25),transparent 34%),linear-gradient(145deg,rgba(255,255,255,.10),rgba(255,255,255,.035));box-shadow:var(--shadow)}
.visual-frame img,.visual-frame svg{width:100%;height:100%;min-height:380px;object-fit:cover}
.visual-caption{position:absolute;left:22px;right:22px;bottom:22px;padding:18px;border-radius:22px;background:rgba(8,21,38,.70);border:1px solid rgba(234,246,255,.18);backdrop-filter:blur(16px)}
.visual-caption h3{margin-bottom:4px;color:var(--text)}
.visual-caption p{font-size:14px;color:var(--muted)}
.service-matrix{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.matrix-item{padding:22px;border-radius:24px;background:linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,.052));border:1px solid rgba(255,255,255,.10)}
.matrix-item h3{margin-bottom:8px;color:var(--text)}
.matrix-item p{font-size:15px;color:var(--muted)}
.process-line{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.process-step{padding:24px;border-radius:26px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.10)}
.num-small{display:inline-grid;place-items:center;width:40px;height:40px;border-radius:14px;margin-bottom:15px;color:var(--gold-text);background:linear-gradient(135deg,#A9D8FF,#F6FBFF);font-weight:950}
.rich-list{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:20px}
.rich-list div{padding:18px;border-radius:20px;background:rgba(255,255,255,.045);border:1px solid rgba(255,255,255,.08)}
.rich-list b{display:block;margin-bottom:5px;color:var(--text)}
.rich-list p{font-size:15px;color:var(--muted)}
.page-illustration{margin-top:26px;border-radius:var(--radius-xl);overflow:hidden;border:1px solid rgba(234,246,255,.16);background:linear-gradient(135deg,rgba(143,183,216,.16),rgba(255,255,255,.04));box-shadow:0 22px 70px rgba(0,0,0,.32)}
.page-illustration img{width:100%;height:auto;display:block}
.footer-lead{color:var(--muted);max-width:440px}
@media(max-width:1050px){.image-band,.service-matrix,.process-line,.rich-list{grid-template-columns:1fr}}


/* CLEAN LIGHT REVERSAL OVERRIDES */
body{
  background:#F4F8FC;
  color:#0A1726;
}
body::before{
  background:
    radial-gradient(circle at 12% 10%,rgba(35,111,168,.12),transparent 34%),
    radial-gradient(circle at 84% 10%,rgba(125,188,235,.18),transparent 30%),
    radial-gradient(circle at 50% 88%,rgba(35,111,168,.08),transparent 44%),
    linear-gradient(135deg,#F8FBFE 0%,#EDF4FA 48%,#DCEAF6 100%);
}
body::after{
  background-image:
    linear-gradient(rgba(10,23,38,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(10,23,38,.045) 1px,transparent 1px);
  opacity:.55;
}
p, ul, li{color:#52677E}
strong,b{color:#06111D}
.topbar{
  background:rgba(248,251,254,.82);
  border-bottom:1px solid rgba(10,23,38,.10);
  box-shadow:0 12px 36px rgba(10,23,38,.06);
}
.brand{color:#06111D}
.brand-mark{
  color:#FFFFFF;
  background:linear-gradient(135deg,#0E4E7D,#236FA8 48%,#7DBCEB);
}
.brand small{color:#6F8296}
.menu a{color:#40576E}
.menu a:hover,.menu a.active{
  color:#06111D;
  background:rgba(35,111,168,.08);
}
.menu .nav-cta,.btn-primary,.tab.active,.num-small{
  color:#FFFFFF!important;
  background:linear-gradient(135deg,#0E4E7D,#236FA8 52%,#7DBCEB)!important;
  box-shadow:0 18px 44px rgba(35,111,168,.22);
}
.btn-secondary{
  color:#0A1726!important;
  background:rgba(255,255,255,.76);
  border-color:rgba(10,23,38,.12);
}
.kicker{
  color:#0E4E7D;
  background:rgba(35,111,168,.08);
  border-color:rgba(35,111,168,.18);
}
.gradient{
  background:linear-gradient(135deg,#06111D,#236FA8,#7DBCEB);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.chips span,.marquee span{
  color:#52677E;
  background:rgba(255,255,255,.72);
  border-color:rgba(10,23,38,.10);
}
.glass,.card,.panel,.content-box,.matrix-item,.process-step,.rich-list div{
  background:rgba(255,255,255,.78)!important;
  border:1px solid rgba(10,23,38,.10)!important;
  color:#0A1726!important;
  box-shadow:0 24px 70px rgba(10,23,38,.10)!important;
}
.glass p,.card p,.panel p,.content-box p,.matrix-item p,.rich-list p{color:#52677E!important}
.card h3,.panel h3,.matrix-item h3,.visual-caption h3{color:#06111D!important}
.halo{
  background:radial-gradient(circle at 35% 35%,rgba(255,255,255,.95),rgba(125,188,235,.46) 24%,rgba(35,111,168,.14) 60%,transparent 72%);
}
.visual-caption{
  background:rgba(255,255,255,.82)!important;
  border-color:rgba(10,23,38,.10)!important;
}
.visual-caption p{color:#52677E!important}
.wave,.visual-frame,.page-illustration{
  background:linear-gradient(145deg,rgba(255,255,255,.92),rgba(220,234,246,.76))!important;
  border-color:rgba(10,23,38,.10)!important;
}
.stat{
  background:rgba(244,248,252,.82);
  border-color:rgba(10,23,38,.08);
}
.stat strong,.counter{color:#236FA8}
.stat span{color:#52677E}
.progress{background:rgba(10,23,38,.08)}
.progress i{background:linear-gradient(90deg,#0E4E7D,#7DBCEB)}
.section.alt,.light-section{
  background:linear-gradient(180deg,rgba(255,255,255,.55),rgba(220,234,246,.35));
}
.footer{
  background:#06111D;
  border-top:1px solid rgba(255,255,255,.10);
}
.footer h4,.footer b,.footer strong{color:#FFFFFF}
.footer p,.footer a,.bottom{color:#B8C4D2}
.footer a:hover{color:#7DBCEB}
.form label{color:#06111D}
.form input,.form textarea{
  background:#FFFFFF;
  color:#06111D;
  border-color:rgba(10,23,38,.15);
}
.form input::placeholder,.form textarea::placeholder{color:#7F8EA1}
.form input:focus,.form textarea:focus{
  border-color:#236FA8;
  box-shadow:0 0 0 4px rgba(35,111,168,.12);
}
.check{color:#52677E!important}
.note{
  background:rgba(35,111,168,.08);
  border-left-color:#236FA8;
  color:#52677E;
}
@media(max-width:1100px){
  .menu{background:#FFFFFF;border-color:rgba(10,23,38,.12)}
  .burger{background:#FFFFFF;color:#06111D;border-color:rgba(10,23,38,.14)}
}


/* BETTER IMAGE STYLE OVERRIDES */
.visual-frame{
  background:#FFFFFF!important;
  border-color:rgba(10,23,38,.10)!important;
}
.visual-frame img,
.page-illustration img{
  object-fit:cover;
  filter:none;
}
.page-illustration{
  background:#FFFFFF!important;
}
.hero .wave{
  background:linear-gradient(145deg,#FFFFFF,#EAF2FA)!important;
}


/* FINAL PEOPLE IMAGE INTEGRATION */
.hero-photo-card{
  position:absolute;
  right:0;
  top:40px;
  width:min(540px,100%);
  border-radius:32px;
  overflow:hidden;
  background:#FFFFFF;
  border:1px solid rgba(10,23,38,.10);
  box-shadow:0 28px 80px rgba(10,23,38,.14);
}
.hero-photo-card img{
  width:100%;
  height:390px;
  object-fit:cover;
  display:block;
}
.hero-photo-caption{
  padding:20px 22px;
  background:rgba(255,255,255,.92);
}
.hero-photo-caption b{
  display:block;
  color:#06111D;
  margin-bottom:4px;
}
.hero-photo-caption p{
  color:#52677E;
  font-size:15px;
}
.hero-floating-note{
  position:absolute;
  left:0;
  bottom:70px;
  max-width:270px;
  padding:20px;
  border-radius:24px;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(10,23,38,.10);
  box-shadow:0 22px 60px rgba(10,23,38,.12);
  backdrop-filter:blur(14px);
}
.hero-floating-note b{color:#06111D}
.hero-floating-note p{font-size:14px;color:#52677E}

.photo-strip{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.photo-tile{
  overflow:hidden;
  border-radius:28px;
  background:#FFFFFF;
  border:1px solid rgba(10,23,38,.10);
  box-shadow:0 20px 58px rgba(10,23,38,.10);
}
.photo-tile img{
  width:100%;
  height:250px;
  object-fit:cover;
  display:block;
}
.photo-tile div{
  padding:18px 20px;
}
.photo-tile h3{
  color:#06111D;
  margin-bottom:5px;
}
.photo-tile p{
  color:#52677E;
  font-size:15px;
}

.page-illustration img,
.visual-frame img{
  object-fit:cover;
  max-height:520px;
}

@media(max-width:1050px){
  .hero-photo-card,.hero-floating-note{
    position:relative;
    left:auto;
    right:auto;
    top:auto;
    bottom:auto;
    width:100%;
    max-width:none;
    margin-top:16px;
  }
  .visual{min-height:auto}
  .photo-strip{grid-template-columns:1fr}
}
@media(max-width:680px){
  .hero-photo-card img{height:280px}
  .photo-tile img{height:230px}
}


/* FINAL READY VERSION */
.hero-photo-card{width:min(560px,100%);}
.hero-photo-card img{height:410px;object-fit:cover;}
.photo-tile img{height:270px;object-fit:cover;}
.page-illustration img{width:100%;height:430px;object-fit:cover;}
.card,.panel,.content-box,.photo-tile,.matrix-item{transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;}
.card:hover,.photo-tile:hover,.matrix-item:hover{transform:translateY(-5px);box-shadow:0 30px 80px rgba(10,23,38,.13)!important;border-color:rgba(35,111,168,.22)!important;}
.final-cta{background:linear-gradient(135deg,#0E4E7D,#236FA8 55%,#7DBCEB);color:#fff;border-radius:32px;padding:42px;box-shadow:0 30px 90px rgba(35,111,168,.24);}
.final-cta h2,.final-cta p,.final-cta b,.final-cta strong{color:#fff!important;}
.final-cta p{opacity:.9;}
.final-cta .btn-secondary{background:rgba(255,255,255,.13);color:#fff!important;border-color:rgba(255,255,255,.22);}
.footer p,.footer a{font-size:15px;}
@media(max-width:680px){.hero-photo-card img{height:300px}.page-illustration img{height:260px}.photo-tile img{height:240px}.final-cta{padding:28px}}

/* SEO PRO FINAL CONTENT POLISH */
.content-box p{font-size:16.5px;line-height:1.82}
.content-box li{font-size:16px;line-height:1.72;margin:.48rem 0}
.page-lead{font-size:20px;line-height:1.72}
.page-hero .page-illustration{margin-top:34px}
.page-illustration img{width:100%;height:430px;object-fit:cover;border-radius:inherit}


/* PRODUCTION V2 — strony usługowe bez pustych sekcji */
.page-hero{
  padding-bottom:38px;
}
.page-title{
  max-width:1060px;
}
.page-lead{
  max-width:980px;
}
.production-grid{
  display:grid;
  grid-template-columns:minmax(0,1.18fr) 380px;
  gap:26px;
  align-items:start;
}
.production-main{
  display:grid;
  gap:22px;
}
.production-aside{
  position: static;
  top: auto;
  display: grid;
  gap: 18px;
  align-self: start;
}
.side-card{
  padding:24px;
  border-radius:28px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(10,23,38,.10);
  box-shadow:0 22px 60px rgba(10,23,38,.10);
}
.side-card h3{
  margin:10px 0 10px;
  color:#06111D;
  font-size:22px;
}
.side-card p,
.side-card li{
  color:#52677E;
  font-size:15.5px;
}
.side-card ul{
  padding-left:1.15rem;
}
.service-section{
  padding:30px;
  border-radius:30px;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(10,23,38,.10);
  box-shadow:0 24px 70px rgba(10,23,38,.10);
}
.service-section h2{
  font-family:'Playfair Display', Georgia, 'Times New Roman', serif;
  color:#06111D;
  font-size:34px;
  line-height:1.12;
  margin-bottom:12px;
}
.service-section h3{
  color:#06111D;
  font-size:21px;
  margin:18px 0 8px;
}
.service-section p{
  color:#52677E;
  font-size:16.5px;
  line-height:1.82;
  margin:10px 0;
}
.service-section ul{
  margin-top:12px;
}
.service-section li{
  color:#52677E;
  font-size:16px;
  line-height:1.72;
  margin:.45rem 0;
}
.inline-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.inline-box{
  border-radius:22px;
  padding:18px;
  background:#F4F8FC;
  border:1px solid rgba(10,23,38,.08);
}
.inline-box b{
  display:block;
  color:#06111D;
  margin-bottom:6px;
}
.inline-box p{
  margin:0;
  font-size:15px;
}
.page-illustration{
  margin-top:30px;
}
.page-illustration img{
  width:100%;
  height:430px;
  object-fit:cover;
  object-position:center;
}
.cta-panel{
  margin-top:22px;
  padding:34px;
  border-radius:30px;
  background:linear-gradient(135deg,#0E4E7D,#236FA8 55%,#7DBCEB);
  color:#fff;
  box-shadow:0 30px 90px rgba(35,111,168,.24);
}
.cta-panel h2,
.cta-panel p{
  color:#fff!important;
}
.cta-panel p{
  opacity:.9;
}
.cta-panel .btn-secondary{
  color:#fff!important;
  border-color:rgba(255,255,255,.25);
  background:rgba(255,255,255,.12);
}
.seo-faq{
  display:grid;
  gap:14px;
}
.faq-box{
  padding:20px;
  border-radius:22px;
  background:#F4F8FC;
  border:1px solid rgba(10,23,38,.08);
}
.faq-box h3{
  margin:0 0 8px;
  font-size:19px;
}
.faq-box p{
  margin:0;
  font-size:15.5px;
}
.hero-photo-card img{
  object-position:center;
}
@media(max-width:1100px){
  .production-grid{
    grid-template-columns:1fr;
  }
  .production-aside{
    position:relative;
    top:auto;
  }
}
@media(max-width:760px){
  .inline-grid{
    grid-template-columns:1fr;
  }
  .service-section{
    padding:24px;
  }
  .service-section h2{
    font-size:29px;
  }
  .page-illustration img{
    height:260px;
  }
}


/* V3 — kontakt i baza wiedzy */
.contact-photo-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:26px;
  align-items:start;
}
.contact-visual-card{
  overflow:hidden;
  border-radius:30px;
  background:#fff;
  border:1px solid rgba(10,23,38,.10);
  box-shadow:0 24px 70px rgba(10,23,38,.10);
}
.contact-visual-card img{
  width:100%;
  height:360px;
  object-fit:cover;
  display:block;
}
.contact-visual-card div{
  padding:22px 24px;
}
.contact-visual-card h2{
  font-family:'Playfair Display', Georgia, 'Times New Roman', serif;
  color:#06111D;
  font-size:30px;
  line-height:1.15;
  margin-bottom:8px;
}
.contact-visual-card p{
  color:#52677E;
  font-size:16px;
}
.knowledge-categories{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:24px;
}
.knowledge-category{
  padding:20px;
  border-radius:24px;
  background:#fff;
  border:1px solid rgba(10,23,38,.10);
  box-shadow:0 18px 50px rgba(10,23,38,.08);
}
.knowledge-category b{
  display:block;
  color:#06111D;
  margin-bottom:6px;
}
.knowledge-category p{
  color:#52677E;
  font-size:15px;
  margin:0;
}
.faq-production{
  display:grid;
  gap:16px;
}
.faq-production article{
  padding:24px;
  border-radius:26px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(10,23,38,.10);
  box-shadow:0 18px 58px rgba(10,23,38,.08);
}
.faq-production h2{
  font-family:'Playfair Display', Georgia, 'Times New Roman', serif;
  color:#06111D;
  font-size:28px;
  line-height:1.18;
  margin-bottom:10px;
}
.faq-production p{
  color:#52677E;
  font-size:16.3px;
  line-height:1.78;
  margin:8px 0;
}
.faq-production ul{
  margin-top:10px;
}
.faq-production li{
  color:#52677E;
  font-size:15.8px;
  line-height:1.68;
  margin:.35rem 0;
}
.knowledge-hero-photo{
  margin-top:30px;
  border-radius:30px;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(10,23,38,.10);
  box-shadow:0 24px 70px rgba(10,23,38,.10);
}
.knowledge-hero-photo img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
}
@media(max-width:1100px){
  .contact-photo-grid{grid-template-columns:1fr}
  .knowledge-categories{grid-template-columns:1fr}
}
@media(max-width:680px){
  .contact-visual-card img,.knowledge-hero-photo img{height:260px}
}


/* V4 — no duplicate image corrections */
.contact-no-photo{
  background:linear-gradient(135deg,#FFFFFF,#EAF2FA)!important;
  min-height:360px;
  display:flex;
  align-items:center;
}
.contact-no-photo div{
  padding:34px!important;
}
.contact-no-photo h2{
  font-size:34px;
}
.contact-no-photo:before{
  content:"RODO · IOD · AUDYT · SZBI";
  display:inline-flex;
  position:absolute;
  top:24px;
  left:24px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(35,111,168,.09);
  color:#0E4E7D;
  font-size:12px;
  font-weight:900;
  letter-spacing:.05em;
}
.contact-no-photo{
  position:relative;
}


/* V5 premium visuals, icons and animations */
@keyframes floatSoft {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}
@keyframes pulseGlow {
  0% { box-shadow: 0 18px 48px rgba(35,111,168,.08); }
  50% { box-shadow: 0 26px 72px rgba(35,111,168,.16); }
  100% { box-shadow: 0 18px 48px rgba(35,111,168,.08); }
}
.premium-visual{
  overflow:hidden;
  position:relative;
  border-radius:30px;
  background:#fff;
  border:1px solid rgba(10,23,38,.10);
  box-shadow:0 24px 70px rgba(10,23,38,.10);
  animation: pulseGlow 8s ease-in-out infinite;
}
.premium-visual img{
  width:100%;
  height:360px;
  object-fit:cover;
  display:block;
}
.premium-visual::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 22%, rgba(125,188,235,.24), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(35,111,168,.16), transparent 28%);
  pointer-events:none;
}
.premium-visual .visual-content{
  position:relative;
  z-index:2;
  padding:22px 24px;
}
.premium-visual.floating{
  animation: floatSoft 7s ease-in-out infinite, pulseGlow 8s ease-in-out infinite;
}
.icon-badge-row{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-top:20px;
}
.icon-badge{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:18px;
  border-radius:22px;
  background:#F7FBFE;
  border:1px solid rgba(10,23,38,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.icon-badge:hover{
  transform:translateY(-5px);
  border-color:rgba(35,111,168,.18);
  box-shadow:0 18px 48px rgba(10,23,38,.08);
}
.icon-badge svg{
  width:38px;
  height:38px;
  flex:0 0 38px;
}
.icon-badge b{
  display:block;
  margin-bottom:5px;
  color:#06111D;
}
.icon-badge p{
  margin:0;
  color:#52677E;
  font-size:14.8px;
}
.knowledge-categories .knowledge-category{
  position:relative;
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.knowledge-categories .knowledge-category:hover{
  transform:translateY(-5px);
  border-color:rgba(35,111,168,.18);
  box-shadow:0 22px 60px rgba(10,23,38,.09);
}
.knowledge-categories .knowledge-category::before{
  content:"";
  position:absolute;
  top:-40px;
  right:-40px;
  width:120px;
  height:120px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(125,188,235,.22), transparent 70%);
}
.knowledge-icon{
  width:42px;
  height:42px;
  margin-bottom:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:linear-gradient(135deg,#0E4E7D,#7DBCEB);
  box-shadow:0 16px 38px rgba(35,111,168,.20);
}
.knowledge-icon svg{
  width:22px;
  height:22px;
}
.section-heading-premium{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:20px;
}
.section-heading-premium .tiny-note{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(35,111,168,.08);
  color:#0E4E7D;
  font-size:12px;
  font-weight:800;
  letter-spacing:.05em;
}
.faq-production article{
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.faq-production article:hover{
  transform:translateY(-4px);
  border-color:rgba(35,111,168,.18);
  box-shadow:0 24px 64px rgba(10,23,38,.08);
}
@media(max-width:760px){
  .icon-badge-row{grid-template-columns:1fr}
  .section-heading-premium{flex-direction:column; align-items:flex-start;}
}


/* V6 — spójne obrazy foto na Kontakt / Baza wiedzy / NIS2 */
.contact-photo-grid .premium-visual img,
.knowledge-hero-photo.premium-visual img,
.page-illustration.premium-visual img{
  object-fit: cover;
  object-position: center;
}
.knowledge-hero-photo.premium-visual img{
  height: 420px;
}


/* V7 PREMIUM FINAL — typografia, odstępy, animacje, ikony */
html{
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body{
  letter-spacing:-0.01em;
}
.topbar{
  backdrop-filter: blur(18px);
}
.nav .menu a{
  transition: color .25s ease, transform .25s ease, opacity .25s ease;
}
.nav .menu a:hover{
  transform: translateY(-1px);
}
.section,
.page-hero{
  position: relative;
}
.section::before,
.page-hero::before{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(35,111,168,.10),transparent);
  pointer-events:none;
}
.hero h1,
.page-title,
.section-title,
.service-section h2,
.contact-visual-card h2,
.faq-production h2{
  letter-spacing:-0.03em;
}
.hero .lead,
.page-lead,
.service-section p{
  max-width: 74ch;
}
.hero .chips span,
.chips span{
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.hero .chips span:hover,
.chips span:hover{
  transform: translateY(-3px);
  border-color: rgba(35,111,168,.22);
  background: rgba(255,255,255,.98);
  box-shadow: 0 16px 38px rgba(10,23,38,.08);
}
.btn{
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.btn:hover{
  transform: translateY(-2px);
}
.visual-frame,
.hero-photo-card,
.page-illustration,
.photo-tile,
.premium-visual{
  overflow:hidden;
}
.visual-frame img,
.hero-photo-card img,
.page-illustration img,
.photo-tile img,
.premium-visual img{
  transition: transform .7s ease;
}
.visual-frame:hover img,
.hero-photo-card:hover img,
.page-illustration:hover img,
.photo-tile:hover img,
.premium-visual:hover img{
  transform: scale(1.03);
}
.visual-frame::before,
.hero-photo-card::before,
.page-illustration::before,
.photo-tile::before,
.premium-visual::before{
  content:"";
  position:absolute;
  inset:-100% auto auto -120%;
  width:55%;
  height:260%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.22),transparent);
  transform:rotate(18deg);
  transition: transform .9s ease;
  pointer-events:none;
  z-index:2;
}
.visual-frame:hover::before,
.hero-photo-card:hover::before,
.page-illustration:hover::before,
.photo-tile:hover::before,
.premium-visual:hover::before{
  transform:translateX(320%) rotate(18deg);
}
.hero-chip-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:28px;
}
.hero-chip{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:18px 18px 17px;
  border-radius:22px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(10,23,38,.08);
  box-shadow:0 18px 44px rgba(10,23,38,.06);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.hero-chip:hover{
  transform:translateY(-5px);
  border-color:rgba(35,111,168,.18);
  box-shadow:0 24px 60px rgba(10,23,38,.10);
}
.hero-chip .chip-icon,
.page-highlights .chip-icon{
  width:42px;
  height:42px;
  flex:0 0 42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:linear-gradient(135deg,#0E4E7D,#7DBCEB);
  box-shadow:0 12px 32px rgba(35,111,168,.18);
}
.hero-chip .chip-icon svg,
.page-highlights .chip-icon svg{
  width:22px;
  height:22px;
}
.hero-chip b{
  display:block;
  color:#06111D;
  margin-bottom:5px;
  font-size:15px;
}
.hero-chip p{
  margin:0;
  color:#52677E;
  font-size:14.6px;
  line-height:1.55;
}
.page-highlights{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:24px;
}
.page-highlights .highlight{
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(10,23,38,.08);
  box-shadow:0 16px 40px rgba(10,23,38,.06);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.page-highlights .highlight:hover{
  transform:translateY(-4px);
  border-color:rgba(35,111,168,.18);
  box-shadow:0 22px 54px rgba(10,23,38,.09);
}
.page-highlights .highlight b{
  display:block;
  margin:10px 0 4px;
  color:#06111D;
}
.page-highlights .highlight p{
  margin:0;
  font-size:14.8px;
  line-height:1.55;
  color:#52677E;
}
.production-aside .side-card{
  position:relative;
}
.production-aside .side-card::after{
  content:"";
  position:absolute;
  right:-40px;
  bottom:-40px;
  width:120px;
  height:120px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(125,188,235,.15), transparent 70%);
  pointer-events:none;
}
.bottom{
  gap:16px;
}
@media(max-width:1100px){
  .hero-chip-grid,
  .page-highlights{
    grid-template-columns:1fr;
  }
}


/* V8 CLEAN VISUAL FINAL — mniej ciężaru, więcej porządku */
:root{
  --clean-shadow: 0 12px 34px rgba(10,23,38,.06);
  --clean-shadow-hover: 0 18px 42px rgba(10,23,38,.09);
}

.container{
  max-width: 1240px;
}

.section::before,
.page-hero::before{
  display:none;
}

.hero,
.page-hero,
.section{
  overflow: hidden;
}

.hero{
  padding-bottom: 86px;
}

.hero-grid{
  gap: 42px;
}

.hero h1{
  max-width: 12ch;
}

.lead,
.page-lead{
  font-size: 18px !important;
  line-height: 1.8 !important;
  color: #52677E !important;
}

.hero-chip-grid{
  gap: 12px;
  margin-top: 24px;
}

.hero-chip{
  padding: 14px 15px;
  border-radius: 18px;
  box-shadow: var(--clean-shadow);
  background: rgba(255,255,255,.78);
}

.hero-chip .chip-icon,
.page-highlights .chip-icon,
.knowledge-icon{
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 12px;
  box-shadow: none;
}

.hero-chip b,
.page-highlights .highlight b{
  font-size: 14.5px;
}

.hero-chip p,
.page-highlights .highlight p{
  font-size: 13.8px;
  line-height: 1.5;
}

.visual-frame,
.hero-photo-card,
.page-illustration,
.photo-tile,
.premium-visual,
.service-section,
.side-card,
.panel,
.contact-visual-card,
.knowledge-category,
.faq-production article{
  box-shadow: var(--clean-shadow) !important;
  border-color: rgba(10,23,38,.08) !important;
}

.visual-frame:hover,
.hero-photo-card:hover,
.page-illustration:hover,
.photo-tile:hover,
.premium-visual:hover,
.service-section:hover,
.side-card:hover,
.panel:hover,
.contact-visual-card:hover,
.knowledge-category:hover,
.faq-production article:hover{
  box-shadow: var(--clean-shadow-hover) !important;
}

.service-section{
  padding: 28px;
  border-radius: 24px;
}

.service-section h2{
  font-size: 31px;
  margin-bottom: 10px;
}

.service-section p{
  font-size: 16px;
  line-height: 1.78;
}

.production-grid{
  gap: 22px;
  grid-template-columns: minmax(0,1.18fr) 340px;
}

.production-main{
  gap: 18px;
}

.production-aside{
  gap: 14px;
}

.side-card{
  padding: 20px;
  border-radius: 22px;
}

.side-card h3{
  font-size: 20px;
  margin: 8px 0 10px;
}

.side-card p,
.side-card li{
  font-size: 15px;
  line-height: 1.65;
}

.side-card::after{
  display:none !important;
}

.page-highlights{
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 10px;
  margin-top: 18px;
}

.page-highlights .highlight{
  padding: 14px 15px;
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  box-shadow: none !important;
  border: 1px solid rgba(10,23,38,.06) !important;
}

.page-highlights .highlight:hover{
  box-shadow: var(--clean-shadow) !important;
}

.inline-grid{
  gap: 10px;
}

.inline-box{
  border-radius: 18px;
  padding: 15px 16px;
}

.icon-badge-row{
  gap: 10px;
  margin-top: 18px;
}

.icon-badge{
  padding: 14px 15px;
  border-radius: 18px;
}

.icon-badge p{
  font-size: 14px;
  line-height: 1.55;
}

.contact-photo-grid{
  gap: 20px;
}

.premium-visual .visual-content,
.contact-visual-card div{
  padding: 20px 22px;
}

.contact-visual-card h2,
.premium-visual h2{
  font-size: 28px;
}

.premium-visual img,
.contact-visual-card img{
  height: 320px;
}

.knowledge-categories{
  gap: 12px;
  margin-top: 18px;
}

.knowledge-category{
  padding: 16px;
  border-radius: 18px;
  box-shadow: none !important;
}

.knowledge-category::before{
  display:none !important;
}

.faq-production{
  gap: 12px;
}

.faq-production article{
  padding: 20px;
  border-radius: 20px;
}

.faq-production h2{
  font-size: 23px;
  margin-bottom: 8px;
}

.faq-production p{
  font-size: 15.7px;
  line-height: 1.72;
}

.section-heading-premium{
  margin-bottom: 14px;
}

.section-heading-premium .tiny-note{
  padding: 8px 12px;
  font-size: 11px;
}

.photo-strip{
  gap: 16px;
}

.photo-tile{
  border-radius: 22px;
}

.photo-tile div{
  padding: 16px 18px 18px;
}

.final-cta,
.cta-panel{
  padding: 30px;
  border-radius: 24px;
}

.final-cta .section-title,
.cta-panel h2{
  font-size: 34px !important;
}

.footer-grid{
  gap: 26px;
}

.footer{
  padding-top: 48px;
}

@media(max-width:1100px){
  .production-grid{
    grid-template-columns: 1fr;
  }
}

@media(max-width:760px){
  .hero{
    padding-bottom: 66px;
  }
  .hero-chip-grid,
  .page-highlights{
    grid-template-columns: 1fr;
  }
  .service-section{
    padding: 22px;
  }
  .premium-visual img,
  .contact-visual-card img,
  .knowledge-hero-photo img,
  .page-illustration img{
    height: 240px !important;
  }
  .final-cta .section-title,
  .cta-panel h2{
    font-size: 28px !important;
  }
}


/* V10 — cofnięcie i naprawa hero: równo, spokojnie, bez przeładowania */
.hero{
  min-height: auto !important;
  padding: 118px 0 62px !important;
  align-items: flex-start !important;
}

.hero-grid{
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .92fr) !important;
  gap: 54px !important;
  align-items: end !important;
}

.hero-grid > .reveal:first-child{
  padding-bottom: 0 !important;
}

.hero h1{
  font-size: clamp(48px, 4.6vw, 78px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.045em !important;
  max-width: 780px !important;
  margin: 18px 0 22px !important;
}

.hero .lead{
  max-width: 760px !important;
  font-size: 18.5px !important;
  line-height: 1.75 !important;
}

.hero .actions{
  margin-top: 30px !important;
  margin-bottom: 0 !important;
}

.hero .chips{
  margin-top: 28px !important;
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.hero .chips span{
  background: rgba(255,255,255,.72) !important;
  border-color: rgba(10,23,38,.10) !important;
  color: #52677E !important;
  padding: 9px 14px !important;
}

.visual.hero-visual,
.visual{
  min-height: auto !important;
  height: auto !important;
}

.hero .halo{
  display: none !important;
}

.hero-photo-card{
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  background: #FFFFFF !important;
  box-shadow: 0 18px 46px rgba(10,23,38,.10) !important;
}

.hero-photo-card img{
  height: 390px !important;
  width: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

.hero-photo-caption{
  padding: 24px 28px 28px !important;
  background: #FFFFFF !important;
}

.hero-photo-caption b{
  display: block !important;
  color: #06111D !important;
  font-size: 22px !important;
  margin-bottom: 8px !important;
}

.hero-photo-caption p{
  color: #52677E !important;
  font-size: 16.2px !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

/* usuń ewentualne pozostałości po przeładowanych kartach */
.hero-chip-grid,
.hero-floating-note{
  display: none !important;
}

/* dolna linia lewej i prawej kolumny ma wyglądać stabilniej */
.hero-grid > div{
  align-self: end !important;
}

/* dalsze sekcje zaczynają się spokojniej, bez wrażenia dziury */
.marquee{
  margin-top: 0 !important;
}

/* responsywność */
@media(max-width: 1150px){
  .hero-grid{
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    align-items: start !important;
  }
  .hero h1{
    max-width: 920px !important;
  }
  .hero-photo-card img{
    height: 330px !important;
  }
}

@media(max-width: 760px){
  .hero{
    padding: 106px 0 46px !important;
  }
  .hero h1{
    font-size: clamp(40px, 11vw, 54px) !important;
  }
  .hero .actions .btn{
    width: 100%;
  }
  .hero-photo-card img{
    height: 250px !important;
  }
  .hero-photo-caption{
    padding: 20px !important;
  }
}


/* V11 GLOBAL FIX — prawy panel nie jest przyklejony */
.production-aside{
  position: static !important;
  top: auto !important;
  align-self: start !important;
}

.production-grid{
  align-items: start !important;
}

/* Stabilniejsze prawe kolumny na podstronach */
.production-aside .side-card{
  position: relative !important;
  overflow: hidden;
}

/* Uporządkowanie wysokości i odstępów podstron */
.page-hero{
  padding-top: 132px !important;
  padding-bottom: 44px !important;
}

.page-illustration{
  margin-top: 28px !important;
}

.page-illustration img{
  height: 400px !important;
  object-fit: cover !important;
  object-position: center !important;
}

.production-main{
  gap: 20px !important;
}

.service-section{
  margin: 0 !important;
}

/* Spójniejszy kontakt i baza wiedzy */
.contact-photo-grid{
  align-items: start !important;
}

.contact-photo-grid .panel,
.contact-photo-grid .premium-visual{
  height: auto !important;
}

.knowledge-hero-photo img{
  height: 380px !important;
}

/* Hero strony głównej — stabilne i bez nakładania */
.hero{
  padding-top: 116px !important;
}

.hero-grid{
  align-items: end !important;
}

.hero-photo-card{
  margin: 0 !important;
}

.hero-photo-caption{
  color: #06111D !important;
}

/* Lepszy porządek na mobile */
@media(max-width: 1100px){
  .production-grid{
    grid-template-columns: 1fr !important;
  }
  .production-aside{
    display: grid !important;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 16px !important;
  }
  .production-aside .side-card:last-child{
    grid-column: 1 / -1;
  }
}

@media(max-width: 760px){
  .production-aside{
    grid-template-columns: 1fr !important;
  }
  .page-hero{
    padding-top: 112px !important;
  }
  .page-illustration img,
  .knowledge-hero-photo img{
    height: 250px !important;
  }
}


/* V12 — koniec ruchomego paska */
.marquee-track{
  animation: none !important;
  transform: none !important;
}

.static-service-bar{
  overflow: visible !important;
  background: transparent !important;
  border-block: 1px solid rgba(10,23,38,.08) !important;
  padding: 18px 0 !important;
}

.static-service-tags{
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
}

.static-service-tags span{
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  padding: 9px 14px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.78) !important;
  border: 1px solid rgba(10,23,38,.10) !important;
  color: #52677E !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 22px rgba(10,23,38,.04) !important;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.static-service-tags span:hover{
  transform: translateY(-2px);
  border-color: rgba(35,111,168,.20) !important;
  box-shadow: 0 12px 28px rgba(10,23,38,.07) !important;
}

/* zabezpieczenie: żadna sekcja marquee nie przesuwa się */
.marquee,
.marquee *{
  animation-play-state: paused !important;
}


/* V13 — pasek menu przewija się razem ze stroną */
.topbar{
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  z-index: 50 !important;
}

/* Po wyłączeniu fixed header zmniejszamy górne odstępy */
.hero{
  padding-top: 46px !important;
}

.page-hero{
  padding-top: 58px !important;
}

/* Menu mobilne ma się otwierać względem zwykłego nagłówka */
@media(max-width:1100px){
  .menu{
    position: absolute !important;
    top: 78px !important;
  }
}

/* Brak jakiegokolwiek sticky/fixed dla prawego panelu */
.production-aside{
  position: static !important;
  top: auto !important;
}


/* V14 — menu i sidebar przewijają się razem ze stroną */
.topbar,
header.topbar{
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
}

.production-aside,
.production-aside *,
.side-card{
  position: static !important;
  top: auto !important;
}

.hero{
  padding-top: 46px !important;
}

.page-hero{
  padding-top: 58px !important;
}

/* tylko menu mobilne może być absolute względem nagłówka po kliknięciu */
@media(max-width:1100px){
  .menu{
    position: absolute !important;
    top: 78px !important;
  }
}


/* V15 — MENU I PRAWY SIDEBAR MAJĄ ZJEŻDŻAĆ / BYĆ RUCHOME */
.topbar,
header.topbar{
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  background: rgba(248,251,254,.92) !important;
  backdrop-filter: blur(18px) !important;
  border-bottom: 1px solid rgba(10,23,38,.10) !important;
  box-shadow: 0 10px 28px rgba(10,23,38,.07) !important;
}

/* Po przywróceniu sticky menu nie trzeba dużego pustego odstępu */
.hero{
  padding-top: 72px !important;
}

.page-hero{
  padding-top: 84px !important;
}

/* Prawy sidebar na podstronach ma być ruchomy podczas scrollowania */
.production-aside{
  position: sticky !important;
  top: 98px !important;
  align-self: start !important;
  height: max-content !important;
  z-index: 20 !important;
}

.production-aside .side-card{
  position: relative !important;
  top: auto !important;
}

/* Pasek tagów usług zostaje statyczny w treści, ale nie animuje się */
.static-service-bar{
  position: relative !important;
}

/* Mobile: sidebar nie powinien być sticky, bo psuje układ */
@media(max-width:1100px){
  .production-aside{
    position: static !important;
    top: auto !important;
  }
  .menu{
    position: absolute !important;
    top: 78px !important;
  }
}

@media(max-width:760px){
  .hero{
    padding-top: 52px !important;
  }
  .page-hero{
    padding-top: 58px !important;
  }
}


/* V16 — REALNA NAPRAWA PRAWEGO SIDEBARA */
/* Sticky nie działa poprawnie, gdy rodzic ma overflow:hidden/auto — odblokowanie układu */
.section,
.container,
.production-grid,
.production-main,
.production-aside{
  overflow: visible !important;
}

/* Menu ma nadal zjeżdżać z ekranem */
.topbar,
header.topbar{
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
}

/* Prawy pasek ma faktycznie jechać podczas przewijania */
.production-grid{
  align-items: start !important;
}

.production-aside{
  display: grid !important;
  gap: 16px !important;
  position: sticky !important;
  top: 104px !important;
  align-self: start !important;
  height: fit-content !important;
  max-height: calc(100vh - 124px) !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  z-index: 30 !important;
  padding-right: 3px !important;
}

/* Karty wewnątrz paska nie mogą nadpisywać pozycji całego sidebara */
.production-aside .side-card,
.production-aside *{
  top: auto !important;
}

/* Poprawka dla tabletów — sidebar nadal ma być ruchomy, dopóki są dwie kolumny */
@media(max-width:1100px) and (min-width:761px){
  .production-grid{
    grid-template-columns: minmax(0,1fr) 320px !important;
    align-items: start !important;
  }
  .production-aside{
    position: sticky !important;
    top: 96px !important;
    max-height: calc(100vh - 112px) !important;
  }
}

/* Na telefonie sidebar nie może być sticky, bo zajmie cały ekran */
@media(max-width:760px){
  .production-grid{
    grid-template-columns: 1fr !important;
  }
  .production-aside{
    position: static !important;
    top: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }
}


/* V17 — profesjonalna poprawka sidebara: bez czarnej kreski i bez wewnętrznego scrolla */
.production-aside{
  position: sticky !important;
  top: 104px !important;
  align-self: start !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  overflow-y: visible !important;
  padding-right: 0 !important;
  scrollbar-width: none !important;
}

.production-aside::-webkit-scrollbar{
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.production-aside .side-card{
  position: relative !important;
  top: auto !important;
}

/* Rodzice muszą pozwalać sticky działać, ale bez tworzenia własnych pasków przewijania */
.section,
.container,
.production-grid,
.production-main{
  overflow: visible !important;
}

.production-grid{
  align-items: start !important;
}

/* Menu nadal sticky */
.topbar,
header.topbar{
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
}

/* Tablet: zachowaj sticky sidebara, ale bez wewnętrznego scrolla */
@media(max-width:1100px) and (min-width:761px){
  .production-grid{
    grid-template-columns: minmax(0,1fr) 320px !important;
    align-items: start !important;
  }
  .production-aside{
    position: sticky !important;
    top: 96px !important;
    max-height: none !important;
    overflow: visible !important;
    overflow-y: visible !important;
    padding-right: 0 !important;
  }
}

/* Telefon: zwykły układ */
@media(max-width:760px){
  .production-aside{
    position: static !important;
    top: auto !important;
    max-height: none !important;
    overflow: visible !important;
    overflow-y: visible !important;
  }
}


/* V18 — tagi usług są zwykłym elementem treści strony */
.static-service-bar,
.marquee.static-service-bar,
section.static-service-bar{
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 1 !important;
  transform: none !important;
  animation: none !important;
  overflow: visible !important;
}

.static-service-tags,
.static-service-tags span{
  position: relative !important;
  transform: none !important;
  animation: none !important;
}

/* zabezpieczenie przed poziomym przesuwaniem starego paska */
.marquee-track{
  display: none !important;
  animation: none !important;
  transform: none !important;
}

/* menu i prawy sidebar zostają sticky */
.topbar,
header.topbar{
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
}

.production-aside{
  position: sticky !important;
  top: 104px !important;
  overflow: visible !important;
  overflow-y: visible !important;
  max-height: none !important;
  scrollbar-width: none !important;
}

.production-aside::-webkit-scrollbar{
  display: none !important;
}


/* V19 — tagi usług mają jechać poziomo */
.service-marquee,
.marquee.service-marquee{
  position: relative !important;
  overflow: hidden !important;
  border-block: 1px solid rgba(10,23,38,.08) !important;
  padding: 16px 0 !important;
  background: rgba(255,255,255,.18) !important;
  z-index: 1 !important;
}

.service-marquee .marquee-track{
  display: flex !important;
  width: max-content !important;
  gap: 12px !important;
  align-items: center !important;
  animation: szodMarqueeMove 34s linear infinite !important;
  transform: translateX(0);
  will-change: transform;
}

.service-marquee .marquee-track:hover{
  animation-play-state: paused !important;
}

.service-marquee .marquee-track span{
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  padding: 9px 14px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.82) !important;
  border: 1px solid rgba(10,23,38,.10) !important;
  color: #52677E !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 22px rgba(10,23,38,.04) !important;
}

@keyframes szodMarqueeMove{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* usunięcie poprzedniego blokowania animacji tagów */
.static-service-bar,
.static-service-tags{
  animation: initial !important;
}

/* menu i sidebar zostają sticky */
.topbar,
header.topbar{
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
}

.production-aside{
  position: sticky !important;
  top: 104px !important;
  overflow: visible !important;
  overflow-y: visible !important;
  max-height: none !important;
}


/* V20 — ostateczna naprawa: tagi naprawdę jadą poziomo */
.service-marquee,
.marquee.service-marquee{
  position: relative !important;
  overflow: hidden !important;
}

.service-marquee .marquee-track{
  display: flex !important;
  flex-wrap: nowrap !important;
  width: max-content !important;
  min-width: 200% !important;
  gap: 12px !important;
  transform: translate3d(0,0,0) !important;
  animation-name: szodTagsHorizontalMove !important;
  animation-duration: 28s !important;
  animation-timing-function: linear !important;
  animation-iteration-count: infinite !important;
  animation-play-state: running !important;
  will-change: transform !important;
}

.service-marquee .marquee-track:hover{
  animation-play-state: paused !important;
}

.service-marquee .marquee-track span{
  flex: 0 0 auto !important;
}

@keyframes szodTagsHorizontalMove{
  0%{
    transform: translate3d(0,0,0);
  }
  100%{
    transform: translate3d(-50%,0,0);
  }
}

/* nadpisanie starego globalnego pauzowania marquee */
.marquee.service-marquee,
.marquee.service-marquee *{
  animation-play-state: running !important;
}

.marquee.service-marquee .marquee-track:hover{
  animation-play-state: paused !important;
}


/* V21 — polityka prywatności i cookies */
.footer-links{
  display:flex;
  justify-content:center;
  gap:16px;
  padding:18px 0 8px;
  border-top:1px solid rgba(10,23,38,.08);
  margin-top:24px;
}
.footer-links a{
  color:#52677E;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
}
.footer-links a:hover{
  color:#0E4E7D;
}

.cookie-banner{
  position:fixed;
  left:24px;
  right:24px;
  bottom:24px;
  z-index:100000;
  display:none;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  max-width:1120px;
  margin:0 auto;
  padding:18px 20px;
  border-radius:24px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(10,23,38,.12);
  box-shadow:0 24px 70px rgba(10,23,38,.18);
  backdrop-filter:blur(18px);
}
.cookie-banner.is-visible{
  display:flex;
}
.cookie-content{
  max-width:760px;
}
.cookie-content strong{
  display:block;
  color:#06111D;
  font-size:17px;
  margin-bottom:4px;
}
.cookie-content p{
  margin:0;
  color:#52677E;
  font-size:14.5px;
  line-height:1.55;
}
.cookie-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex:0 0 auto;
}
.cookie-actions a{
  color:#0E4E7D;
  font-weight:800;
  font-size:14px;
  text-decoration:none;
}
.cookie-actions button{
  border:0;
  cursor:pointer;
  padding:12px 18px;
  border-radius:999px;
  color:#fff;
  font-weight:900;
  background:linear-gradient(135deg,#0E4E7D,#2F8BC7);
  box-shadow:0 12px 28px rgba(35,111,168,.22);
}
@media(max-width:760px){
  .cookie-banner{
    left:12px;
    right:12px;
    bottom:12px;
    flex-direction:column;
    align-items:flex-start;
    border-radius:20px;
  }
  .cookie-actions{
    width:100%;
    justify-content:space-between;
  }
}


/* V25 — pasek tagów zbudowany od początku, bez starego .marquee */
.szod-tag-ticker{
  position: relative !important;
  display: block !important;
  width: 100% !important;
  overflow: hidden !important;
  padding: 16px 0 !important;
  border-top: 1px solid rgba(10,23,38,.08) !important;
  border-bottom: 1px solid rgba(10,23,38,.08) !important;
  background: rgba(255,255,255,.20) !important;
  z-index: 1 !important;
}

.szod-tag-ticker__inner{
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
}

.szod-tag-ticker__track{
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 12px !important;
  width: max-content !important;
  min-width: max-content !important;
  white-space: nowrap !important;
  will-change: transform !important;
  animation: szodTagTickerMove 30s linear infinite !important;
  animation-play-state: running !important;
}

.szod-tag-ticker__track:hover{
  animation-play-state: paused !important;
}

.szod-tag-ticker__track span{
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  padding: 9px 14px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,.88) !important;
  border: 1px solid rgba(10,23,38,.10) !important;
  color: #52677E !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 22px rgba(10,23,38,.04) !important;
}

@keyframes szodTagTickerMove{
  0%{
    transform: translate3d(0,0,0);
  }
  100%{
    transform: translate3d(-33.333%,0,0);
  }
}

/* Cookies — wybór akceptuję / nie akceptuję */
.cookie-actions .btn-cookie-secondary{
  background: #FFFFFF !important;
  color: #0E4E7D !important;
  border: 1px solid rgba(14,78,125,.24) !important;
  box-shadow: none !important;
}

.cookie-actions .btn-cookie-secondary:hover{
  background: #F4F8FC !important;
}

/* Globalny komunikat cookies: wybór zapamiętywany dla całego serwisu przez localStorage */
.cookie-banner{
  z-index: 100000 !important;
}


/* V26 — konkretne liczniki zamiast technicznych placeholderów */
.stats small{
  line-height: 1.25 !important;
  max-width: 130px;
  display: inline-block;
}
