.site-footer {
  background:
    radial-gradient(38% 70% at 88% 0%, rgba(198,255,58,0.07), transparent 60%),
    #0b0b0b;
  color: #b5b5b5;
  padding: 72px 8vw 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-ui, 'Inter', -apple-system, Arial, sans-serif);
}

.site-footer__top {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__brand img {
  height: 34px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}
.site-footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #8a8a8a;
  max-width: 320px;
}

.site-footer__col h4 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
  font-weight: 600;
}

.site-footer__col a,
.site-footer__col span {
  display: block;
  color: #b5b5b5;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.site-footer__col a { cursor: pointer; }
.site-footer__col a:hover { color: var(--accent, #c6ff3a); }

.site-footer__bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.site-footer__bottom p {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.site-footer__bottom p:last-child {
  color: var(--accent, #c6ff3a);
  opacity: 0.8;
}

@media (max-width: 900px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .site-footer { padding: 56px 6vw 28px; }
}

@media (max-width: 560px) {
  .site-footer__top { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .site-footer__brand { display: flex; flex-direction: column; align-items: center; }
  .site-footer__brand img { margin-left: auto; margin-right: auto; }
  .site-footer__brand p { margin-left: auto; margin-right: auto; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
}

/* --- CTA w nawigacji (wyróżniony przycisk) --- */
.nav .menu a.nav__cta {
  background: var(--accent, #c6ff3a) !important;
  color: #0b0b0b !important;
  font-weight: 700;
}
.nav .menu a.nav__cta:hover {
  background: #d4ff5c !important;
  color: #0b0b0b !important;
}

/* --- Pływający przycisk WhatsApp (wszystkie strony) --- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(37, 211, 102, 0.6);
}
.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #25d366;
}
@media (max-width: 560px) {
  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .wa-float svg { width: 28px; height: 28px; }
}

/* --- Pływający przycisk „Zadzwoń" (nad WhatsAppem) --- */
.call-float {
  position: fixed;
  right: 20px;
  bottom: 86px;
  z-index: 1500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.call-float:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(198, 255, 58, 0.6);
}
.call-float svg { width: 26px; height: 26px; fill: #c6ff3a; }
@media (max-width: 560px) {
  .call-float { width: 52px; height: 52px; right: 16px; bottom: 78px; }
  .call-float svg { width: 25px; height: 25px; }
}
