

:root{
  --brand: #dc1854;
  --brand-2: #a51854;
  --dark: #1e1e1e;
  --text: #616161;
}

* { box-sizing: border-box; }
body, h1, h2, p, ul, ol, li { margin: 0; padding: 0; }
img { border: 0; max-width: 100%; display: block; }

body {
  font-family: 'Ubuntu', sans-serif;
  color: var(--text);
  font-weight: 300;
  background-image: url("images/background.svg");
  background-position: center 0;
  background-repeat: repeat-x;
}

a:link, a:visited {
  color: #808080;
  text-decoration: none;
  transition: color .15s ease;
}
a:hover, a:active {
  color: var(--brand);
}

.roz { color: var(--brand); }

.kreska {
  width: 32px;
  height: 3px;
  background-color: var(--brand);
  margin: 13px 0;
}
.kreska--light { background-color: #fff; opacity: .85; }

#page {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 0 15px;
}

#logo { display: flex; align-items: center; }
#logo svg {
  display: block;
  width: clamp(108px, 20vw, 150px);
  height: auto;
  max-width: 100%;
}

#menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

#navigation .menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 4px;
}

#navigation .menu a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #000;
  font-size: 17px;
  font-weight: 300;
  padding: 9px 16px;
  border-radius: 22px;
  transition: color .15s ease, background-color .15s ease;
}
#navigation .menu a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #b0b0b0;
  transition: color .15s ease;
}
#navigation .menu a:hover svg,
#navigation .menu a.active svg {
  color: var(--brand);
}

#navigation .menu a:hover,
#navigation .menu a.active {
  color: var(--brand);
  background-color: rgba(220, 24, 84, .08);
}

#navigation .menu .fb-item { margin-left: 10px; padding-left: 10px;  }

.mobile-only-item { display: none; }

#navigation .menu .fb-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: #fff;
  background-color: var(--brand);
  border-radius: 50%;
  transition: background-color .15s ease, transform .15s ease;
}
#navigation .menu .fb-link:hover,
#navigation .menu .fb-link.active {
  color: #fff;
  background-color: var(--brand-2);
  transform: scale(1.08);
}
#navigation .menu .fb-link svg,
#navigation .menu .fb-link svg path {
  width: 15px;
  height: 15px;
  fill: white;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 34px;
  height: 34px;
  background: none;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: background-color .3s ease, box-shadow .3s ease, transform .2s ease;
}
.menu-toggle:active { transform: scale(.9); }

.menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  transform-origin: center;
  transition: transform .4s cubic-bezier(.5,-0.3,.3,1.4), opacity .2s ease, background-color .3s ease, width .3s ease, left .3s ease;
}

.menu-toggle span:nth-child(1) { width: 18px; left: 50%; transform: translate(-50%, calc(-50% - 6px)); }
.menu-toggle span:nth-child(2) { width: 12px; left: calc(50% + 3px); transform: translate(-50%, -50%); }
.menu-toggle span:nth-child(3) { width: 18px; left: 50%; transform: translate(-50%, calc(-50% + 6px)); }

.menu-toggle.is-active {
  background-color: var(--brand);
  box-shadow: 0 8px 18px rgba(220,24,84,.35);
}
.menu-toggle.is-active span { background-color: #fff; }
.menu-toggle.is-active span:nth-child(1) { width: 18px; left: 50%; transform: translate(-50%, -50%) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { width: 18px; left: 50%; transform: translate(-50%, -50%) rotate(-45deg); }

#navigation .menu li.has-submenu { position: relative; }
.menu-item-row {
  display: flex;
  align-items: center;
  border-radius: 22px;
  transition: background-color .15s ease;
}

li.has-submenu:hover .menu-item-row,
.menu-item-row.is-open,
.menu-item-row:has(> a.active) {
  background-color: rgba(220, 24, 84, .08);
}
.menu-item-row > a:hover,
.menu-item-row > a.active {
  background-color: transparent !important;
}

.submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-left: -14px;
  background: none;
  border: 0;
  cursor: pointer;
  color: #b0b0b0;
  border-radius: 50%;
  transition: color .15s ease, transform .2s ease;
}
.submenu-toggle:hover { color: var(--brand); }
.menu-item-row.is-open .submenu-toggle,
li.has-submenu:hover .submenu-toggle,
.menu-item-row:has(> a.active) .submenu-toggle { color: var(--brand); }

#navigation li.has-submenu:hover .menu-item-row > a,
#navigation .menu-item-row.is-open > a,
#navigation .menu-item-row:has(> a.active) > a {
  color: var(--brand);
}
#navigation li.has-submenu:hover .menu-item-row > a svg,
#navigation .menu-item-row.is-open > a svg,
#navigation .menu-item-row:has(> a.active) > a svg {
  color: var(--brand);
}
.submenu-toggle .chevron { width: 13px; height: 13px; transition: transform .2s ease; }
.submenu-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.submenu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(0,0,0,.16);
  padding: 14px 8px 8px;
  z-index: 60;
}
.submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 15px;
  color: #555;
}
.submenu a svg { width: 16px; height: 16px; flex-shrink: 0; color: #b0b0b0; }
.submenu a:hover, .submenu a.active { background-color: rgba(220,24,84,.08); color: var(--brand); }
.submenu a:hover svg, .submenu a.active svg { color: var(--brand); }

@media (min-width: 769px) {
  .submenu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
  }
  li.has-submenu:hover .submenu,
  li.has-submenu .submenu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  li.has-submenu:hover .submenu-toggle .chevron { transform: rotate(180deg); }
}

#top {
  padding: 34px 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.hero-copy {
  flex: 1 1 320px;
  min-width: 0;
}

#tekst {
  position: relative;
}

#tekst h1 {
  color: #131313;
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 42px);
  line-height: 1.25;
  margin: 0;
  opacity: 0;
  transform: translateY(24px);
  filter: blur(5px);
  animation: heroLineIn .8s cubic-bezier(.16,.84,.32,1) forwards;
  animation-delay: .05s;
}

#tekst h1 .roz {
  font-weight: 800;
  background: linear-gradient(100deg, var(--brand) 0%, #ff6f91 30%, var(--brand) 65%, var(--brand) 100%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroShine 6s ease-in-out infinite;
  animation-delay: 2.2s;
}

.hero-lead {
  font-size: 16px;
  line-height: 1.6;
  color: #6a6a6a;
  max-width: 440px;
  margin: 16px 0 0;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(4px);
  animation: heroLineIn .8s cubic-bezier(.16,.84,.32,1) forwards;
  animation-delay: .22s;
}

.hero-media {
  position: relative;
  flex: 1 1 380px;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.hero-media-float {
  position: relative;
  width: 100%;
  max-width: 480px;
  opacity: 0;
  animation-name: heroMediaIn, heroFloat;
  animation-duration: .9s, 6s;
  animation-timing-function: cubic-bezier(.16,.84,.32,1), ease-in-out;
  animation-delay: .3s, 1.5s;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: forwards, none;
}

.hero-tag {
  position: absolute;
  top: 6%;
  left: 75%;
  z-index: 2;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  padding: 9px 16px;
  border-radius: 6px 6px 6px 2px;
  box-shadow: 0 10px 22px rgba(165,24,84,.28);
  white-space: nowrap;
  opacity: 0;
  animation: heroTagIn .6s cubic-bezier(.16,.84,.32,1) forwards;
  animation-delay: 1.1s;
}
@keyframes heroTagIn {
  to { opacity: 1; }
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes heroLineIn {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes heroBarIn {
  to { transform: scaleY(1); }
}
@keyframes heroShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes heroMediaIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
  from { transform: translateY(18px) scale(.96); }
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  #tekst h1, .kicker, .hero-lead, .hero-media-float, .hero-tag, #realizacje {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .kafelek {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

#realizacje {
  margin-top: 26px;
  opacity: 0;
  animation: heroFadeUp .7s cubic-bezier(.16,.84,.32,1) forwards;
  animation-delay: .42s;
}
#realizacje a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background-color: var(--dark);
  font-size: 15px;
  font-weight: 300;
  padding: 14px 22px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background-color .15s ease, transform .15s ease;
}
#realizacje a:hover { background-color: var(--brand); color: #fff; transform: translateY(-2px); }
#realizacje a span { font-weight: 500; }
#realizacje a .btn-arrow {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  transition: transform .2s ease;
}
#realizacje a:hover .btn-arrow { transform: translateX(4px); }

#kafelki {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 18px;
  margin-top: 30px;
}

.kafelek {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 0;
  aspect-ratio: 0.92;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: #fff;
  padding: 15% 15%;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: 8px 5px 12px rgba(0,0,0,.18);
  opacity: 0;
  filter: blur(12px);
  transform: scale(1.04);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), filter .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1), box-shadow .4s ease;
  will-change: opacity, filter, transform;
}

.kafelek.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
  will-change: auto;
}

.kafelek:nth-child(3n+2) { margin-top: clamp(14px, 3vw, 28px); }

.kafelek::before {
  content: '';
  position: absolute;
  inset: -40px;
  z-index: 0;
  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 0 L90 0 L120 52 L90 104 L30 104 L0 52 Z' fill='none' stroke='%23ffffff' stroke-opacity='0.16' stroke-width='1.4'/%3E%3C/svg%3E");
  background-size: 120px 104px;
  animation: hexDrift 40s linear infinite;
  pointer-events: none;
}

.kafelek::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 50% 32%, rgba(255,255,255,.30), transparent 62%);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.kafelek:hover::after { opacity: 1; }

.kafelek.is-visible:hover {
  transform: translateY(-8px) scale(1.035);
  box-shadow: 0 20px 32px rgba(0,0,0,.28);
  filter: brightness(1.07) blur(0);
  transition: transform .35s ease, box-shadow .35s ease, filter .3s ease;
}
.kafelek.is-visible:active { transform: translateY(-3px) scale(1.01); }

.kafelek .tile-icon,
.kafelek h2,
.kafelek .kreska,
.kafelek p {
  position: relative;
  z-index: 1;
}

.kafelek .tile-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  color: #fff;
  opacity: .95;
  flex-shrink: 0;
  transition: transform .4s ease;
}
.kafelek:hover .tile-icon { transform: scale(1.15) rotate(-6deg); }

.kafelek h2 { font-size: 19px; font-weight: 500; margin: 0 0 6px; line-height: 1.25; color: #fff; }
.kafelek .kreska { margin: 8px auto; }
.kafelek p { font-size: 13.5px; line-height: 19px; color: #fff; margin: 0; max-width: 92%; }

@keyframes hexDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 120px 104px; }
}

#kwadrata { background: linear-gradient(155deg, #ec2464, #b2124a); }
#kwadratb { background: linear-gradient(155deg, #b81f60, #7c123f); }
#kwadratc { background: linear-gradient(155deg, #941c58, #5e0f37); }
#kwadratd { background: linear-gradient(155deg, #7a1c56, #4a0c30); }
#kwadrate { background: linear-gradient(155deg, #521144, #2c0620); }
#kwadratf { background: linear-gradient(155deg, #47101f, #23050d); }

#kwadratb::before, #kwadratd::before, #kwadratf::before {
  animation-direction: reverse;
  animation-duration: 48s;
}
#kwadratc::before, #kwadrate::before { animation-duration: 55s; }

#kwadratg {
  grid-column: 1 / -1;
  position: relative;
  overflow: hidden;
  background: #fff;
  margin-top: 20px;
  border: 1px solid rgba(0,0,0,.07);
  box-shadow: 6px 4px 14px rgba(0,0,0,.06);
  color: var(--text);
  padding: 34px 30px;
}
#kwadratg h2.block-title { color: var(--dark); font-size: 26px; font-weight: 500; }
#kwadratg .kreska { background-color: var(--brand); }
#kwadratg p { color: var(--text); font-size: 16px; line-height: 24px; text-align: justify; }

#kwadratg .stack {
  position: relative;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,.08);
}
#kwadratg .stack-title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin: 0 0 16px;
}
#kwadratg .stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#kwadratg .stack-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px 8px 8px;
  background: #f6f6f7;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 30px;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}
#kwadratg .stack-item:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 4px 6px 14px rgba(0,0,0,.10);
}
#kwadratg .stack-item .stack-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
}
#kwadratg .stack-item .stack-icon svg { width: 18px; height: 18px; }
#kwadratg .stack-item span {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
}

#page > p, #page > ul#lif {
  margin-top: 26px;
}
#page > p { font-size: 17px; line-height: 27px; }

#lif {
  font-size: 17px;
  line-height: 27px;
  color: var(--text);
  font-weight: 300;
  margin: 20px 0 20px 24px;
  list-style-type: decimal;
}
#lif li { margin-bottom: 12px; }

#logotypy { margin-top: 30px; }
#logotypy h2.block-title {
  text-align: center;
  font-weight: 300;
  font-size: 28px;
  color: #9f9f9f;
  margin-bottom: 16px;
}
#logotypy img { margin: 0 auto; }

.stopka {
  background-color: #000;
  margin-top: 40px;
  padding: 30px 0 20px;
}

#footer {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#stopkalewa .menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 22px;
}

#stopkalewa .menu a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cfcfcf;
  font-size: 15.5px;
  padding: 9px 14px;
  border-radius: 22px;
  transition: color .15s ease, background-color .15s ease;
}
#stopkalewa .menu a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #777;
  transition: color .15s ease;
}
#stopkalewa .menu a:hover,
#stopkalewa .menu a.active {
  color: #fff;
  background-color: var(--brand);
}
#stopkalewa .menu a:hover svg,
#stopkalewa .menu a.active svg {
  color: #fff;
}

#stopkaprawa {
  font-size: 15px;
  font-weight: 300;
  color: #676767;
}

#tekstseo {
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #222;
}
#tekstseo .content {
  color: #999;
  font-size: 12px;
  line-height: 17px;
  font-weight: 300;
  text-align: justify;
}
#tekstseo a { color: #ccc; text-decoration: underline; }
#tekstseo a:hover { color: var(--brand); }

.breadcrumb-bar {
  max-width: 1040px;
  margin: 40px auto 0;
  padding: 0 20px;
}
.breadcrumb-progress {
  width: 220px;
  height: 4px;
  background-color: #e2e2e2;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 14px;
}
.breadcrumb-progress span {
  display: block;
  width: 45%;
  height: 100%;
  background-color: var(--brand);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #9f9f9f;
}
.breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9f9f9f;
}
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb svg { width: 18px; height: 18px; }
.breadcrumb .sep { color: #c9c9c9; }
.breadcrumb .current { color: #616161; }

.breadcrumb .current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #616161;
}

#oferta-wrap {
  max-width: 1040px;
  margin: 20px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: start;
}

#oferta-sidebar {
  background-color: var(--dark);
  color: #fff;
  border-radius: 3px;
  padding: 26px 24px;
  box-shadow: 8px 5px 12px rgba(0,0,0,.18);
  position: sticky;
  top: 20px;
}
#oferta-sidebar h2 { font-size: 24px; font-weight: 500; color: #fff; }
#oferta-sidebar ul { list-style: none; margin-top: 6px; }
#oferta-sidebar li + li { margin-top: 2px; }
#oferta-sidebar a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cfcfcf;
  font-size: 17px;
  padding: 11px 8px;
  border-radius: 3px;
  transition: color .15s ease, background-color .15s ease;
}
#oferta-sidebar a svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--brand);
}
#oferta-sidebar a:hover,
#oferta-sidebar a.active {
  color: #fff;
  background-color: rgba(255,255,255,.08);
}

#oferta-content h1 {
  color: #000;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 22px;
}
#oferta-content p {
  font-size: 17px;
  line-height: 27px;
  margin-bottom: 18px;
}

#oferta-kafelki {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 8px 0 26px;
}
.oferta-kafel {
  display: block;
  border-radius: 3px;
  padding: 20px;
  color: #fff;
  box-shadow: 8px 5px 12px rgba(0,0,0,.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.oferta-kafel:hover {
  transform: translateY(-4px);
  box-shadow: 10px 10px 18px rgba(0,0,0,.22);
  color: #fff;
}
.oferta-kafel .tile-icon { width: 30px; height: 30px; margin-bottom: 10px; opacity: .95; color: #fff; }
.oferta-kafel h3 { font-size: 19px; font-weight: 500; margin-bottom: 6px; color: #fff; }
.oferta-kafel:hover h3 { color: #fff; }
.oferta-kafel p { color: #fff; font-size: 14px; line-height: 21px; margin: 0; }

#oferta-cta { margin-top: 10px; }
#oferta-cta a {
  display: inline-block;
  color: #fff;
  background-color: var(--dark);
  font-size: 15px;
  font-weight: 300;
  padding: 14px 22px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background-color .15s ease;
}
#oferta-cta a:hover { background-color: var(--brand); }
#oferta-cta a span { font-weight: 500; }

@media (max-width: 768px) {
  #oferta-wrap { grid-template-columns: 1fr; }
  #oferta-sidebar { position: static; }
  #oferta-kafelki { grid-template-columns: 1fr; }
}

#opinie-wrap {
  max-width: 1040px;
  margin: 20px auto 0;
  padding: 0 20px;
}
#opinie-wrap h1 {
  color: #000;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 14px;
}
#opinie-lead {
  font-size: 17px;
  line-height: 27px;
  max-width: 640px;
  margin-bottom: 30px;
}

#opinie-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 36px;
}
.opinie-stat {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 8px 5px 12px rgba(0,0,0,.1);
  padding: 20px 18px;
  text-align: center;
}
.opinie-stat svg {
  width: 26px;
  height: 26px;
  color: var(--brand);
  margin-bottom: 8px;
}
.opinie-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #000;
}
.opinie-stat span {
  font-size: 13px;
  color: var(--text);
}

#opinie-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.opinia {
  position: relative;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 8px 5px 12px rgba(0,0,0,.12);
  padding: 30px 28px 24px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.opinia:hover {
  transform: translateY(-4px);
  box-shadow: 10px 10px 18px rgba(0,0,0,.16);
}
.opinia-quote {
  width: 30px;
  height: 22px;
  color: var(--brand);
  opacity: .35;
  margin-bottom: 6px;
}
.opinia-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.opinia-stars svg {
  width: 15px;
  height: 15px;
  color: var(--brand);
}
.opinia p {
  font-style: italic;
  font-size: 16px;
  line-height: 25px;
  color: var(--text);
  margin-bottom: 20px;
}
.opinia-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.opinia-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
}
.opinia-author strong {
  display: block;
  color: #000;
  font-weight: 500;
  font-size: 15px;
}
.opinia-author small {
  color: var(--brand);
  font-size: 13px;
}

#opinie-cta {
  text-align: center;
  margin: 46px 0 30px;
}
#opinie-cta p {
  font-size: 19px;
  color: #000;
  margin-bottom: 16px;
}
#opinie-cta a {
  display: inline-block;
  color: #fff;
  background-color: var(--dark);
  font-size: 15px;
  font-weight: 300;
  padding: 14px 22px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background-color .15s ease;
}
#opinie-cta a:hover { background-color: var(--brand); }
#opinie-cta a span { font-weight: 500; }

@media (max-width: 768px) {
  #opinie-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #opinie-grid { grid-template-columns: 1fr; }
}

#kontakt-wrap {
  max-width: 1040px;
  margin: 20px auto 0;
  padding: 0 20px;
}
#kontakt-wrap h1 {
  color: #000;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 14px;
}
#kontakt-lead {
  font-size: 17px;
  line-height: 27px;
  max-width: 640px;
  margin-bottom: 34px;
}

#kontakt-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 26px;
  align-items: start;
}

#kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kontakt-karta {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 8px 5px 12px rgba(0,0,0,.1);
  padding: 20px;
}
.kontakt-karta svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--brand);
  margin-top: 2px;
}
.kontakt-karta strong {
  display: block;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}
.kontakt-karta a,
.kontakt-karta span {
  display: block;
  font-size: 15px;
  color: var(--text);
}
.kontakt-karta a:hover { color: var(--brand); }

#kontakt-social {
  background-color: var(--dark);
  border-radius: 3px;
  padding: 20px;
  color: #fff;
  text-align: center;
}
#kontakt-social span { font-size: 14px; opacity: .85; }
.kontakt-social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}
.kontakt-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background-color: rgba(255,255,255,.12);
  transition: background-color .15s ease;
}
.kontakt-social-icons a:hover { background-color: var(--brand); }
.kontakt-social-icons svg { width: 17px; height: 17px; fill: currentColor; }
.kontakt-social-icons a[aria-label="Instagram"] svg,
.kontakt-social-icons a[aria-label="LinkedIn"] svg { fill: none; }

#kontakt-form-box {
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 8px 5px 12px rgba(0,0,0,.1);
  padding: 30px 32px;
}
#kontakt-form-box h2 { font-size: 24px; font-weight: 500; color: #000; }

.form-row { margin-bottom: 18px; }
.form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row label {
  display: block;
  font-size: 14px;
  color: #000;
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: 'Ubuntu', sans-serif;
  font-size: 15px;
  color: var(--text);
  background-color: #f7f7f7;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  padding: 11px 12px;
  transition: border-color .15s ease, background-color .15s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--brand);
  background-color: #fff;
}
.form-row textarea { resize: vertical; }

.btn-submit {
  display: inline-block;
  color: #fff;
  background-color: var(--dark);
  font-family: 'Ubuntu', sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 14px 24px;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color .15s ease;
}
.btn-submit:hover { background-color: var(--brand); }
.btn-submit span { font-weight: 500; }

.form-note {
  font-size: 12px;
  color: #9f9f9f;
  margin-top: 14px;
  line-height: 18px;
}

#kontakt-map {
  margin-top: 26px;
  border-radius: 3px;
  overflow: hidden;
  background: #1e1e1e;
  box-shadow: 0 6px 18px rgba(0,0,0,.10);
}

#kontakt-map-naglowek {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  color: #fff;
}
#kontakt-map-naglowek svg { width: 28px; height: 28px; flex-shrink: 0; color: var(--brand); }
#kontakt-map-naglowek div { display: flex; flex-direction: column; }
#kontakt-map strong { font-size: 18px; font-weight: 500; }
#kontakt-map span { font-size: 14px; opacity: .85; margin-top: 2px; }

#kontakt-map iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}

@media (max-width: 768px) {
  #kontakt-map iframe { height: 260px; }
}

@media (max-width: 768px) {
  #kontakt-grid { grid-template-columns: 1fr; }
  .form-row--half { grid-template-columns: 1fr; }
}

#realizacje-wrap {
  max-width: 1040px;
  margin: 20px auto 0;
  padding: 0 20px;
}
#realizacje-wrap h1 {
  color: #000;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 14px;
}
#realizacje-lead {
  font-size: 17px;
  line-height: 27px;
  max-width: 640px;
  margin-bottom: 26px;
}

#realizacje-filtry {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.filtr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Ubuntu', sans-serif;
  font-size: 14px;
  color: var(--text);
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 20px;
  padding: 9px 18px;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.filtr-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.filtr-btn:hover { border-color: var(--brand); color: var(--brand); }
.filtr-btn.is-active {
  background-color: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

#realizacje-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.realizacja-item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 6px 4px 10px rgba(0,0,0,.14);
  opacity: 1;
  transform: scale(1);
  transition: opacity .22s ease, transform .22s ease;
}
.realizacja-item.is-hidden {
  opacity: 0;
  transform: scale(.85);
}
.realizacja-thumb {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.realizacja-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.realizacja-thumb svg {
  width: 40%;
  height: 40%;
  color: rgba(255,255,255,.35);
}

.realizacja-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(180deg, rgba(30,30,30,0) 35%, rgba(30,30,30,.94) 100%);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}
.realizacja-item:hover .realizacja-overlay,
.realizacja-item:focus .realizacja-overlay {
  opacity: 1;
  transform: translateY(0);
}
.realizacja-tag {
  align-self: flex-start;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  background-color: var(--brand);
  border-radius: 12px;
  padding: 3px 10px;
  margin-bottom: 10px;
}
.realizacja-overlay h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}
.realizacja-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #fff;
  opacity: .9;
}
.realizacja-link svg { width: 14px; height: 14px; }

#realizacje-cta {
  text-align: center;
  margin: 44px 0 20px;
}
#realizacje-cta p {
  font-size: 19px;
  color: #000;
  margin-bottom: 16px;
}
#realizacje-cta a {
  display: inline-block;
  color: #fff;
  background-color: var(--dark);
  font-size: 15px;
  font-weight: 300;
  padding: 14px 22px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background-color .15s ease;
}
#realizacje-cta a:hover { background-color: var(--brand); }
#realizacje-cta a span { font-weight: 500; }

@media (max-width: 900px) {
  #realizacje-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  #realizacje-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 420px) {
  #realizacje-grid { grid-template-columns: 1fr; }
}

#szczegoly-wrap {
  max-width: 1040px;
  margin: 20px auto 0;
  padding: 0 20px;
}

#szczegoly-hero {
  height: 260px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 8px 5px 12px rgba(0,0,0,.16);
  margin-bottom: 26px;
}
#szczegoly-hero svg { width: 90px; height: 90px; color: rgba(255,255,255,.4); }

#szczegoly-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
#szczegoly-header h1 {
  color: #000;
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 38px);
  margin: 10px 0 10px;
}
#szczegoly-header p {
  font-size: 16px;
  line-height: 25px;
  max-width: 560px;
}
.btn-odwiedz {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background-color: var(--dark);
  font-size: 15px;
  padding: 13px 20px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background-color .15s ease;
}
.btn-odwiedz svg { width: 16px; height: 16px; }
.btn-odwiedz:hover { background-color: var(--brand); color: #fff; }

#szczegoly-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.meta-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 8px 5px 12px rgba(0,0,0,.1);
  padding: 18px;
}
.meta-item svg { width: 22px; height: 22px; color: var(--brand); flex-shrink: 0; margin-top: 2px; }
.meta-item strong { display: block; font-size: 13px; color: #000; font-weight: 500; }
.meta-item span { font-size: 13px; color: var(--text); }

#szczegoly-opis h2 { font-size: 24px; font-weight: 500; color: #000; }
#szczegoly-opis p {
  font-size: 16px;
  line-height: 26px;
  margin: 18px 0;
}

#szczegoly-galeria {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.galeria-kafel {
  aspect-ratio: 4 / 3;
  border-radius: 3px;
  box-shadow: 6px 4px 10px rgba(0,0,0,.14);
}
.galeria-hint {
  font-size: 13px;
  color: #9f9f9f;
  margin-top: 10px !important;
}

#szczegoly-nav { margin: 36px 0 6px; }
.szczegoly-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--text);
}
.szczegoly-back svg { width: 16px; height: 16px; }
.szczegoly-back:hover { color: var(--brand); }

@media (max-width: 768px) {
  #szczegoly-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #szczegoly-galeria { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  #header { padding-right: 76px; }

  .menu-toggle {
    display: flex;
    position: fixed;
    top: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
    z-index: 1001;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,.18);
  }
  .menu-toggle span:nth-child(1) { width: 24px; transform: translate(-50%, calc(-50% - 7px)); }
  .menu-toggle span:nth-child(2) { width: 16px; left: calc(50% + 4px); }
  .menu-toggle span:nth-child(3) { width: 24px; transform: translate(-50%, calc(-50% + 7px)); }
  .menu-toggle.is-active span:nth-child(1),
  .menu-toggle.is-active span:nth-child(3) { width: 24px; left: 50%; }

  #navigation {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    z-index: 999;
  }
  #navigation.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  #navigation .menu {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
    max-width: 320px;
    padding: 0 20px;
  }
  #navigation .menu li {
    width: 100%;
    text-align: center;
    border-top: 0;
  }
  .mobile-only-item { display: block; }
  #navigation .menu a {
    display: flex;
    justify-content: center;
    font-size: 22px;
    padding: 16px 4px;
    border-radius: 8px;
  }
  #navigation .menu a svg { width: 20px; height: 20px; }
  #navigation .menu .fb-item {
    margin-top: 14px;
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    display: flex;
    justify-content: center;
  }
  #navigation .menu .fb-item .fb-link { width: 42px; height: 42px; }
  #navigation .menu .fb-item .fb-link svg { width: 20px; height: 20px; }

  .menu-item-row { justify-content: center; }
  .submenu-toggle { width: 34px; height: 34px; margin-left: 2px; color: #999; }
  .submenu-toggle .chevron { width: 16px; height: 16px; }
  .submenu {
    position: static;
    box-shadow: none;
    background: rgba(0,0,0,.03);
    margin: 6px auto 0;
    max-width: 300px;
    display: none;
  }
  .submenu.is-open { display: block; }
  .submenu a { justify-content: center; font-size: 17px; padding: 10px 12px; }

  #top { text-align: center; justify-content: center; }
  .hero-copy, .hero-media { flex: 1 1 100%; justify-content: center; }
  #realizacje { text-align: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
}

body.no-scroll { overflow: hidden; }

@media (max-width: 700px) {
  #kafelki { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .kafelek:nth-child(3n+2) { margin-top: 0; }
  .kafelek:nth-child(2n) { margin-top: clamp(14px, 4vw, 26px); }
}

@media (max-width: 600px) {
  #footer { flex-direction: column; text-align: center; }
  #stopkalewa .menu { justify-content: center; }
}

@media (max-width: 420px) {
  #kafelki { grid-template-columns: 1fr; }
  .kafelek { margin-top: 0 !important; aspect-ratio: 1.05; padding: 12% 14%; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

#o-stronie { margin-top: 50px; }

.o-title { font-size: 27px; font-weight: 500; color: #000; }
.o-intro p { font-size: 17px; line-height: 27px; margin-top: 16px; }

.powody { margin-top: 54px; }
.powody-heading {
  font-size: 22px;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin-bottom: 26px;
}
.powody-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.powod-card {
  background-color: #fff;
  border-radius: 3px;
  border-top: 4px solid var(--card-accent, var(--brand));
  padding: 26px 22px;
  box-shadow: 8px 5px 12px rgba(0,0,0,.09);
  transition: transform .18s ease, box-shadow .18s ease, opacity .6s ease, transform .6s ease;
}
.powod-card:hover {
  transform: translateY(-4px);
  box-shadow: 10px 10px 18px rgba(0,0,0,.15);
}
.powody-grid .powod-card:nth-child(1) { --card-accent: #dc1854; }
.powody-grid .powod-card:nth-child(2) { --card-accent: #a51854; }
.powody-grid .powod-card:nth-child(3) { --card-accent: #841854; }
.powody-grid .powod-card:nth-child(4) { --card-accent: #6c1854; }
.powod-nr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--card-accent, var(--brand));
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
}
.powod-card h4 { font-size: 17px; font-weight: 500; color: #000; margin-bottom: 8px; }
.powod-card p { font-size: 14.5px; line-height: 22px; color: var(--text); }

.powody-grid .powod-card:nth-child(1) { transition-delay: 0s; }
.powody-grid .powod-card:nth-child(2) { transition-delay: .1s; }
.powody-grid .powod-card:nth-child(3) { transition-delay: .2s; }
.powody-grid .powod-card:nth-child(4) { transition-delay: .3s; }

.informacje {
  margin-top: 54px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, #0b2338 0%, #0f4a52 100%);
  border-radius: 6px;
  padding: 44px;
  color: #fff;
  box-shadow: 10px 10px 24px rgba(0,0,0,.22);
}
.informacje .o-title { color: #fff; }
.informacje-tekst p { font-size: 16px; line-height: 25px; margin-top: 14px; color: #d7e3e2; }

.informacje-wizual {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-orbit { position: relative; width: 260px; height: 260px; }

.info-orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.18);
  transform: translate(-50%, -50%);
  animation: infoSpin 26s linear infinite;
}
@keyframes infoSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.info-orbit-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 104px; height: 104px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,.22), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.25);
  animation: infoPulse 3.4s ease-in-out infinite;
}
.info-orbit-core svg { width: 46px; height: 46px; color: #fff; }
@keyframes infoPulse {
  0%, 100% { box-shadow: 0 0 22px rgba(79,209,197,.25); }
  50%      { box-shadow: 0 0 46px rgba(79,209,197,.55); }
}

.info-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  padding: 9px 14px;
  border-radius: 30px;
  font-size: 13px;
  white-space: nowrap;
  color: #fff;
  animation: infoFloat 4.6s ease-in-out infinite;
}
.info-badge svg { width: 16px; height: 16px; color: #4fd1c5; flex-shrink: 0; }

.info-badge--1 { top: -6px;   left: 2%;    animation-delay: 0s; }
.info-badge--2 { top: 22%;    right: -8%;  animation-delay: .5s; }
.info-badge--3 { bottom: 18%; right: -2%;  animation-delay: 1s; }
.info-badge--4 { bottom: -8%; left: 10%;   animation-delay: 1.5s; }

@keyframes infoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

@media (max-width: 900px) {
  .informacje { grid-template-columns: 1fr; padding: 32px; }
  .informacje-wizual { height: 260px; margin-top: 10px; }
}
@media (max-width: 480px) {
  .info-orbit { width: 220px; height: 220px; }
  .info-badge { font-size: 12px; padding: 7px 11px; }
  .info-badge--2 { right: -2%; }
  .info-badge--3 { right: 2%; }
}

.koszt {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(135deg, var(--dark) 0%, #3a0e1b 100%);
  border-radius: 6px;
  padding: 44px;
  color: #fff;
  box-shadow: 10px 10px 24px rgba(0,0,0,.22);
}
.koszt .o-title { color: #fff; }
.koszt-tekst p { font-size: 16px; line-height: 25px; margin-top: 14px; color: #d8d8d8; }

.koszt-cta {
  display: inline-block;
  margin-top: 22px;
  color: #fff !important;
  background-color: var(--brand);
  font-size: 15px;
  font-weight: 300;
  padding: 14px 22px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background-color .15s ease, transform .15s ease;
}
.koszt-cta:hover { background-color: var(--brand-2); transform: translateY(-2px); }
.koszt-cta span { font-weight: 500; }

.koszt-suwak-track {
  position: relative;
  height: 8px;
  border-radius: 4px;
  background-color: rgba(255,255,255,.15);
  margin-bottom: 10px;
}
.koszt-suwak-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--brand), #ff5f8f);
  transition: width 1.1s cubic-bezier(.22,.9,.3,1);
}
.koszt-suwak-kropka {
  position: absolute;
  top: 50%; left: 0%;
  width: 16px; height: 16px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.22);
  transform: translate(-50%, -50%);
  transition: left 1.1s cubic-bezier(.22,.9,.3,1);
}
.koszt-suwak-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #bdbdbd;
  margin-bottom: 26px;
}

.koszt-lista { list-style: none; display: grid; gap: 10px; }
.koszt-lista li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #e6e6e6;
}
.koszt-lista li svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; }

@media (max-width: 900px) {
  .powody-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .koszt { grid-template-columns: 1fr; padding: 32px; }
}
@media (max-width: 480px) {
  .powody-grid { grid-template-columns: 1fr; }
}

@media (min-width: 769px) {
  #oferta-kafelki.oferta-kafelki--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
}

.usluga-hero {
  margin: 4px 0 40px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  align-items: center;
}
.usluga-hero-tekst p { font-size: 17px; line-height: 27px; margin-top: 14px; }
.usluga-hero-grafika {
  border-radius: 10px;
  padding: 30px;
  box-shadow: 10px 10px 24px rgba(0,0,0,.16);
  display: flex;
  align-items: center;
  justify-content: center;
}
.usluga-hero-grafika svg { width: 100%; height: auto; max-width: 260px; }

.usluga-lead-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--brand);
  background-color: rgba(220,24,84,.08);
  padding: 7px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.usluga-lead-badge svg { width: 15px; height: 15px; }

.usluga-cechy { margin-top: 10px; }
.usluga-sekcja-tytul {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  margin-bottom: 4px;
}
.usluga-sekcja-lead { font-size: 15.5px; color: var(--text); margin-bottom: 22px; max-width: 640px; }

.cechy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
  margin-bottom: 50px;
}
.cechy-karta {
  background-color: #fff;
  border-radius: 6px;
  border-top: 4px solid var(--card-accent, var(--brand));
  padding: 24px 22px;
  box-shadow: 8px 5px 12px rgba(0,0,0,.09);
  transition: transform .18s ease, box-shadow .18s ease;
}
.cechy-karta:hover { transform: translateY(-4px); box-shadow: 10px 10px 18px rgba(0,0,0,.15); }
.cechy-karta-ikona {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: var(--card-accent, var(--brand));
  margin-bottom: 14px;
}
.cechy-karta-ikona svg { width: 22px; height: 22px; color: #fff; }
.cechy-karta h4 { font-size: 16.5px; font-weight: 500; color: #000; margin-bottom: 7px; }
.cechy-karta p { font-size: 14.5px; line-height: 21px; color: var(--text); }

.usluga-proces { margin-bottom: 50px; }
.proces-lista {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  counter-reset: krok;
}
.proces-krok {
  position: relative;
  background-color: #fff;
  border-radius: 6px;
  padding: 22px 18px 20px;
  box-shadow: 8px 5px 12px rgba(0,0,0,.08);
}
.proces-krok-nr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}
.proces-krok h4 { font-size: 15.5px; font-weight: 500; color: #000; margin-bottom: 6px; }
.proces-krok p { font-size: 13.5px; line-height: 20px; color: var(--text); }

.usluga-cta-baner {
  margin: 10px 0 46px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(135deg, var(--dark) 0%, #3a0e1b 100%);
  border-radius: 8px;
  padding: 30px 34px;
  color: #fff;
  box-shadow: 10px 10px 24px rgba(0,0,0,.2);
}
.usluga-cta-baner h3 { font-size: 20px; font-weight: 500; margin-bottom: 6px; }
.usluga-cta-baner p { font-size: 14.5px; color: #d8d8d8; margin: 0; }
.usluga-cta-baner a {
  flex-shrink: 0;
  display: inline-block;
  color: #fff;
  background-color: var(--brand);
  font-size: 15px;
  font-weight: 300;
  padding: 14px 24px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background-color .15s ease, transform .15s ease;
}
.usluga-cta-baner a:hover { background-color: var(--brand-2); transform: translateY(-2px); }
.usluga-cta-baner a span { font-weight: 500; }

.usluga-faq { margin-bottom: 6px; }
.faq-lista { display: grid; gap: 12px; }
.faq-pozycja {
  background-color: #fff;
  border-radius: 6px;
  padding: 18px 20px;
  box-shadow: 6px 4px 10px rgba(0,0,0,.06);
}
.faq-pozycja h4 { font-size: 15.5px; font-weight: 500; color: #000; margin-bottom: 6px; }
.faq-pozycja p { font-size: 14px; line-height: 21px; color: var(--text); margin: 0; }

.usluga-powiazane { margin-top: 50px; }

@media (max-width: 900px) {
  .usluga-hero { grid-template-columns: 1fr; }
  .usluga-hero-grafika { order: -1; padding: 22px; }
  .usluga-hero-grafika svg { max-width: 190px; }
  .cechy-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .proces-lista { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 560px) {
  .cechy-grid { grid-template-columns: 1fr; }
  .proces-lista { grid-template-columns: 1fr; }
  .usluga-cta-baner { flex-direction: column; align-items: flex-start; }
}

.error-404 {
  position: relative;
  overflow: hidden;
  padding: 70px 20px 90px;
  text-align: center;
  border-radius: 6px;
}

.error-404-hex {
  position: absolute;
  width: 120px;
  height: 104px;
  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 0 L90 0 L120 52 L90 104 L30 104 L0 52 Z' fill='none' stroke='%23dc1854' stroke-opacity='0.14' stroke-width='2.5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  animation: hexFloat 6s ease-in-out infinite;
}
.error-404-hex--1 { top: 4%;  left: 2%;  width: 90px;  height: 78px;  animation-delay: 0s; }
.error-404-hex--2 { top: 62%; left: 6%;  width: 60px;  height: 52px;  animation-delay: .8s; }
.error-404-hex--3 { top: 10%; right: 4%; width: 110px; height: 96px; animation-delay: .4s; }
.error-404-hex--4 { top: 68%; right: 9%; width: 70px;  height: 60px; animation-delay: 1.2s; }
.error-404-hex--5 { top: 38%; left: 46%; width: 46px;  height: 40px; animation-delay: 1.6s; opacity: .6; }
@keyframes hexFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(6deg); }
}

.error-404-number {
  position: relative;
  font-size: clamp(96px, 22vw, 220px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -4px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 45%, #260910 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
}

.error-404-wheel {
  display: inline-block;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 45%, #260910 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: wheelSpin 5s linear infinite;
  transform-origin: 50% 55%;
}
@keyframes wheelSpin {
  0%, 78% { transform: rotate(0deg); }
  92% { transform: rotate(340deg); }
  100% { transform: rotate(360deg); }
}

.error-404 h2 {
  font-size: 27px;
  font-weight: 500;
  color: var(--dark);
  margin-top: 6px;
}

.error-404 .kreska { margin-left: auto; margin-right: auto; }

.error-404 p.error-404-lead {
  max-width: 480px;
  margin: 14px auto 0;
  font-size: 16px;
  line-height: 25px;
}

.error-404-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}
.error-404-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff !important;
  background-color: var(--brand);
  font-size: 15px;
  font-weight: 300;
  padding: 14px 22px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background-color .15s ease, transform .15s ease;
}
.error-404-cta:hover { background-color: var(--brand-2); transform: translateY(-2px); }
.error-404-cta svg { width: 17px; height: 17px; flex-shrink: 0; }
.error-404-cta.ghost {
  color: var(--dark) !important;
  background-color: transparent;
  border: 1.5px solid #e4e4e4;
}
.error-404-cta.ghost:hover { border-color: var(--brand); color: var(--brand) !important; background-color: rgba(220,24,84,.06); }

.error-404-links {
  margin-top: 56px;
  text-align: left;
}
.error-404-links h3 {
  text-align: center;
  font-size: 19px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 22px;
}
.error-404-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.error-404-grid a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 18px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 6px 6px 16px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
  color: var(--dark);
}
.error-404-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 20px rgba(0,0,0,.12);
  color: var(--dark);
}
.error-404-grid a svg {
  width: 24px;
  height: 24px;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform .18s ease;
}
.error-404-grid a:hover svg { transform: scale(1.12) rotate(-6deg); }
.error-404-grid a span.tt { font-size: 15.5px; font-weight: 500; }
.error-404-grid a span.dd { font-size: 13.5px; color: var(--text); line-height: 18px; }

@media (max-width: 768px) {
  .error-404 { padding: 50px 16px 60px; }
  .error-404-grid { grid-template-columns: repeat(2, 1fr); }
  .error-404-hex--3, .error-404-hex--4 { display: none; }
}
@media (max-width: 460px) {
  .error-404-grid { grid-template-columns: 1fr; }
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.opcjonalnie {
  color: #9b9b9b;
  font-weight: 400;
  font-size: .85em;
}

#kontakt-form input.is-invalid,
#kontakt-form textarea.is-invalid,
#kontakt-form select.is-invalid {
  border-color: #dc1854 !important;
  box-shadow: 0 0 0 .2rem rgba(220, 24, 84, .12) !important;
}
#kontakt-form .kontakt-error {
  color: #dc1854;
  font-size: .82rem;
  margin-top: .4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .35rem;
  animation: kontaktErrorIn .18s ease;
}
#kontakt-form .kontakt-error::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #dc1854;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
}
@keyframes kontaktErrorIn {
  from { opacity: 0; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-check-row {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin: .5rem 0 1.25rem;
}
.form-check-row input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.6px solid #d0d0d0;
  border-radius: 5px;
  margin-top: .15rem;
  cursor: pointer;
  position: relative;
  transition: border-color .15s ease, background-color .15s ease;
}
.form-check-row input[type="checkbox"]:checked {
  background-color: var(--brand, #dc1854);
  border-color: var(--brand, #dc1854);
}
.form-check-row input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form-check-row input[type="checkbox"].is-invalid {
  border-color: #dc1854 !important;
}
.form-check-row label {
  font-size: .88rem;
  line-height: 1.5;
  color: var(--text, #616161);
  cursor: pointer;
}
.form-check-row label a {
  color: var(--brand, #dc1854);
  text-decoration: underline;
}
.form-check-row .kontakt-error {
  flex-basis: 100%;
  margin-left: 32px;
  margin-top: -.3rem;
}

.kontakt-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 30, 30, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.kontakt-modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.kontakt-modal {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem 2rem;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 60px -20px rgba(30, 30, 30, .45);
  transform: translateY(16px) scale(.97);
  transition: transform .25s ease;
}
.kontakt-modal-overlay.show .kontakt-modal {
  transform: translateY(0) scale(1);
}

.kontakt-modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #fff;
}
.kontakt-modal-icon svg {
  width: 30px;
  height: 30px;
}
.kontakt-modal-icon.sukces {
  background: linear-gradient(135deg, var(--brand, #dc1854), var(--brand-2, #a51854));
}
.kontakt-modal-icon.blad {
  background: linear-gradient(135deg, #6b6b6b, #1e1e1e);
}

.kontakt-modal h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: .6rem;
}
.kontakt-modal p {
  color: #616161;
  font-size: .95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.kontakt-modal .btn-submit {
  width: 100%;
  justify-content: center;
  display: inline-flex;
}