:root {
  --black: #090909;
  --black-2: #121212;
  --black-3: #1a1a1a;
  --yellow: #ffbd00;
  --yellow-2: #ffd24a;
  --white: #ffffff;
  --off-white: #f4f4f2;
  --gray: #a8a8a8;
  --line: rgba(255,255,255,.12);
  --shadow: 0 24px 70px rgba(0,0,0,.18);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #171717;
  background: var(--off-white);
  line-height: 1.6;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 100px 0; }
.section-dark { color: var(--white); background: var(--black); }
.section-muted { background: #e9e9e6; }
.skip-link { position: fixed; top: -60px; left: 20px; z-index: 1000; background: var(--yellow); padding: 12px 18px; font-weight: 800; }
.skip-link:focus { top: 20px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9,9,9,.9); backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: white; font-weight: 950; font-style: italic; letter-spacing: -2px; }
.brand-mark { width: 40px; height: 40px; display: grid; place-items: center; border: 4px solid var(--yellow); color: white; transform: skew(-10deg); font-size: 25px; line-height: 1; }
.brand-name { font-size: 30px; line-height: 1; }
.brand-name span { color: var(--yellow); }
.main-nav { display: flex; align-items: center; gap: 26px; color: white; font-weight: 700; }
.main-nav a:not(.btn) { opacity: .82; }
.main-nav a:hover { opacity: 1; color: var(--yellow); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; }
.nav-toggle span { width: 28px; height: 3px; display: block; background: white; margin: 5px 0; }

.btn {
  display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 24px;
  background: var(--yellow); color: #111; border: 2px solid var(--yellow); border-radius: 9px;
  font-weight: 900; text-transform: uppercase; letter-spacing: .3px; transition: .2s ease;
  box-shadow: 0 10px 28px rgba(255,189,0,.2);
}
.btn:hover { transform: translateY(-2px); background: var(--yellow-2); border-color: var(--yellow-2); }
.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,.34); box-shadow: none; }
.btn-outline:hover { color: #111; background: white; border-color: white; }
.btn-small { min-height: 42px; padding: 0 18px; }
.btn-full { width: 100%; }


/* ===== HERO Z REALISTYCZNYM BUSEM ===== */
.hero.hero-photo {
  --hero-shift: 0px;
  position: relative;
  isolation: isolate;
  min-height: min(900px, calc(100svh - 76px));
  padding: clamp(84px, 10vh, 120px) 0 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: #070707;
}

.hero-photo__media {
  position: absolute;
  z-index: -4;
  inset: -5%;
  overflow: hidden;
  transform: translate3d(0, var(--hero-shift), 0) scale(1.075);
  transform-origin: center center;
  will-change: transform;
}


.hero-photo__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  user-select: none;
  pointer-events: none;
}

.hero-photo__shade {
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(3,3,3,.97) 0%,
      rgba(3,3,3,.88) 27%,
      rgba(3,3,3,.52) 48%,
      rgba(3,3,3,.10) 73%,
      rgba(3,3,3,.08) 100%),
    linear-gradient(0deg,
      rgba(0,0,0,.84) 0%,
      transparent 30%,
      rgba(0,0,0,.22) 100%);
}

.hero-photo__flare {
  position: absolute;
  z-index: -2;
  left: 36%;
  bottom: -160px;
  width: 500px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,189,0,.18);
  filter: blur(100px);
  pointer-events: none;
}

.hero-photo__inner {
  width: min(calc(100% - 40px), var(--container));
  min-height: 570px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-photo__copy {
  width: min(660px, 52%);
  padding: 30px 0 44px;
  text-shadow: 0 3px 22px rgba(0,0,0,.65);
}

.hero-photo h1 {
  margin: 15px 0 24px;
  max-width: 650px;
  font-size: clamp(52px, 6.25vw, 94px);
  line-height: .92;
  letter-spacing: -5px;
  text-transform: uppercase;
}

.hero-photo h1 span {
  color: var(--yellow);
  display: inline-block;
}

.hero-photo .hero-lead {
  max-width: 590px;
  margin: 0;
  color: rgba(255,255,255,.83);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.68;
}

.hero-photo .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 31px;
}

.hero-primary {
  gap: 18px;
}

.hero-phone {
  gap: 10px;
  border-color: rgba(255,189,0,.72);
  background: rgba(4,4,4,.35);
  backdrop-filter: blur(10px);
}

.hero-phone:hover {
  border-color: white;
}

.hero-proof {
  position: relative;
  z-index: 3;
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(5,5,5,.78);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 15px;
  box-shadow: 0 24px 70px rgba(0,0,0,.38);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.hero-proof > div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 17px 20px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.hero-proof > div:last-child {
  border-right: 0;
}

.hero-proof p {
  min-width: 0;
  margin: 0;
  line-height: 1.25;
}

.hero-proof strong,
.hero-proof small {
  display: block;
}

.hero-proof strong {
  color: white;
  font-size: 13px;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-proof small {
  margin-top: 5px;
  color: rgba(255,255,255,.64);
  font-size: 11px;
  white-space: nowrap;
}

.proof-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--yellow);
  border: 1px solid rgba(255,189,0,.52);
  border-radius: 12px;
  font-size: 20px;
  font-weight: 900;
  background: rgba(255,189,0,.05);
}

@media (max-width: 1100px) {
  .hero-photo__copy { width: min(690px, 66%); }
  .hero-proof { grid-template-columns: repeat(3, 1fr); }
  .hero-proof > div:nth-child(3) { border-right: 0; }
  .hero-proof > div:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.12); }
}

@media (max-width: 760px) {
  .hero.hero-photo {
    min-height: auto;
    padding-top: 66px;
    padding-bottom: 20px;
  }

  .hero-photo__media {
    inset: 0;
    transform: scale(1.04);
  }

  .hero-photo__media img {
    object-position: 66% center;
  }

  .hero-photo__shade {
    background:
      linear-gradient(90deg, rgba(2,2,2,.92), rgba(2,2,2,.50)),
      linear-gradient(0deg, rgba(0,0,0,.95), transparent 48%, rgba(0,0,0,.3));
  }

  .hero-photo__inner {
    min-height: 640px;
    align-items: flex-end;
  }

  .hero-photo__copy {
    width: 100%;
    padding: 50px 0 30px;
  }

  .hero-photo h1 {
    font-size: clamp(47px, 15vw, 73px);
    letter-spacing: -3px;
  }

  .hero-photo .hero-lead {
    max-width: 520px;
    font-size: 16px;
  }

  .hero-photo .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-photo .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof > div,
  .hero-proof > div:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .hero-proof > div:last-child {
    border-bottom: 0;
  }

  .hero-proof small,
  .hero-proof strong {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo__media {
    transform: scale(1.04) !important;
  }
}

.quick-contact { background: var(--yellow); color: #111; }
.quick-grid { min-height: 96px; display: grid; grid-template-columns: repeat(3,1fr); align-items: center; }
.quick-grid > div { display: flex; align-items: center; gap: 16px; padding: 20px 30px; border-right: 1px solid rgba(0,0,0,.18); }
.quick-grid > div:last-child { border-right: 0; }
.quick-grid small { display: block; text-transform: uppercase; font-size: 11px; font-weight: 900; opacity: .65; letter-spacing: 1px; }
.quick-grid a, .quick-grid strong { font-weight: 900; }
.quick-icon { font-size: 25px; }

.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading h2, .quote-copy h2, .contact-copy h2 { margin: 10px 0 16px; font-size: clamp(34px, 5vw, 58px); line-height: 1.05; letter-spacing: -2px; text-transform: uppercase; }
.section-heading p:last-child, .quote-copy > p, .contact-copy > p { color: #646464; font-size: 18px; }
.section-dark .section-heading p:last-child { color: #bcbcbc; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-card { background: white; border-radius: var(--radius); padding: 30px; box-shadow: 0 16px 45px rgba(0,0,0,.06); border: 1px solid rgba(0,0,0,.05); transition: .2s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card h3 { margin: 16px 0 8px; font-size: 22px; }
.service-card p { margin: 0; color: #666; }
.service-icon { width: 54px; height: 54px; display: grid; place-items: center; background: #111; color: var(--yellow); border-radius: 14px; font-size: 25px; font-weight: 900; }

.quote-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: center; }
.check-list { list-style: none; padding: 0; margin: 30px 0 0; }
.check-list li { position: relative; padding-left: 30px; margin: 12px 0; font-weight: 750; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #111; background: var(--yellow); width: 21px; height: 21px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; }
.quote-card, .contact-form { background: white; padding: 34px; border-radius: var(--radius); box-shadow: var(--shadow); }
label { display: block; margin: 16px 0 8px; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .7px; }
input, select, textarea { width: 100%; border: 1px solid #d4d4d4; border-radius: 10px; background: #fafafa; padding: 14px 15px; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(255,189,0,.15); }
input[type="range"] { accent-color: var(--yellow); padding: 0; }
.range-labels { display: flex; justify-content: space-between; font-size: 12px; color: #777; }
.range-labels strong { color: #111; }
.estimate-box { margin: 28px 0 18px; padding: 20px; border-radius: 14px; background: #111; color: white; display: flex; justify-content: space-between; align-items: center; }
.estimate-box span { color: #bdbdbd; }
.estimate-box strong { color: var(--yellow); font-size: 28px; }
.form-note { display: block; text-align: center; margin-top: 10px; color: #888; }

.before-after { position: relative; height: 520px; border-radius: 24px; overflow: hidden; box-shadow: 0 35px 90px rgba(0,0,0,.45); }
.ba-image { position: absolute; inset: 0; overflow: hidden; }
.ba-before { width: 50%; border-right: 3px solid white; }
.before-after input { position: absolute; inset: 0; z-index: 5; opacity: 0; cursor: ew-resize; }
.ba-handle { position: absolute; z-index: 4; top: 50%; left: 50%; width: 58px; height: 58px; transform: translate(-50%,-50%); border-radius: 50%; display: grid; place-items: center; background: var(--yellow); color: #111; font-size: 24px; font-weight: 900; box-shadow: 0 8px 30px rgba(0,0,0,.3); }
.empty-room, .clutter-room { width: 100%; height: 100%; position: relative; background: linear-gradient(#d8d3c6 0 64%, #8f8572 64%); }
.empty-room::before, .clutter-room::before { content: ""; position: absolute; width: 160px; height: 190px; left: 50%; top: 92px; transform: translateX(-50%); background: linear-gradient(90deg,#bdd4e6 49%,#fff 50% 53%,#bdd4e6 54%); border: 14px solid #eee; box-shadow: 0 0 0 5px rgba(0,0,0,.16); }
.empty-room::after, .clutter-room::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(255,255,255,.25), transparent 35%); }
.empty-room span, .clutter-room span { position: absolute; top: 25px; z-index: 3; padding: 8px 15px; font-weight: 950; background: #2c8b47; color: white; }
.clutter-room span { background: #a82b26; }
.clutter-room i { position: absolute; z-index: 2; display: block; background: #262626; border-radius: 35% 45% 30% 30%; box-shadow: inset 0 0 0 3px rgba(255,255,255,.06); }
.clutter-room i:nth-of-type(1){width:100px;height:120px;left:7%;bottom:12%;}.clutter-room i:nth-of-type(2){width:140px;height:150px;left:18%;bottom:8%;}.clutter-room i:nth-of-type(3){width:110px;height:130px;left:34%;bottom:13%;}.clutter-room i:nth-of-type(4){width:150px;height:115px;left:50%;bottom:7%;}.clutter-room i:nth-of-type(5){width:105px;height:150px;left:68%;bottom:10%;}.clutter-room i:nth-of-type(6){width:130px;height:110px;left:82%;bottom:9%;}.clutter-room i:nth-of-type(7){width:180px;height:70px;left:39%;bottom:25%;background:#795b38;border-radius:8px;}
.feature-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin-top: 34px; background: var(--line); border: 1px solid var(--line); }
.feature-strip > div { background: #111; padding: 24px; display: flex; gap: 14px; align-items: center; }
.feature-strip strong { color: var(--yellow); font-size: 28px; }
.feature-strip span { font-weight: 800; }

.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
details { border-top: 1px solid #ccc; }
details:last-child { border-bottom: 1px solid #ccc; }
summary { cursor: pointer; list-style: none; padding: 22px 38px 22px 0; font-size: 18px; font-weight: 900; position: relative; }
summary::after { content: "+"; position: absolute; right: 8px; font-size: 28px; top: 14px; }
details[open] summary::after { content: "−"; }
details p { margin: 0 0 22px; color: #666; }

.contact-section { background: linear-gradient(135deg, var(--yellow), #ffdb69); }
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; }
.contact-copy .eyebrow { color: #111; }
.contact-copy > p { color: rgba(0,0,0,.65); }
.contact-links { display: grid; gap: 12px; margin-top: 32px; }
.contact-links a { display: flex; align-items: center; gap: 15px; padding: 15px 18px; border: 1px solid rgba(0,0,0,.15); background: rgba(255,255,255,.35); border-radius: 12px; }
.contact-links span { font-size: 25px; }
.contact-links small { display: block; text-transform: uppercase; font-size: 10px; font-weight: 900; opacity: .65; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.consent { display: flex; align-items: center; gap: 10px; text-transform: none; letter-spacing: 0; font-weight: 650; }
.consent input { width: auto; }
.form-status { margin-bottom: 0; color: #34713c; font-weight: 750; }

.site-footer { color: #d5d5d5; background: #070707; padding: 58px 0 18px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 60px; }
.footer-grid strong { color: white; }
.footer-grid p { color: #999; }
.footer-grid a:hover { color: var(--yellow); }
.footer-brand { margin-bottom: 15px; }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); margin-top: 35px; padding-top: 18px; font-size: 13px; color: #777; }
.floating-call { position: fixed; z-index: 50; right: 20px; bottom: 20px; width: 58px; height: 58px; border-radius: 50%; display: none; place-items: center; background: var(--yellow); color: #111; box-shadow: 0 12px 35px rgba(0,0,0,.35); font-size: 24px; }

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

@media (max-width: 980px) {
  .hero-grid, .quote-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .hero-visual { max-width: 720px; }
  .faq-grid { gap: 30px; }
  .feature-strip { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 74px 0; }
  .nav-toggle { display: block; }
  .main-nav { position: absolute; top: 76px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 16px 20px 22px; background: #0a0a0a; border-top: 1px solid rgba(255,255,255,.08); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 0; }
  .main-nav .btn { margin-top: 8px; }
  .hero { padding-top: 78px; }
  .hero h1 { letter-spacing: -2.5px; }
  .quick-grid { grid-template-columns: 1fr; padding: 8px 0; }
  .quick-grid > div { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.14); padding: 15px 8px; }
  .quick-grid > div:last-child { border-bottom: 0; }
  .service-grid, .field-row, .footer-grid { grid-template-columns: 1fr; }
  .before-after { height: 400px; }
  .feature-strip { grid-template-columns: 1fr; }
  .quote-card, .contact-form { padding: 24px 20px; }
  .footer-grid { gap: 22px; }
  .floating-call { display: grid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Pole kosztu utylizacji i gruzu */
.disposal-note {
  margin: 8px 0 0;
  color: #777;
  font-size: 12px;
  line-height: 1.5;
}

#estimate.is-individual {
  max-width: 230px;
  font-size: 18px;
  line-height: 1.15;
  text-align: right;
}

@media (max-width: 520px) {
  .estimate-box {
    gap: 18px;
  }

  #estimate.is-individual {
    max-width: 170px;
    font-size: 16px;
  }
}


/* ===== DODATKOWE SEKCJE: OPINIE, GALERIA, MAPA I WHATSAPP ===== */
.quick-grid { grid-template-columns: repeat(4, 1fr); }
.review-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.review-card { background:#fff; border-radius:var(--radius); padding:30px; border:1px solid rgba(0,0,0,.06); box-shadow:0 16px 45px rgba(0,0,0,.06); }
.review-card h3 { margin:12px 0 8px; font-size:21px; }
.review-card p { color:#666; margin:0 0 18px; }
.review-card small { font-weight:850; }
.stars { color:var(--yellow); font-size:24px; letter-spacing:3px; }
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.gallery-placeholder { min-height:300px; border:1px solid rgba(255,255,255,.14); border-radius:var(--radius); padding:28px; display:flex; flex-direction:column; justify-content:flex-end; background:linear-gradient(145deg,#191919,#0b0b0b); }
.gallery-placeholder span { color:var(--yellow); font-size:44px; font-weight:950; }
.gallery-placeholder strong { font-size:28px; }
.gallery-placeholder small { color:#aaa; }
.map-grid { display:grid; grid-template-columns:.82fr 1.18fr; gap:55px; align-items:center; }
.map-copy h2 { margin:10px 0 16px; font-size:clamp(34px,5vw,58px); line-height:1.05; letter-spacing:-2px; text-transform:uppercase; }
.map-copy > p { color:#646464; font-size:18px; }
.free-zone { display:flex; align-items:center; gap:16px; margin:26px 0; padding:18px 20px; background:#111; color:#fff; border-radius:14px; }
.free-zone strong { color:var(--yellow); font-size:34px; }
.free-zone span { font-weight:850; text-transform:uppercase; }
.city-list { list-style:none; padding:0; margin:0 0 28px; }
.city-list li { position:relative; padding:8px 0 8px 29px; font-weight:750; }
.city-list li::before { content:'✓'; position:absolute; left:0; color:#111; background:var(--yellow); width:20px; height:20px; border-radius:50%; display:grid; place-items:center; font-size:12px; top:10px; }
.map-card { position:relative; background:#111; padding:12px; border-radius:var(--radius); box-shadow:var(--shadow); }
.map-card iframe { width:100%; min-height:480px; border:0; border-radius:15px; display:block; filter:saturate(.8) contrast(1.05); }
.map-card > a { display:block; color:#fff; padding:12px 8px 3px; text-align:right; font-weight:800; }
.map-card > a:hover { color:var(--yellow); }
.map-badge { position:absolute; z-index:2; top:28px; left:28px; padding:10px 14px; background:var(--yellow); color:#111; border-radius:8px; font-size:12px; font-weight:950; box-shadow:0 9px 25px rgba(0,0,0,.24); }
.whatsapp-link { background:rgba(255,255,255,.55) !important; }
.upload-note { display:block; margin-top:8px; color:#777; line-height:1.45; }
.consent a { text-decoration:underline; }
.footer-legal { display:flex; align-items:center; gap:22px; }
.floating-actions { position:fixed; z-index:50; right:20px; bottom:20px; display:none; flex-direction:column; gap:10px; }
.floating-actions .floating-call, .floating-actions .floating-whatsapp { position:static; display:grid; width:58px; height:58px; border-radius:50%; place-items:center; box-shadow:0 12px 35px rgba(0,0,0,.35); font-size:24px; }
.floating-whatsapp { background:#25d366; color:white; }
@media (max-width: 980px) {
  .review-grid, .gallery-grid { grid-template-columns:1fr 1fr; }
  .map-grid { grid-template-columns:1fr; }
}
@media (max-width: 760px) {
  .quick-grid { grid-template-columns:1fr; }
  .review-grid, .gallery-grid { grid-template-columns:1fr; }
  .map-card iframe { min-height:390px; }
  .footer-legal { flex-wrap:wrap; gap:12px 18px; }
  .floating-actions { display:flex; }
  body > .floating-call { display:none; }
}

.privacy-page { background:#f4f4f2; }
.legal-main { padding:80px 0 100px; }
.legal-copy { max-width:850px; }
.legal-copy h1 { margin:10px 0 20px; font-size:clamp(42px,7vw,76px); line-height:1; letter-spacing:-4px; text-transform:uppercase; }
.legal-copy h2 { margin:38px 0 10px; font-size:24px; }
.legal-copy p { color:#555; }
.legal-copy a:not(.btn) { text-decoration:underline; font-weight:750; }
.legal-note { margin:34px 0; padding:22px; background:#fff3c6; border-left:5px solid var(--yellow); border-radius:10px; }


/* ===== INORAZ PRO 2.0: FORMULARZ, COOKIES I DOSTĘPNOŚĆ ===== */
.hp-field { position:absolute !important; left:-9999px !important; width:1px !important; height:1px !important; opacity:0 !important; }
button:disabled { opacity:.65; cursor:wait; transform:none !important; }
.cookie-banner[hidden] { display:none; }
.cookie-banner { position:fixed; z-index:200; left:20px; right:20px; bottom:20px; max-width:1180px; margin:auto; display:flex; align-items:center; justify-content:space-between; gap:28px; padding:22px 24px; color:white; background:rgba(9,9,9,.97); border:1px solid rgba(255,255,255,.16); border-radius:16px; box-shadow:0 24px 70px rgba(0,0,0,.38); backdrop-filter:blur(18px); }
.cookie-banner__copy { max-width:720px; }
.cookie-banner__copy strong { color:var(--yellow); font-size:18px; }
.cookie-banner__copy p { margin:5px 0; color:#d1d1d1; font-size:14px; line-height:1.5; }
.cookie-banner__copy a { font-size:13px; font-weight:800; text-decoration:underline; }
.cookie-banner__actions { display:flex; gap:10px; flex:0 0 auto; }
.cookie-banner .btn { min-height:44px; padding:0 16px; font-size:12px; }
.cookie-banner .btn-outline { border-color:rgba(255,255,255,.35); }
@media (max-width:760px) { .cookie-banner { left:10px; right:10px; bottom:10px; flex-direction:column; align-items:stretch; gap:16px; padding:18px; } .cookie-banner__actions { display:grid; grid-template-columns:1fr; } }


/* ===== INORAZ PRO 3.0: UX, MIKROANIMACJE I KONWERSJA ===== */
.top-contact-bar { background:#050505; color:#d9d9d9; border-bottom:1px solid rgba(255,255,255,.08); font-size:12px; font-weight:800; letter-spacing:.35px; }
.top-contact-bar__inner { min-height:34px; display:flex; align-items:center; justify-content:center; gap:28px; }
.top-contact-bar a { color:var(--yellow); }
.top-contact-bar a:hover { color:white; }
.scroll-progress { position:fixed; z-index:300; top:0; left:0; right:0; height:3px; pointer-events:none; }
.scroll-progress span { display:block; width:0; height:100%; background:var(--yellow); box-shadow:0 0 14px rgba(255,189,0,.55); }
.quick-icon svg,.contact-svg svg,.floating-actions svg,.mobile-contact-bar svg { width:24px; height:24px; fill:none; stroke:currentColor; stroke-width:1.9; stroke-linecap:round; stroke-linejoin:round; }
.quick-icon { width:42px; height:42px; display:grid; place-items:center; border:1px solid rgba(0,0,0,.22); border-radius:12px; }
.trust-metrics { background:#111; color:white; border-top:1px solid rgba(255,255,255,.08); }
.trust-metrics__grid { display:grid; grid-template-columns:repeat(4,1fr); }
.metric { padding:34px 24px; text-align:center; border-right:1px solid rgba(255,255,255,.1); }
.metric:last-child { border-right:0; }
.metric strong { display:block; color:var(--yellow); font-size:clamp(30px,4vw,48px); line-height:1; letter-spacing:-2px; }
.metric span { display:block; margin-top:10px; color:#c4c4c4; font-size:13px; font-weight:800; text-transform:uppercase; letter-spacing:.6px; }
.review-summary { margin-bottom:24px; padding:22px 26px; display:flex; align-items:center; gap:24px; background:#111; color:white; border-radius:16px; }
.review-summary__stars { color:var(--yellow); font-size:24px; letter-spacing:3px; }
.review-summary div:nth-child(2) { flex:1; }
.review-summary strong,.review-summary span { display:block; }
.review-summary span { color:#aaa; font-size:14px; margin-top:3px; }
.review-number { display:inline-grid; place-items:center; width:44px; height:44px; border-radius:12px; background:#111; color:var(--yellow); font-weight:950; }
.gallery-item { position:relative; min-height:330px; overflow:hidden; border:1px solid rgba(255,255,255,.14); border-radius:var(--radius); padding:28px; display:flex; flex-direction:column; align-items:flex-start; justify-content:flex-end; color:white; text-align:left; cursor:pointer; background:#111; transition:transform .25s ease,border-color .25s ease; }
.gallery-item::before,.gallery-item::after { content:""; position:absolute; inset:0; pointer-events:none; }
.gallery-item::before { opacity:.9; transition:transform .55s ease; }
.gallery-item::after { background:linear-gradient(0deg,rgba(0,0,0,.94),transparent 62%); }
.gallery-item--before::before { background:repeating-linear-gradient(35deg,#232323 0 32px,#151515 32px 64px); }
.gallery-item--after::before { background:linear-gradient(135deg,#403a2c,#c5b893 52%,#2a2926); }
.gallery-item--transport::before { background:linear-gradient(135deg,#090909 0 54%,#ffbd00 55% 61%,#171717 62%); }
.gallery-item:hover { transform:translateY(-7px); border-color:rgba(255,189,0,.7); }
.gallery-item:hover::before { transform:scale(1.06); }
.gallery-item > * { position:relative; z-index:2; }
.gallery-item span { color:var(--yellow); font-size:44px; font-weight:950; }
.gallery-item strong { font-size:28px; }
.gallery-item small { color:#c8c8c8; }
.gallery-item em { margin-top:14px; color:var(--yellow); font-style:normal; font-size:12px; font-weight:900; text-transform:uppercase; }
.map-zone-visual { position:absolute; z-index:2; top:50%; left:50%; width:170px; height:170px; transform:translate(-50%,-50%); display:grid; place-items:center; pointer-events:none; }
.map-zone-visual span { position:absolute; inset:0; border:3px solid rgba(255,189,0,.9); border-radius:50%; background:rgba(255,189,0,.12); box-shadow:0 0 0 18px rgba(255,189,0,.06),0 0 50px rgba(255,189,0,.32); animation:zonePulse 2.7s ease-in-out infinite; }
.map-zone-visual strong { position:relative; padding:8px 13px; background:#111; color:var(--yellow); border-radius:8px; font-size:13px; letter-spacing:1px; }
@keyframes zonePulse { 50% { transform:scale(1.08); opacity:.72; } }
.service-card,.review-card,.contact-links a,.btn { will-change:transform; }
.service-card::after,.review-card::after { content:""; display:block; width:0; height:3px; margin-top:20px; background:var(--yellow); transition:width .28s ease; }
.service-card:hover::after,.review-card:hover::after { width:54px; }
.contact-svg { width:42px; height:42px; display:grid; place-items:center; border:1px solid rgba(0,0,0,.18); border-radius:12px; flex:0 0 auto; }
.floating-actions svg { width:25px; height:25px; }
.mobile-contact-bar { display:none; }
.gallery-lightbox[hidden] { display:none; }
.gallery-lightbox { position:fixed; z-index:500; inset:0; display:grid; grid-template-columns:1.25fr .75fr; background:rgba(5,5,5,.96); color:white; backdrop-filter:blur(18px); }
.gallery-lightbox__visual { min-height:100%; display:grid; place-items:center; background:linear-gradient(135deg,#111,#2b271c 55%,#ffbd00); }
.gallery-lightbox__visual span { padding:18px 24px; color:var(--yellow); background:#080808; font-size:clamp(32px,7vw,90px); font-weight:950; font-style:italic; }
.gallery-lightbox__copy { align-self:center; padding:60px; }
.gallery-lightbox__copy h2 { margin:8px 0 16px; font-size:clamp(36px,5vw,66px); line-height:1; text-transform:uppercase; }
.gallery-lightbox__copy p:not(.eyebrow) { color:#bbb; font-size:18px; }
.gallery-lightbox__copy small { color:#777; }
.gallery-lightbox__close { position:absolute; z-index:2; top:24px; right:24px; width:52px; height:52px; border:1px solid rgba(255,255,255,.25); border-radius:50%; color:white; background:#111; font-size:30px; cursor:pointer; }
body.lightbox-open { overflow:hidden; }
@media (max-width:980px) { .trust-metrics__grid { grid-template-columns:repeat(2,1fr); } .metric:nth-child(2) { border-right:0; } .metric:nth-child(-n+2) { border-bottom:1px solid rgba(255,255,255,.1); } .review-summary { align-items:flex-start; flex-wrap:wrap; } }
@media (max-width:760px) {
  body { padding-bottom:68px; }
  .top-contact-bar { display:none; }
  .trust-metrics__grid { grid-template-columns:1fr 1fr; }
  .metric { padding:25px 12px; }
  .metric strong { font-size:30px; }
  .metric span { font-size:10px; }
  .review-summary { display:grid; grid-template-columns:1fr; }
  .review-summary .btn { width:100%; }
  .floating-actions { display:none; }
  .mobile-contact-bar { position:fixed; z-index:250; left:0; right:0; bottom:0; display:grid; grid-template-columns:repeat(3,1fr); min-height:66px; background:#080808; border-top:1px solid rgba(255,255,255,.14); box-shadow:0 -12px 35px rgba(0,0,0,.28); }
  .mobile-contact-bar a { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px; color:white; font-size:11px; font-weight:850; }
  .mobile-contact-bar a:nth-child(2) { background:#1b8f4b; }
  .mobile-contact-bar a:nth-child(3) { background:var(--yellow); color:#111; }
  .mobile-contact-bar svg { width:22px; height:22px; }
  .gallery-lightbox { grid-template-columns:1fr; align-content:start; overflow:auto; }
  .gallery-lightbox__visual { min-height:48vh; }
  .gallery-lightbox__copy { padding:32px 24px 90px; }
  .gallery-lightbox__close { top:14px; right:14px; }
}
@media (prefers-reduced-motion:reduce) { .map-zone-visual span { animation:none; } }

/* INORAZ 3.2 — nowe logo */
.brand { display:inline-flex; align-items:center; color:white; text-decoration:none; }
.brand-logo { display:block; width:clamp(190px, 22vw, 270px); height:auto; max-height:64px; object-fit:contain; object-position:left center; }
.brand-logo--footer { width:min(270px, 100%); }
@media (max-width: 760px) { .brand-logo { width:185px; max-height:52px; } }

/* INORAZ 3.3 — dokładne logo z zaakceptowanego projektu */
.brand-logo{
  width:clamp(155px,18vw,185px);
  max-height:70px;
  object-fit:contain;
  object-position:left center;
  filter:none;
}
.brand-logo--footer{width:min(185px,100%);}
@media (max-width:760px){
  .brand-logo{width:155px;max-height:58px;}
}
