@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=Barlow:wght@300;400;500;600&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --czarny: #080808;
  --grafit: #111111;
  --grafit2: #1a1a1a;
  --grafit3: #222222;
  --akcent: #ff6b00;
  --akcent-jasny: #ff8c35;
  --akcent-glow: rgba(255, 107, 0, 0.12);
  --bialy: #f5f5f5;
  --szary: #888888;
  --szary2: #444444;
  --font-d: "Barlow Condensed", sans-serif;
  --font-b: "Barlow", sans-serif;
  --radius: 14px;
  --max: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--czarny);
  color: var(--bialy);
  font-family: var(--font-b);
  -webkit-font-smoothing: antialiased;
  overflow-x: visible;
}
section {
  scroll-margin-top: 100px;
}
/* ── UTILS ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.sekcja-header {
  text-align: center;
  margin-bottom: 56px;
}
.sekcja-kicker {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--akcent);
  margin-bottom: 12px;
}
.sekcja-tytul {
  font-family: var(--font-d);
  font-size: 56px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--bialy);
  line-height: 1;
}
.sekcja-tytul span {
  color: var(--akcent);
}

.btn-glowny {
  display: inline-block;
  background: var(--akcent);
  color: #000;
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-glowny:hover {
  background: var(--akcent-jasny);
  transform: translateY(-2px);
}
.btn-glowny:active {
  transform: translateY(0);
}

.btn-drugorzedny {
  display: inline-block;
  background: transparent;
  color: var(--bialy);
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 8px;
  border: 1px solid var(--szary2);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-drugorzedny:hover {
  border-color: var(--bialy);
}

.site-wrapper {
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition:
    background 0.3s,
    backdrop-filter 0.3s,
    box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255, 107, 0, 0.2);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav-logo {
  font-family: var(--font-d);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bialy);
  flex-shrink: 0;
}
.nav-logo span {
  color: var(--akcent);
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--szary);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--bialy);
}
.nav-cta {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--akcent);
  border: 1px solid var(--akcent);
  padding: 10px 20px;
  border-radius: 6px;
  flex-shrink: 0;
  transition:
    background 0.2s,
    color 0.2s;
}
.nav-cta:hover {
  background: var(--akcent);
  color: #000;
}
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--bialy);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 70% 50%,
      rgba(255, 107, 0, 0.08) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, #080808 0%, #111111 100%);
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 107, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 8, 8, 0.95) 40%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-kicker {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--akcent);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.2s both;
}
.hero-tytul {
  font-family: var(--font-d);
  font-size: clamp(64px, 8vw, 100px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 0.95;
  color: var(--bialy);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.35s both;
}
.hero-tytul span {
  color: var(--akcent);
}
.hero-opis {
  font-size: 16px;
  font-weight: 400;
  color: var(--szary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.5s both;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.65s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.8s both;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-liczba {
  font-family: var(--font-d);
  font-size: 32px;
  font-weight: 900;
  color: var(--akcent);
  line-height: 1;
}
.stat-opis {
  font-size: 11px;
  font-weight: 500;
  color: var(--szary);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--szary2);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.6s ease 1s both;
}
.hero-scroll span {
  display: block;
  width: 20px;
  height: 32px;
  border: 2px solid var(--szary2);
  border-radius: 10px;
  position: relative;
}
.hero-scroll span::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: var(--akcent);
  border-radius: 2px;
  animation: scrollDot 1.5s ease infinite;
}
@keyframes scrollDot {
  0% {
    top: 5px;
    opacity: 1;
  }
  100% {
    top: 18px;
    opacity: 0;
  }
}

/* ── USŁUGI ── */
.uslugi {
  padding: 100px 0;
  background: var(--grafit);
  position: relative;
}
.uslugi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--akcent), transparent);
}
.uslugi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.usluga-karta {
  border-radius: var(--radius);
  transition: transform 0.3s;
  position: relative;
  overflow: hidden;
  height: 340px;
  display: flex;
}
.usluga-karta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--akcent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  z-index: 3;
}
.usluga-karta:hover {
  transform: translateY(-4px);
}
.usluga-karta:hover::before {
  transform: scaleX(1);
}
.usluga-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.usluga-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.usluga-karta:hover .usluga-img img {
  transform: scale(1.06);
}
.usluga-karta-tresc {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    transparent 75%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 24px 24px 24px;
}
.usluga-karta h3 {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bialy);
  margin-bottom: 8px;
  margin-top: 8px;
}
.usluga-karta p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin-bottom: 12px;
}
.usluga-cena {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 700;
  color: var(--akcent);
  letter-spacing: 1px;
}
.uslugi-cta {
  text-align: center;
}

/* ── REALIZACJE ── */
.realizacje {
  padding: 100px 0;
  background: var(--czarny);
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 12px;
}
.galeria-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--grafit2);
}
.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.galeria-item:hover img {
  transform: scale(1.06);
}
.galeria-item.wielki {
  grid-column: span 2;
  grid-row: span 2;
}
.galeria-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.galeria-overlay p {
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bialy);
}
.galeria-item:hover .galeria-overlay {
  opacity: 1;
}

/* ── O FIRMIE ── */
.o-firmie {
  padding: 100px 0;
  background: var(--grafit);
  position: relative;
}
.o-firmie::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--akcent), transparent);
}
.o-firmie-foto {
  width: 100%;
  max-height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin-bottom: 48px;
}
.o-firmie-foto img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.o-firmie-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--akcent);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
  box-shadow: 0 4px 24px rgba(255, 107, 0, 0.5);
}
.badge-liczba {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 900;
  color: #000;
  line-height: 1;
}
.badge-tekst {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
  padding: 0 8px;
  line-height: 1.2;
}
.o-firmie-tresc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.o-firmie-tresc .sekcja-kicker {
  margin-bottom: 8px;
}
.o-firmie-opis {
  color: var(--szary);
  font-size: 15px;
  line-height: 1.7;
  grid-column: 2;
  grid-row: 1 / 3;
  padding-top: 40px;
}
.o-firmie-punkty {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.punkt {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.punkt-ikona {
  font-size: 22px;
  width: 40px;
  height: 40px;
  background: var(--grafit2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.punkt strong {
  display: block;
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bialy);
  margin-bottom: 2px;
}
.punkt p {
  font-size: 13px;
  color: var(--szary);
  line-height: 1.5;
}
.o-firmie-tresc .sekcja-kicker {
  text-align: left;
}
.o-firmie-tresc .sekcja-tytul {
  text-align: left;
  margin-bottom: 20px;
}

/* ── KONTAKT ── */
.kontakt {
  padding: 100px 0;
  background: var(--czarny);
}
.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.kontakt-pozycja {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.kontakt-ikona {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.kontakt-label {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--szary);
  margin-bottom: 4px;
}
.kontakt-wartosc {
  font-size: 15px;
  font-weight: 500;
  color: var(--bialy);
  text-decoration: none;
  transition: color 0.2s;
}
a.kontakt-wartosc:hover {
  color: var(--akcent);
}
.kontakt-form {
  background: var(--grafit);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--grafit3);
}
.form-pole {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-pole label {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--szary);
}
.form-pole input,
.form-pole textarea {
  background: var(--grafit2);
  border: 1px solid var(--szary2);
  border-radius: 8px;
  color: var(--bialy);
  font-family: var(--font-b);
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  resize: vertical;
}
.form-pole input::placeholder,
.form-pole textarea::placeholder {
  color: var(--szary2);
}
.form-pole input:focus,
.form-pole textarea:focus {
  border-color: var(--akcent);
  box-shadow: 0 0 0 3px var(--akcent-glow);
}

/* ── FOOTER ── */
.footer {
  background: var(--grafit);
  padding: 48px 0 32px;
  border-top: 1px solid var(--grafit3);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bialy);
}
.footer-logo span {
  color: var(--akcent);
}
.footer-opis {
  font-size: 13px;
  color: var(--szary);
  line-height: 1.7;
}
.footer-linki {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-linki a {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--szary);
  transition: color 0.2s;
}
.footer-linki a:hover {
  color: var(--akcent);
}
.footer-copy {
  font-size: 11px;
  color: var(--szary2);
}

/* ── ANIMACJE ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(255, 107, 0, 0.65);
  }
}

.reveal {
  opacity: 1;
  transform: none;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--czarny);
}
::-webkit-scrollbar-thumb {
  background: var(--szary2);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--akcent);
}

/* ════════════════════════════════════
   NOWE SEKCJE
   ════════════════════════════════════ */

/* ── LICZNIKI ── */
.liczniki {
  padding: 80px 0;
  background: var(--akcent);
  position: relative;
  overflow: hidden;
}
.liczniki::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--akcent) 0%,
    var(--akcent-jasny) 100%
  );
}
.liczniki-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.licznik-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.licznik-top {
  display: flex;
  align-items: flex-start;
  gap: 2px;
}
.licznik-wartosc {
  font-family: var(--font-d);
  font-size: 64px;
  font-weight: 900;
  color: #000;
  line-height: 1;
}
.licznik-plus {
  font-family: var(--font-d);
  font-size: 36px;
  font-weight: 900;
  color: #000;
  margin-top: 8px;
}
.licznik-opis {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.65);
}

/* ── OBSZARY ── */
.obszary {
  padding: 100px 0;
  background: var(--czarny);
}
.obszary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.obszar-karta {
  background: var(--grafit);
  border: 1px solid var(--szary2);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.obszar-karta:hover {
  border-color: var(--akcent);
  transform: translateY(-4px);
}
.obszar-ikona {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.obszar-karta h3 {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bialy);
  margin-bottom: 10px;
}
.obszar-karta p {
  font-size: 13px;
  color: var(--szary);
  line-height: 1.6;
}
.obszary-info {
  text-align: center;
  color: var(--szary);
  font-size: 14px;
}
.obszary-info a {
  color: var(--akcent);
  text-decoration: none;
}
.obszary-info a:hover {
  text-decoration: underline;
}

/* ── FAQ ── */
.faq {
  padding: 100px 0;
  background: var(--grafit);
  position: relative;
}
.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--akcent), transparent);
}
.faq-lista {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--grafit2);
  border: 1px solid var(--szary2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open {
  border-color: var(--akcent);
}
.faq-pytanie {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}
.faq-pytanie span:first-child {
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 600;
  color: var(--bialy);
  line-height: 1.4;
}
.faq-ikona {
  font-family: var(--font-d);
  font-size: 24px;
  font-weight: 300;
  color: var(--akcent);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 24px;
  text-align: center;
}
.faq-item.open .faq-ikona {
  transform: rotate(45deg);
}
.faq-odpowiedz {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-odpowiedz p {
  padding: 0 24px 20px;
  color: var(--szary);
  font-size: 14px;
  line-height: 1.7;
}
.faq-odpowiedz p strong {
  color: var(--bialy);
}
.faq-item.open .faq-odpowiedz {
  max-height: 300px;
}

/* ── FLOATING CALL — JEDYNA ZMIANA ── */
.floating-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  padding: 14px 22px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--akcent);
  color: #000;
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  animation: floatPulse 2s ease infinite;
  max-width: calc(100vw - 48px);
  white-space: nowrap;
}
.floating-call:hover {
  background: var(--akcent-jasny);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 107, 0, 0.5);
}
.floating-ikona {
  font-size: 18px;
}

/* ── TABLET 1024px ── */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .nav-burger {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .navbar {
    background: var(--czarny);
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--czarny);
    padding: 20px 32px;
    gap: 0;
    z-index: 999;
  }
  .nav-links.open li a {
    display: block;
    padding: 18px 0;
    font-family: var(--font-d);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--bialy);
    border-bottom: 1px solid var(--szary2);
    text-decoration: none;
  }
  .nav-links.open li:last-child a {
    border-bottom: none;
  }
  .uslugi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .galeria-item {
    height: 220px;
  }
  .galeria-item.wielki {
    grid-column: 1 / -1;
    height: 320px;
  }
  .o-firmie-tresc {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .o-firmie-opis {
    grid-column: 1;
    grid-row: auto;
    padding-top: 16px;
  }
  .obszary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── MOBILE 768px ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-burger {
    display: flex;
    margin-left: auto;
  }
  .nav-cta {
    display: none;
  }
  .nav-inner {
    padding: 0 20px;
    height: 64px;
  }
  .nav-logo {
    font-size: 17px;
    letter-spacing: 2px;
  }
  .navbar {
    background: var(--czarny);
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--czarny);
    padding: 20px 24px;
    gap: 0;
    z-index: 999;
  }
  .nav-links.open li a {
    display: block;
    padding: 18px 0;
    font-family: var(--font-d);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--bialy);
    border-bottom: 1px solid var(--szary2);
    text-decoration: none;
  }
  .nav-links.open li:last-child a {
    border-bottom: none;
  }

  .hero {
    min-height: 100svh;
  }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(8, 8, 8, 0.7) 0%,
      rgba(8, 8, 8, 0.45) 50%,
      rgba(8, 8, 8, 0.88) 100%
    );
  }
  .hero-content {
    margin-left: 0;
    padding: 100px 24px 80px;
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-tytul {
    font-size: clamp(36px, 10vw, 52px);
  }
  .hero-kicker {
    font-size: 10px;
    letter-spacing: 4px;
  }
  .hero-opis {
    font-size: 14px;
    text-align: center;
  }
  .hero-cta {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 40px;
  }
  .btn-glowny,
  .btn-drugorzedny {
    width: 100%;
    text-align: center;
  }
  .hero-stats {
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .stat {
    align-items: center;
  }
  .stat-liczba {
    font-size: 26px;
  }
  .stat-opis {
    font-size: 10px;
  }
  .stat-divider {
    display: none;
  }

  .container {
    padding: 0 16px;
  }
  .sekcja-header {
    margin-bottom: 32px;
  }
  .sekcja-tytul {
    font-size: 30px;
  }

  .uslugi {
    padding: 64px 0;
  }
  .uslugi-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .usluga-karta {
    height: 110px;
    flex-direction: row !important;
    padding: 0 !important;
    align-items: stretch;
  }
  .usluga-img {
    position: relative !important;
    inset: auto !important;
    width: 110px !important;
    min-width: 110px !important;
    height: 110px !important;
    flex-shrink: 0;
    border-radius: var(--radius) 0 0 var(--radius);
    overflow: hidden;
  }
  .usluga-img img {
    transition: none;
  }
  .usluga-karta-tresc {
    position: relative !important;
    inset: auto !important;
    background: var(--grafit2) !important;
    padding: 14px 16px !important;
    justify-content: center !important;
    border-radius: 0 var(--radius) var(--radius) 0;
    flex: 1;
  }
  .usluga-karta-tresc h3 {
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--bialy);
  }
  .usluga-karta-tresc p {
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 6px;
    color: var(--szary);
  }
  .usluga-cena {
    font-size: 13px;
  }

  .realizacje {
    padding: 100px 24px;
    box-sizing: border-box;
  }
  .galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-auto-rows: 200px;
    gap: 12px;
  }
  .galeria-item {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: var(--grafit2);
  }
  .galeria-item.wielki {
    grid-column: span 2;
    grid-row: span 2;
  }
  .galeria-overlay {
    opacity: 1;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.75) 0%,
      transparent 65%
    );
  }
  .galeria-overlay p {
    font-size: 11px;
  }

  .o-firmie {
    padding: 64px 0;
  }
  .o-firmie-foto {
    max-height: 260px;
    margin-bottom: 28px;
  }
  .o-firmie-foto img {
    height: 260px;
  }
  .o-firmie-badge {
    width: 88px;
    height: 88px;
    bottom: 12px;
    right: 12px;
  }
  .badge-liczba {
    font-size: 20px;
  }
  .badge-tekst {
    font-size: 8px;
  }
  .o-firmie-tresc {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .o-firmie-opis {
    grid-column: 1;
    grid-row: auto;
    padding-top: 12px;
    font-size: 14px;
  }
  .o-firmie-punkty {
    gap: 14px;
    margin-top: 18px;
  }
  .punkt-ikona {
    font-size: 18px;
    width: 34px;
    height: 34px;
  }

  .obszary {
    padding: 64px 0;
  }
  .obszary-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .obszar-karta {
    padding: 18px 14px;
  }
  .obszar-karta h3 {
    font-size: 13px;
  }
  .obszar-karta p {
    font-size: 11px;
  }

  .faq {
    padding: 64px 0;
  }
  .faq-pytanie {
    padding: 16px 18px;
  }
  .faq-pytanie span:first-child {
    font-size: 13px;
  }
  .faq-odpowiedz p {
    padding: 0 18px 16px;
    font-size: 13px;
  }

  .kontakt {
    padding: 64px 0;
  }
  .kontakt-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer {
    padding: 40px 0 24px;
  }
  .footer-inner {
    text-align: center;
    gap: 16px;
  }
  .footer-linki {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
  }
  .footer-linki a {
    font-size: 12px;
  }
  .footer-copy {
    font-size: 11px;
  }

  .floating-call {
    padding: 12px 18px;
    font-size: 13px;
    bottom: 16px;
    right: 16px;
  }
}

/* ── MAŁE MOBILE 480px ── */
@media (max-width: 480px) {
  .hero-tytul {
    font-size: clamp(30px, 9vw, 42px);
  }
  .galeria-grid {
    grid-template-columns: 1fr;
  }
  .galeria-item {
    height: 170px;
  }
  .galeria-item.wielki {
    grid-column: 1;
    height: 200px;
  }
  .obszary-grid {
    grid-template-columns: 1fr;
  }
  .floating-tekst {
    display: none;
  }
  .floating-call {
    padding: 14px;
    border-radius: 50%;
  }
}

/* ── DESKTOP — karta usług pionowo ── */
@media (min-width: 769px) {
  .usluga-karta {
    flex-direction: column;
  }
  .usluga-karta-tresc {
    padding: 24px;
  }
}
