/* =============================================================================
   Pan Busowski / oproznianie365.pl — Hub "Opróżnianie" (light theme)
   Ported from Claude Design bundle (oproznianie/). Tokens: --pb-* (foundations.css).
   Reused globally: pb-container/pb-btn/pb-input (foundations), pb-cta-band (chrome),
   marquee/m-review (global). Hub-specific: .op-* prefix.
   ============================================================================= */

/* =============================================================================
   Pan Busowski / oproznianie365.pl — Hub "Opróżnianie" (light theme)
   Extends the homepage styles. All tokens are --pb-*. Hub-specific classes use
   the .op-* prefix so they don't collide with the homepage.
   ============================================================================= */


/* =============================================================================
   PAGE TITLE / BREADCRUMBS — matches contact.css visual rhythm
   ============================================================================= */
.op-title { padding: 28px 0 8px; background: var(--pb-surface); }
.op-crumbs { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--pb-text-muted); }
.op-crumbs a { color: var(--pb-text-muted); }
.op-crumbs a:hover { color: var(--pb-green-700); }
.op-crumbs .sep { color: var(--pb-text-soft); }
.op-crumbs .cur { color: var(--pb-ink); font-weight: 500; }

/* =============================================================================
   HERO — light, slightly different from homepage hero; built around inline form
   ============================================================================= */
.op-hero { background: linear-gradient(180deg, #fff 0%, var(--pb-green-50) 100%); padding: 24px 0 56px; position: relative; overflow: hidden; }
.op-hero::before {
  /* tilted brand watermark */
  content: 'Pan Busowski'; position: absolute;
  right: -30px; top: 36px; white-space: nowrap;
  font-family: var(--pb-font-display); font-weight: 800;
  font-size: 120px; line-height: .9; letter-spacing: -0.03em;
  color: rgba(80,184,72,.05); transform: rotate(-8deg);
  pointer-events: none;
}
.op-hero-inner { display: grid; grid-template-columns: 1.25fr 1fr; gap: 40px; align-items: stretch; position: relative; }
.op-hero-left { padding-top: 12px; display: flex; flex-direction: column; }
.op-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--pb-font-body); font-size: 12px; font-weight: 600; color: var(--pb-green-700); text-transform: uppercase; letter-spacing: 0.06em; }
.op-hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pb-green); animation: pb-pulse 2s infinite var(--pb-ease-out); }
.op-hero h1 { font-family: var(--pb-font-display); font-size: 56px; line-height: 1.04; font-weight: 800; letter-spacing: -0.025em; color: var(--pb-ink); margin: 14px 0 18px; max-width: 16ch; }
.op-hero h1 .accent { color: var(--pb-green); }
.op-hero h1 .underline {
  position: relative; white-space: nowrap;
}
.op-hero h1 .underline::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px;
  height: 10px; background: var(--pb-yellow); opacity: .55; z-index: -1; border-radius: 4px;
}
.op-hero-sub { font-size: 17px; line-height: 1.55; color: var(--pb-text); max-width: 48ch; margin-bottom: 0; }
.op-hero-cta { display: flex; gap: 12px; margin-top: 24px; align-items: center; flex-wrap: wrap; }
.op-hero-phone-btn { padding: 12px 18px !important; }
.op-hero-phone-btn strong { font-family: var(--pb-font-display); font-weight: 700; font-size: 15px; color: var(--pb-ink); }

/* Pebble slideshow */
.op-hero-pebble-wrap {
  position: relative;
  margin-top: 32px;
  margin-bottom: 18px;
  width: 100%;
  max-width: 560px;
  height: 280px;
}
.op-hero-pebble {
  position: absolute; inset: 0;
  border-radius: 56% 44% 52% 48% / 58% 50% 50% 42%;
  overflow: hidden;
  box-shadow: var(--pb-shadow-md);
}
.op-hero-pebble-stripe {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255,255,255,0.07) 18px 19px);
}
.op-hero-pebble-label {
  position: absolute; left: 28px; bottom: 28px; right: 80px;
  color: #fff;
  font-family: var(--pb-font-display);
  font-weight: 800; font-size: 22px;
  line-height: 1.2; letter-spacing: -0.01em;
  text-shadow: 0 1px 6px rgba(0,0,0,.32);
}
.op-hero-pebble-label small {
  display: block;
  font-weight: 500; font-size: 13px;
  font-family: var(--pb-font-body);
  opacity: .92;
  margin-top: 4px;
  letter-spacing: 0;
}
.op-hero-price-tag {
  position: absolute;
  right: -8px; bottom: 56px;
  background: var(--pb-yellow); color: var(--pb-ink);
  padding: 14px 22px;
  border-radius: var(--pb-r-pill);
  font-family: var(--pb-font-display);
  font-weight: 800; font-size: 19px;
  box-shadow: var(--pb-shadow-yellow);
  transform: rotate(-5deg);
  letter-spacing: -0.015em;
}
.op-hero-price-tag small {
  display: block;
  font-size: 11px; font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.op-hero-dots {
  position: absolute;
  left: 50%; bottom: -16px;
  transform: translateX(-50%);
  display: flex; gap: 6px;
  z-index: 2;
}
.op-hero-dots span {
  width: 24px; height: 4px;
  border-radius: 2px;
  background: var(--pb-line);
  cursor: pointer;
  transition: 220ms;
}
.op-hero-dots span.on {
  background: var(--pb-green);
  width: 36px;
}

.op-hero-trust { display: flex; gap: 22px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--pb-line-soft); flex-wrap: wrap; align-items: center; }
.op-hero-trust .stat { display: flex; flex-direction: column; line-height: 1.15; }
.op-hero-trust .stat .v { font-family: var(--pb-font-display); font-weight: 800; font-size: 22px; color: var(--pb-ink); letter-spacing: -0.02em; }
.op-hero-trust .stat .v .pct { color: var(--pb-green); }
.op-hero-trust .stat .l { font-size: 11px; color: var(--pb-text-muted); margin-top: 2px; max-width: 16ch; line-height: 1.35; }
.op-hero-trust .sep { width: 1px; align-self: stretch; background: var(--pb-line-soft); }
.op-hero-trust .gscore { display: inline-flex; align-items: center; gap: 8px; background: #fff; padding: 8px 14px; border-radius: 999px; box-shadow: var(--pb-shadow-sm); }
.op-hero-trust .gscore .stars { color: var(--pb-yellow-600); letter-spacing: 1px; font-size: 12px; }
.op-hero-trust .gscore b { font-family: var(--pb-font-display); font-weight: 800; font-size: 14px; }
.op-hero-trust .gscore small { font-size: 11px; color: var(--pb-text-muted); }

/* Inline quote form card (right side of hero) */
.op-form {
  background: #fff;
  border-radius: var(--pb-r-xl);
  padding: 28px;
  box-shadow: var(--pb-shadow-md);
  border: 1px solid var(--pb-line-soft);
  display: flex; flex-direction: column; gap: 14px;
  align-self: flex-start;
  position: relative;
}
.op-form .ribbon {
  position: absolute; top: -14px; left: 20px;
  background: var(--pb-yellow); color: var(--pb-ink);
  font-family: var(--pb-font-display); font-weight: 800; font-size: 12px;
  padding: 7px 14px; border-radius: 999px;
  box-shadow: var(--pb-shadow-yellow); letter-spacing: 0.02em;
}
.op-form h3 { font-family: var(--pb-font-display); font-size: 22px; font-weight: 700; color: var(--pb-ink); margin: 4px 0 0; letter-spacing: -0.015em; }
.op-form .sub { font-size: 13px; color: var(--pb-text-muted); margin: 0 0 4px; }
.op-form-field-label { font-family: var(--pb-font-body); font-size: 12px; font-weight: 500; color: var(--pb-text-muted); margin-bottom: 6px; display: block; }
.op-chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.op-chip { padding: 7px 13px; border-radius: var(--pb-r-pill); background: var(--pb-surface-2); font-size: 12px; font-weight: 600; color: var(--pb-text); border: 1.5px solid transparent; cursor: pointer; transition: 160ms; font-family: var(--pb-font-display); }
.op-chip:hover { background: var(--pb-green-50); }
.op-chip.on { background: var(--pb-green-100); color: var(--pb-green-700); border-color: var(--pb-green); }
.op-form-foot { display: flex; gap: 12px; align-items: center; padding-top: 8px; border-top: 1px dashed var(--pb-line); margin-top: 6px; font-size: 11px; color: var(--pb-text-soft); line-height: 1.4; }
.op-form-foot .lock { width: 18px; height: 18px; flex: 0 0 18px; color: var(--pb-green); }
.op-form-foot .lock svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 2; }

/* =============================================================================
   USP STRIP (under hero) — reuses .pb-usp from homepage; no new styles needed
   ============================================================================= */

/* =============================================================================
   SECTION HEADERS — slightly enhanced for hub use
   ============================================================================= */
.op-sec { padding: 80px 0; }
.op-sec.alt { background: var(--pb-surface-2); }
.op-sec.washed { background: var(--pb-green-50); }
.op-sec-head { margin-bottom: 40px; max-width: 760px; }
.op-sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.op-sec-head .eye { display: inline-block; font-family: var(--pb-font-body); font-size: 12px; font-weight: 700; color: var(--pb-green-700); text-transform: uppercase; letter-spacing: 0.08em; }
.op-sec-head h2 { font-family: var(--pb-font-display); font-size: 40px; font-weight: 800; letter-spacing: -0.025em; color: var(--pb-ink); margin: 10px 0 12px; line-height: 1.08; }
.op-sec-head p { color: var(--pb-text-muted); font-size: 16px; line-height: 1.55; max-width: 64ch; margin: 0; }

/* =============================================================================
   1 — NAJCZĘSTSZE SYTUACJE (photo-based scenario cards)
   ============================================================================= */
.op-sit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.op-sit {
  background: #fff;
  border-radius: var(--pb-r-lg);
  border: 1px solid var(--pb-line-soft);
  position: relative;
  cursor: pointer;
  transition: 220ms var(--pb-ease-out);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.op-sit:hover { box-shadow: var(--pb-shadow-md); transform: translateY(-3px); border-color: var(--pb-green); }
.op-sit-photo {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.op-sit-photo-stripe {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 18px, rgba(255,255,255,.08) 18px 19px);
}
.op-sit-photo-meta {
  position: absolute; left: 16px; top: 14px; right: 60px;
  display: flex; flex-direction: column; gap: 4px;
}
.op-sit-photo-meta .city {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.92);
  color: var(--pb-ink);
  font-family: var(--pb-font-mono); font-size: 10px; letter-spacing: 0.06em;
  padding: 4px 9px; border-radius: 4px;
  text-transform: uppercase; font-weight: 700;
  align-self: flex-start;
}
.op-sit-photo-meta .dims {
  font-family: var(--pb-font-mono); font-size: 10px; color: #fff;
  letter-spacing: 0.06em; padding-left: 4px;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.op-sit-ic-overlay {
  position: absolute; right: 16px; top: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  color: var(--pb-ink);
  display: grid; place-items: center;
  box-shadow: var(--pb-shadow-sm);
}
.op-sit-ic-overlay svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.op-sit-photo-stamp {
  position: absolute; left: 16px; bottom: 14px;
  font-family: var(--pb-font-mono); font-size: 10px; color: rgba(255,255,255,.78);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.op-sit-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.op-sit-body h3 { font-family: var(--pb-font-display); font-weight: 700; font-size: 19px; color: var(--pb-ink); margin: 0; line-height: 1.2; letter-spacing: -0.015em; }
.op-sit-body p { font-size: 14px; color: var(--pb-text-muted); line-height: 1.5; margin: 0; }
.op-sit-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 10px; }
.op-sit-tag { font-family: var(--pb-font-mono); font-size: 11px; color: var(--pb-text-soft); letter-spacing: 0.04em; }
.op-sit-arrow { color: var(--pb-text-muted); transition: 220ms; display: inline-flex; }
.op-sit-arrow svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.op-sit:hover .op-sit-arrow { color: var(--pb-green); transform: translateX(4px); }

/* =============================================================================
   2 — CO ODBIERAMY (items list with icons)
   ============================================================================= */
.op-items-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.op-item {
  background: #fff; border: 1px solid var(--pb-line-soft);
  border-radius: var(--pb-r-md); padding: 18px 16px 16px;
  display: flex; gap: 14px; align-items: center;
  transition: 200ms; cursor: pointer;
}
.op-item:hover { border-color: var(--pb-green); background: var(--pb-green-50); }
.op-item .ic { width: 44px; height: 44px; flex: 0 0 44px; border-radius: var(--pb-r-sm); background: var(--pb-green-100); display: grid; place-items: center; color: var(--pb-green-700); }
.op-item .ic svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.op-item .b { display: flex; flex-direction: column; }
.op-item .t { font-family: var(--pb-font-display); font-weight: 700; font-size: 14px; color: var(--pb-ink); letter-spacing: -0.01em; }
.op-item .d { font-size: 12px; color: var(--pb-text-muted); margin-top: 2px; line-height: 1.4; }
.op-items-foot {
  margin-top: 20px;
  display: flex; align-items: center; gap: 14px;
  background: var(--pb-green-50); border-radius: var(--pb-r-md);
  padding: 16px 20px; font-size: 14px; color: var(--pb-text);
}
.op-items-foot svg { width: 22px; height: 22px; flex: 0 0 22px; stroke: var(--pb-green-700); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.op-items-foot b { color: var(--pb-ink); }

/* =============================================================================
   3 — JAK WYGLĄDA WSPÓŁPRACA — visual story
   ============================================================================= */
.op-workflow-sec { padding-bottom: 96px; }

/* Animated track on top — droga „Minimal" (Claude Design ROAD-01) + bus po niej.
   Bus realnie śledzi krzywiznę: translateY/rotate spróbkowane z toru drogi.
   preserveAspectRatio=none → pion drogi (88px) jest stały na każdej szerokości,
   więc trajektoria busa pasuje niezależnie od rozmiaru ekranu. */
.op-wf-track {
  position: relative;
  height: 100px;
  margin-bottom: 22px;
  padding: 0 6%;
  overflow: hidden;            /* koniec drogi = niewidzialna granica: bus
                                  pojawia się i znika dokładnie na krawędziach */
}
.op-wf-line {
  position: absolute; left: 0; right: 0; top: 50%;
  height: 88px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201040%20200'%20preserveAspectRatio='none'%3E%3Cpath%20d='M%20-40%20150%20C%20110%2095,%20210%2095,%20330%20138%20S%20560%20188,%20700%20150%20S%20900%20110,%201080%20150'%20fill='none'%20stroke='rgba(26,29,34,0.07)'%20stroke-width='58'%20stroke-linecap='round'%20transform='translate(0,6)'/%3E%3Cpath%20d='M%20-40%20150%20C%20110%2095,%20210%2095,%20330%20138%20S%20560%20188,%20700%20150%20S%20900%20110,%201080%20150'%20fill='none'%20stroke='%23e4e7eb'%20stroke-width='58'%20stroke-linecap='round'/%3E%3Cpath%20d='M%20-40%20150%20C%20110%2095,%20210%2095,%20330%20138%20S%20560%20188,%20700%20150%20S%20900%20110,%201080%20150'%20fill='none'%20stroke='%23ffffff'%20stroke-width='3'%20stroke-linecap='round'%20stroke-dasharray='20%2018'/%3E%3C/svg%3E");
}
.op-wf-truck {
  position: absolute; top: 34px; left: -12%;
  animation: op-wf-truck-move 7s linear infinite;
  filter: drop-shadow(0 5px 9px rgba(0,0,0,.18));
  will-change: left, transform, opacity;
}
/* bus WYJEŻDŻA zza lewej krawędzi drogi, JEDZIE PO niej (translateY + rotate =
   próbki krzywej toru Minimal), WJEŻDŻA za prawą krawędź i znika; chwila przerwy
   poza kadrem i wraca. Bez opacity — pojawianie/znikanie robi overflow:hidden. */
@keyframes op-wf-truck-move {
  0%   { left: -16%;            transform: translateY(0px)     rotate(-4.2deg); }
  8%   { left: 0%;              transform: translateY(0px)     rotate(-4.2deg); }
  19%  { left: 17%;             transform: translateY(-12.8px)  rotate(0.6deg); }
  30%  { left: 34%;             transform: translateY(4.3px)    rotate(7deg); }
  40%  { left: 50%;             transform: translateY(16.9px)   rotate(0.4deg); }
  50%  { left: 67%;             transform: translateY(6.4px)    rotate(-7deg); }
  61%  { left: 84%;             transform: translateY(-6.8px)   rotate(-0.2deg); }
  72%  { left: 100%;            transform: translateY(2.3px)    rotate(2.7deg); }
  80%  { left: 116%;            transform: translateY(2.3px)    rotate(2.7deg); }
  100% { left: 116%;            transform: translateY(2.3px)    rotate(2.7deg); }
}

/* The 4-card row */
.op-wf-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.op-wf-step {
  background: #fff;
  border: 1px solid var(--pb-line-soft);
  border-radius: var(--pb-r-xl);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: 220ms var(--pb-ease-out);
  overflow: hidden;
}
.op-wf-step:hover { box-shadow: var(--pb-shadow-md); border-color: var(--pb-green); }
.op-wf-head { display: flex; align-items: center; justify-content: flex-start; gap: 14px; }
.op-wf-num {
  position: relative;
  flex: 0 0 56px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--pb-green); color: #fff;
  display: grid; place-items: center;
  font-family: var(--pb-font-display); font-weight: 800; font-size: 22px;
  letter-spacing: -0.02em;
  box-shadow: var(--pb-shadow-green);
}
.op-wf-num .ic {
  position: absolute; right: -4px; bottom: -4px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--pb-yellow); color: var(--pb-ink);
  display: grid; place-items: center;
  box-shadow: var(--pb-shadow-sm);
}
.op-wf-num .ic svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.op-wf-meta {
  font-family: var(--pb-font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 11px; border-radius: 999px;
  background: var(--pb-green-50); color: var(--pb-green-700);
  border: 1px solid rgba(80,184,72,.22);
}
.op-wf-meta.tone-yellow { background: var(--pb-yellow-50); color: #8a6700; border-color: rgba(255,221,0,.45); }
.op-wf-step h4 {
  font-family: var(--pb-font-display); font-weight: 700; font-size: 20px;
  color: var(--pb-ink); margin: 0; line-height: 1.18; letter-spacing: -0.015em;
  min-width: 0; text-align: left;
}
.op-wf-step > p {
  font-size: 13px; color: var(--pb-text-muted); line-height: 1.55;
  margin: 0;
}

/* The illustrative mock per step */
.op-mock {
  margin-top: 6px;
  background: var(--pb-surface-2);
  border: 1px solid var(--pb-line-soft);
  border-radius: var(--pb-r-md);
  overflow: hidden;
  min-height: 200px;
  display: flex; flex-direction: column;
}

/* — Mock: CHAT */
.op-mock-chat { padding: 0; }
.op-mock-head {
  display: flex; gap: 10px; align-items: center;
  padding: 10px 12px;
  background: #fff;
  border-bottom: 1px solid var(--pb-line-soft);
}
.op-mock-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--pb-green); color: #fff;
  display: grid; place-items: center;
  flex: 0 0 32px;
}
.op-mock-avatar svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.op-mock-headlines { display: flex; flex-direction: column; flex: 1; line-height: 1.2; min-width: 0; }
.op-mock-headlines b { font-family: var(--pb-font-display); font-size: 12px; font-weight: 700; color: var(--pb-ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.op-mock-headlines small { font-size: 10px; color: var(--pb-text-muted); }
.op-mock-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pb-green); animation: pb-pulse 2s infinite; }
.op-mock-bubbles {
  padding: 12px;
  display: flex; flex-direction: column; gap: 6px;
  flex: 1;
}
.op-mock-bubbles .bub {
  font-size: 11.5px; line-height: 1.4;
  padding: 8px 12px;
  max-width: 86%;
  border-radius: 12px;
}
.op-mock-bubbles .bub.them {
  align-self: flex-start;
  background: #fff;
  color: var(--pb-text);
  border-bottom-left-radius: 4px;
  border: 1px solid var(--pb-line-soft);
}
.op-mock-bubbles .bub.us {
  align-self: flex-end;
  background: var(--pb-green); color: #fff;
  border-bottom-right-radius: 4px;
}
.op-mock-bubbles .bub.us .who { display: block; font-size: 9px; font-weight: 700; opacity: .8; margin-bottom: 2px; letter-spacing: 0.04em; text-transform: uppercase; }
.op-mock-bubbles .bub.small { font-size: 11px; padding: 6px 10px; }
.op-mock-bubbles .bub.typing { align-self: flex-start; background: #fff; border: 1px solid var(--pb-line-soft); padding: 8px 12px; display: flex; gap: 3px; }
.op-mock-bubbles .bub.typing span {
  width: 5px; height: 5px; border-radius: 50%; background: var(--pb-text-soft);
  animation: op-typing 1.2s infinite;
}
.op-mock-bubbles .bub.typing span:nth-child(2) { animation-delay: 0.2s; }
.op-mock-bubbles .bub.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes op-typing { 0%, 60%, 100% { opacity: 0.2; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-2px); } }

/* — Mock: DOC / quote receipt */
.op-mock-doc { padding: 12px; background: #fff; }
.op-mock-doc-head { display: flex; gap: 10px; align-items: center; padding-bottom: 10px; border-bottom: 1px dashed var(--pb-line); }
.op-mock-doc-head .logo {
  width: 30px; height: 30px; flex: 0 0 30px;
  object-fit: contain; border-radius: var(--pb-r-sm);
}
.op-mock-doc-head b { display: block; font-family: var(--pb-font-display); font-size: 12px; color: var(--pb-ink); font-weight: 700; }
.op-mock-doc-head small { font-size: 10px; color: var(--pb-text-muted); }
.op-mock-doc-head .stamp {
  background: var(--pb-green); color: #fff;
  font-family: var(--pb-font-display); font-weight: 800; font-size: 10px;
  padding: 3px 8px; border-radius: 4px;
  letter-spacing: 0.06em;
}
.op-mock-doc-body { display: flex; flex-direction: column; gap: 6px; padding: 10px 0; flex: 1; }
.op-mock-doc-body .row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11.5px; color: var(--pb-text); padding: 3px 0;
}
.op-mock-doc-body .row b { font-family: var(--pb-font-mono); color: var(--pb-ink); font-weight: 700; }
.op-mock-doc-body .row.total { border-top: 1px solid var(--pb-line); padding-top: 8px; margin-top: 4px; font-weight: 700; }
.op-mock-doc-body .row.total b { color: var(--pb-green-700); font-family: var(--pb-font-display); font-size: 14px; }
.op-mock-doc-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px; border-top: 1px dashed var(--pb-line);
  font-family: var(--pb-font-mono); font-size: 10px; color: var(--pb-text-muted);
}
.op-mock-doc-foot .ok { display: inline-flex; align-items: center; gap: 4px; color: var(--pb-green-700); font-weight: 700; }
.op-mock-doc-foot .ok svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* — Mock: TRUCK — scena „Miasto pastel" (Claude Design SCENA-02).
   Mechanizm bez zmian: bus STOI, jedzie TŁO (miasto + droga) — zapętlone,
   bezszwowo (kafle SVG powtarzane w poziomie, przewijane o pełną szerokość kafla). */
.op-mock-truck {
  padding: 0; position: relative; min-height: 220px; overflow: hidden;
  background: linear-gradient(180deg, var(--pb-green-50) 0%, #ffffff 78%);
}
/* miasto — kafel powtarzany, przewijany w pętli (parallax: wolniej niż droga) */
.op-mock-city {
  position: absolute; left: 0; right: 0; bottom: 54px; height: 130px;
  background: url('/assets/img/general/wf-city-miasto.svg') repeat-x left bottom;
  background-size: 320px 130px;
  animation: op-city-scroll 9s linear infinite;
  will-change: background-position;
}
/* droga — szary pas z białą przerywaną osią; też zapętlona, szybsza */
.op-mock-road {
  position: absolute; left: 0; right: 0; bottom: 0; height: 56px;
  background: #d3d9de;
  border-top: 3px solid rgba(26,29,34,0.06);
}
.op-mock-road::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%);
  height: 4px;
  background-image: linear-gradient(to right, #ffffff 55%, transparent 55%);
  background-size: 40px 100%;
  animation: op-road-scroll 0.5s linear infinite;
}
@keyframes op-city-scroll {
  0%   { background-position: 0 bottom; }
  100% { background-position: -320px bottom; }
}
@keyframes op-road-scroll {
  0%   { background-position: 0 0; }
  100% { background-position: -40px 0; }
}
/* bus — stoi nieruchomo na drodze, na pierwszym planie */
.op-mock-bus {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  z-index: 3; filter: drop-shadow(0 6px 9px rgba(26,29,34,0.18));
}
.op-mock-truck-svg { display: block; width: 170px; max-width: 60%; height: auto; }
@media (prefers-reduced-motion: reduce) {
  .op-mock-city, .op-mock-road::before { animation: none; }
}
.op-mock-truck-badge {
  position: absolute; top: 10px; left: 10px;
  background: #fff;
  border: 1px solid var(--pb-line);
  border-radius: 999px;
  padding: 4px 10px;
  font-family: var(--pb-font-display); font-weight: 700; font-size: 10px;
  color: var(--pb-ink);
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: var(--pb-shadow-sm);
}
.op-mock-truck-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pb-green); animation: pb-pulse 2s infinite; }
.op-mock-pin {
  position: absolute; top: 10px; right: 10px;
  background: var(--pb-ink);
  color: #fff;
  border-radius: var(--pb-r-sm);
  padding: 4px 10px;
  font-size: 10px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 5px;
  box-shadow: var(--pb-shadow-sm);
}
.op-mock-pin svg { width: 10px; height: 10px; stroke: var(--pb-yellow); fill: none; stroke-width: 2; }

/* — Mock: DONE (bez ramki — zdjęcie i plakietka leżą wprost w kolumnie) */
.op-mock-done {
  padding: 0; display: flex; flex-direction: column; gap: 8px;
  background: transparent; border: none; border-radius: 0;
  min-height: 0; overflow: visible;
}
.op-mock-done-photo {
  aspect-ratio: 1 / 1; width: 100%; border-radius: var(--pb-r-sm);
  background: var(--pb-surface-2);
  position: relative; overflow: hidden;
}
.op-wf-step .op-mock-done-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.op-mock-done-stripe {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 14px, rgba(80,184,72,.08) 14px 15px);
}
.op-mock-done-caption {
  position: absolute; left: 10px; bottom: 8px;
  font-family: var(--pb-font-mono); font-size: 9.5px;
  color: var(--pb-green-700); letter-spacing: 0.06em; font-weight: 600;
}
.op-mock-done-stack { display: flex; flex-direction: column; gap: 6px; }
.op-mock-done-row {
  display: flex; gap: 10px; align-items: center;
  background: var(--pb-surface-2);
  border: 1px solid var(--pb-line-soft);
  border-radius: var(--pb-r-md);
  padding: 11px 13px;
}
.op-mock-done-row .ic {
  width: 26px; height: 26px; flex: 0 0 26px;
  border-radius: 6px;
  background: var(--pb-green-100); color: var(--pb-green-700);
  display: grid; place-items: center;
}
.op-mock-done-row .ic svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.op-mock-done-row b { font-family: var(--pb-font-display); font-size: 11px; font-weight: 700; color: var(--pb-ink); display: block; line-height: 1.2; }
.op-mock-done-row small { font-size: 9.5px; color: var(--pb-text-muted); line-height: 1.2; }
.op-mock-done-row > div:nth-child(2) { flex: 1; min-width: 0; }
.op-mock-done-row .ck {
  width: 22px; height: 22px; flex: 0 0 22px;
  border-radius: 50%;
  background: var(--pb-green); color: #fff;
  display: grid; place-items: center;
}
.op-mock-done-row .ck svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 3; }

/* Workflow foot */
.op-wf-foot {
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(135deg, #fff 0%, var(--pb-green-50) 100%);
  border: 1px solid var(--pb-line-soft);
  border-radius: var(--pb-r-xl);
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; align-items: center;
}
.op-wf-foot h3 { font-family: var(--pb-font-display); font-weight: 800; font-size: 26px; color: var(--pb-ink); margin: 0; line-height: 1.15; letter-spacing: -0.02em; }
.op-wf-foot p { font-size: 14px; color: var(--pb-text-muted); margin-top: 8px; line-height: 1.55; }
.op-wf-foot-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }

/* =============================================================================
   4 — Z CZEGO SKŁADA SIĘ CENA — "real-quote + comparison" layout
   ============================================================================= */
.op-cost-board {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  align-items: flex-start;
}

/* ----- LEFT: realistic paper quote ----- */
.op-quote-doc { position: relative; }
.op-quote-doc::before, .op-quote-doc::after {
  content: '';
  position: absolute;
  inset: 8px -6px -8px 6px;
  background: #fff;
  border-radius: var(--pb-r-xl);
  box-shadow: var(--pb-shadow-sm);
  z-index: 0;
  transform: rotate(0.8deg);
}
.op-quote-doc::after {
  inset: 4px -3px -4px 3px;
  transform: rotate(-0.4deg);
}

.op-quote-doc-paper {
  position: relative;
  background: #fff;
  border-radius: var(--pb-r-xl);
  padding: 32px 36px;
  box-shadow: var(--pb-shadow-md);
  border: 1px solid var(--pb-line-soft);
  z-index: 1;
  /* subtle paper grain */
  background-image:
    linear-gradient(90deg, transparent 49.5%, rgba(0,0,0,.015) 50%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(0,0,0,.015) 50%, transparent 50.5%);
  background-size: 24px 24px;
}

.op-quote-doc-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--pb-ink);
  margin-bottom: 18px;
  gap: 16px;
}
.op-quote-doc-brand { display: flex; gap: 12px; align-items: flex-start; }
.op-quote-doc-logo {
  width: 44px; height: 44px; border-radius: var(--pb-r-sm);
  background: var(--pb-yellow);
  background-image:
    linear-gradient(45deg, transparent 38%, var(--pb-green) 38%, var(--pb-green) 50%, transparent 50%),
    linear-gradient(45deg, transparent 50%, var(--pb-green) 50%, var(--pb-green) 62%, transparent 62%);
  flex: 0 0 44px;
  border: 2px solid var(--pb-ink);
}
.op-quote-doc-brand b {
  display: block;
  font-family: var(--pb-font-display); font-size: 16px; font-weight: 800; color: var(--pb-ink);
  letter-spacing: -0.015em;
}
.op-quote-doc-brand small {
  font-size: 11px; color: var(--pb-text-muted); font-family: var(--pb-font-mono);
  letter-spacing: 0;
  display: block; margin-top: 3px;
}
.op-quote-doc-num { text-align: right; }
.op-quote-doc-num .lbl {
  font-family: var(--pb-font-mono); font-size: 10px; color: var(--pb-text-muted);
  letter-spacing: 0.1em; text-transform: uppercase; display: block;
}
.op-quote-doc-num .val {
  font-family: var(--pb-font-mono); font-weight: 700; font-size: 14px;
  color: var(--pb-ink); letter-spacing: 0.04em; display: block; margin-top: 4px;
}

.op-quote-doc-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px;
  padding: 14px 0 22px;
  border-bottom: 1px dashed var(--pb-line);
  margin-bottom: 22px;
}
.op-quote-doc-meta > div { display: flex; gap: 10px; align-items: baseline; }
.op-quote-doc-meta .k {
  font-family: var(--pb-font-mono); font-size: 10px; color: var(--pb-text-muted);
  letter-spacing: 0.08em; text-transform: uppercase;
  flex: 0 0 60px;
}
.op-quote-doc-meta .v {
  font-family: var(--pb-font-display); font-weight: 600; font-size: 13px;
  color: var(--pb-ink); letter-spacing: -0.005em;
}

.op-quote-doc-table { margin-bottom: 22px; }
.op-quote-doc-table .head {
  display: flex; justify-content: space-between;
  padding: 6px 0 8px;
  border-bottom: 1px solid var(--pb-ink);
  font-family: var(--pb-font-mono); font-size: 10px; color: var(--pb-text-muted);
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
}
.op-quote-doc-table .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px dotted var(--pb-line);
}
.op-quote-doc-table .row:last-child { border-bottom: 1px solid var(--pb-line); }
.op-quote-doc-table .cell { display: flex; gap: 12px; align-items: center; flex: 1; }
.op-quote-doc-table .dot {
  width: 12px; height: 12px; border-radius: 3px; flex: 0 0 12px;
}
.op-quote-doc-table .cell .t {
  font-family: var(--pb-font-display); font-weight: 600; font-size: 14px;
  color: var(--pb-ink); display: block; line-height: 1.2; letter-spacing: -0.005em;
}
.op-quote-doc-table .cell .d {
  font-size: 12px; color: var(--pb-text-muted); display: block; margin-top: 2px;
}
.op-quote-doc-table .amount {
  font-family: var(--pb-font-mono); font-weight: 700; font-size: 14px;
  color: var(--pb-ink); letter-spacing: 0;
}

/* Composition bar (animated stacked) */
.op-quote-bar-wrap {
  padding: 18px 0 6px;
  border-bottom: 1px solid var(--pb-line);
  margin-bottom: 22px;
}
.op-quote-bar-label {
  display: flex; justify-content: space-between;
  font-family: var(--pb-font-mono); font-size: 10px; color: var(--pb-text-muted);
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
  margin-bottom: 8px;
}
.op-quote-bar {
  display: flex; height: 24px;
  border-radius: 999px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,.06) inset;
}
.op-quote-bar .seg {
  display: grid; place-items: center;
  font-family: var(--pb-font-mono); font-size: 10px; font-weight: 700;
  color: rgba(0,0,0,.72);
  letter-spacing: 0.02em;
  transition: 220ms;
  position: relative;
}
.op-quote-bar .seg:hover { transform: scaleY(1.15); z-index: 1; }
.op-quote-bar .seg .pct { white-space: nowrap; }
.op-quote-bar-legend {
  display: flex; flex-wrap: wrap; gap: 12px 18px;
  margin-top: 12px;
}
.op-quote-bar-legend .leg {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--pb-text-muted); font-weight: 600;
}
.op-quote-bar-legend .sw { width: 10px; height: 10px; border-radius: 3px; }

.op-quote-doc-total {
  display: flex; flex-direction: column; gap: 6px;
  padding: 16px 0 6px;
  position: relative;
}
.op-quote-doc-total .line {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--pb-font-mono); font-size: 13px; color: var(--pb-text);
}
.op-quote-doc-total .line.big {
  padding-top: 10px; margin-top: 4px;
  border-top: 2px double var(--pb-ink);
  font-family: var(--pb-font-display); font-weight: 700;
  font-size: 16px; color: var(--pb-ink);
}
.op-quote-doc-total .line.big .amt {
  font-family: var(--pb-font-display); font-weight: 800;
  font-size: 32px; color: var(--pb-green-700);
  letter-spacing: -0.03em; line-height: 1;
}
.op-quote-doc-total .line.big .amt b { font-size: 44px; }

.op-quote-doc-total .seal {
  position: absolute; right: -8px; bottom: 36px;
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 2px solid var(--pb-green);
  display: grid; place-items: center;
  transform: rotate(-12deg);
  background: rgba(255,255,255,0.86);
}
.op-quote-doc-total .seal-inner {
  font-family: var(--pb-font-display); font-weight: 800;
  font-size: 10px; color: var(--pb-green-700);
  text-align: center; letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 1.35;
  padding: 0 8px;
}
.op-quote-doc-total .seal-inner svg {
  display: block; margin: 0 auto 4px;
  width: 18px; height: 18px;
  stroke: var(--pb-green-700); fill: none; stroke-width: 2.6;
  stroke-linecap: round; stroke-linejoin: round;
}

.op-quote-doc-foot {
  padding-top: 18px; margin-top: 12px;
  border-top: 1px dashed var(--pb-line);
  font-size: 11px; color: var(--pb-text-muted); line-height: 1.45;
  font-family: var(--pb-font-mono);
}

/* ----- RIGHT: vs comparison ----- */
.op-cost-vs {
  display: flex; flex-direction: column; gap: 22px;
}
.op-cost-vs-head h3 {
  font-family: var(--pb-font-display); font-weight: 800;
  font-size: 26px; color: var(--pb-ink);
  letter-spacing: -0.02em; line-height: 1.18;
  margin: 8px 0 8px;
}
.op-cost-vs-head .eyebrow {
  font-family: var(--pb-font-body); font-size: 12px; font-weight: 700;
  color: var(--pb-green-700); text-transform: uppercase; letter-spacing: 0.08em;
}
.op-cost-vs-head p { font-size: 14px; color: var(--pb-text-muted); line-height: 1.55; margin: 0; }

.op-vs-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.op-vs-col {
  background: #fff;
  border: 1px solid var(--pb-line-soft);
  border-radius: var(--pb-r-lg);
  padding: 22px 20px;
  position: relative;
  display: flex; flex-direction: column;
}
.op-vs-col.us { border-color: var(--pb-green); box-shadow: 0 0 0 3px rgba(80,184,72,.12); }
.op-vs-col.them { background: var(--pb-surface-2); }
.op-vs-flag {
  position: absolute; top: -10px; left: 16px;
  font-family: var(--pb-font-display); font-weight: 800; font-size: 11px;
  padding: 5px 12px; border-radius: 999px;
  letter-spacing: 0.04em;
}
.op-vs-col.us .op-vs-flag { background: var(--pb-green); color: #fff; }
.op-vs-col.them .op-vs-flag { background: var(--pb-text-muted); color: #fff; }

.op-vs-col ul { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 10px; }
.op-vs-col li { display: flex; gap: 10px; align-items: center; font-size: 13px; }
.op-vs-col li .ck {
  width: 22px; height: 22px; flex: 0 0 22px; border-radius: 50%;
  background: var(--pb-green); color: #fff; display: grid; place-items: center;
}
.op-vs-col li .ck svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 3; }
.op-vs-col li .x {
  width: 22px; height: 22px; flex: 0 0 22px; border-radius: 50%;
  background: rgba(226,59,59,.12); color: var(--pb-danger);
  display: grid; place-items: center;
  font-family: var(--pb-font-display); font-weight: 800; font-size: 16px;
  line-height: 1;
}
.op-vs-col.us li > div { flex: 1; min-width: 0; line-height: 1.25; }
.op-vs-col.us li b { font-family: var(--pb-font-display); font-weight: 700; font-size: 13px; color: var(--pb-ink); display: block; }
.op-vs-col.us li small { font-size: 11px; color: var(--pb-text-muted); }
.op-vs-col.them li .t { flex: 1; color: var(--pb-text); font-family: var(--pb-font-display); font-weight: 600; }

.op-vs-col li .price {
  font-family: var(--pb-font-mono); font-weight: 700; font-size: 13px;
  letter-spacing: 0;
}
.op-vs-col li .price.free { color: var(--pb-green-700); }
.op-vs-col li .price.up   { color: var(--pb-danger); }

.op-vs-col li.total {
  margin-top: 6px; padding-top: 12px;
  border-top: 1px solid var(--pb-line);
  font-family: var(--pb-font-display); font-weight: 700;
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px;
}
.op-vs-col li.total .big { font-size: 18px; font-family: var(--pb-font-display); font-weight: 800; letter-spacing: -0.01em; }
.op-vs-col li.total .price.free.big { color: var(--pb-green-700); }
.op-vs-col li.total .price.up.big   { color: var(--pb-danger); }

.op-cost-savings {
  background: linear-gradient(135deg, var(--pb-yellow) 0%, #ffd633 100%);
  border-radius: var(--pb-r-lg);
  padding: 22px 24px;
  display: flex; gap: 18px; align-items: center; justify-content: space-between;
  position: relative; overflow: hidden;
}
.op-cost-savings::before {
  content: '%'; position: absolute;
  right: -8px; top: -28px;
  font-family: var(--pb-font-display); font-weight: 800;
  font-size: 140px; color: rgba(26,29,34,.07); line-height: 1;
}
.op-cost-savings-num {
  font-family: var(--pb-font-display); font-weight: 700;
  font-size: 18px; color: var(--pb-ink);
  letter-spacing: -0.01em;
  display: flex; flex-direction: column; line-height: 1.2;
  z-index: 1; position: relative;
}
.op-cost-savings-num b {
  font-size: 40px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--pb-ink); line-height: 1;
}
.op-cost-savings-num small {
  font-family: var(--pb-font-body); font-size: 12px; font-weight: 500;
  color: rgba(26,29,34,.7); margin-top: 4px;
}
.op-cost-savings .pb-btn { z-index: 1; position: relative; }

/* Legacy classes kept harmless in case anything else references them */
.op-cost-grid, .op-cost-list, .op-cost-row, .op-cost-aside { /* unused now */ }

/* =============================================================================
   5 — TYPY USŁUG (photo-based sub-page cards)
   ============================================================================= */
.op-types-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.op-type {
  background: #fff; border: 1px solid var(--pb-line-soft);
  border-radius: var(--pb-r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: 220ms;
  cursor: pointer;
  text-decoration: none;
}
.op-type:hover { transform: translateY(-4px); box-shadow: var(--pb-shadow-md); border-color: var(--pb-green); }
.op-type-photo {
  height: 180px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--pb-line-soft);
}
.op-type-photo-stripe {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 16px, rgba(255,255,255,.08) 16px 17px);
}
.op-type-photo-tag {
  position: absolute; left: 14px; top: 12px;
  font-family: var(--pb-font-mono); font-size: 10px; color: #fff;
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,.4);
}
.op-type-photo-count {
  position: absolute; right: 14px; top: 12px;
  background: rgba(255,255,255,.94);
  color: var(--pb-ink);
  font-family: var(--pb-font-display); font-weight: 700; font-size: 11px;
  padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0;
}
.op-type-photo-price {
  position: absolute; left: 14px; bottom: 14px;
  background: var(--pb-yellow);
  color: var(--pb-ink);
  padding: 6px 12px; border-radius: 999px;
  font-family: var(--pb-font-display); font-weight: 800; font-size: 13px;
  box-shadow: var(--pb-shadow-sm);
  letter-spacing: -0.01em;
}
.op-type .body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.op-type h4 { font-family: var(--pb-font-display); font-weight: 700; font-size: 16px; color: var(--pb-ink); margin: 0; line-height: 1.2; letter-spacing: -0.01em; }
.op-type p { font-size: 12px; color: var(--pb-text-muted); line-height: 1.5; margin: 0; }
.op-type .more { margin-top: auto; padding-top: 14px; display: flex; align-items: center; gap: 6px; font-family: var(--pb-font-display); font-weight: 700; font-size: 13px; color: var(--pb-green-700); }
.op-type .more svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.4; transition: 220ms; }
.op-type:hover .more svg { transform: translateX(3px); }

/* =============================================================================
   6 — DLACZEGO MY (6 USP cards)
   ============================================================================= */
.op-usp6-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.op-usp6 {
  background: #fff; border: 1px solid var(--pb-line-soft);
  border-radius: var(--pb-r-lg); padding: 28px;
  position: relative;
  transition: 220ms;
  display: flex; flex-direction: column; gap: 12px;
}
.op-usp6:hover { box-shadow: var(--pb-shadow-md); transform: translateY(-3px); border-color: var(--pb-green); }
.op-usp6 .num { display: none; }
.op-usp6 .ic { width: 60px; height: 60px; border-radius: var(--pb-r-md); background: var(--pb-green-100); color: var(--pb-green-700); display: grid; place-items: center; }
.op-usp6 .ic svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.op-usp6.yellow .ic { background: var(--pb-yellow-100); color: #8a6700; }
.op-usp6 h3 { font-family: var(--pb-font-display); font-weight: 700; font-size: 19px; color: var(--pb-ink); margin: 0; line-height: 1.2; letter-spacing: -0.015em; max-width: 18ch; }
.op-usp6 p { font-size: 14px; color: var(--pb-text-muted); line-height: 1.55; margin: 0; }

/* =============================================================================
   7 — STATYSTYKA
   ============================================================================= */
.op-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: #fff; border-radius: var(--pb-r-xl); overflow: hidden;
  border: 1px solid var(--pb-line-soft);
}
.op-stat { padding: 36px 28px; border-right: 1px solid var(--pb-line-soft); position: relative; }
.op-stat:last-child { border-right: none; }
.op-stat .n { font-family: var(--pb-font-display); font-weight: 800; font-size: 56px; line-height: 1; letter-spacing: -0.035em; color: var(--pb-ink); display: flex; align-items: baseline; gap: 4px; }
.op-stat .n .u { font-size: 22px; color: var(--pb-green); font-weight: 700; }
.op-stat .l { font-size: 14px; color: var(--pb-text-muted); margin-top: 12px; line-height: 1.4; max-width: 22ch; }
.op-stat .meta { font-family: var(--pb-font-mono); font-size: 11px; color: var(--pb-text-soft); letter-spacing: 0.05em; margin-top: 16px; }

/* =============================================================================
   8 — REALIZACJE (before/after)
   ============================================================================= */
.op-cases-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.op-cases-filter { display: flex; gap: 6px; flex-wrap: wrap; }
.op-cases-filter .pill { padding: 8px 16px; border-radius: var(--pb-r-pill); background: #fff; font-size: 13px; font-weight: 600; color: var(--pb-text); border: 1.5px solid var(--pb-line); cursor: pointer; transition: 160ms; font-family: var(--pb-font-display); }
.op-cases-filter .pill:hover { border-color: var(--pb-green); color: var(--pb-green-700); }
.op-cases-filter .pill.on { background: var(--pb-green); color: #fff; border-color: var(--pb-green); }

.op-cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.op-case {
  background: #fff; border: 1px solid var(--pb-line-soft);
  border-radius: var(--pb-r-lg); overflow: hidden;
  transition: 220ms;
}
.op-case:hover { box-shadow: var(--pb-shadow-md); transform: translateY(-3px); }
.op-case .ba {
  height: 220px; position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
}
.op-case .ba .before, .op-case .ba .after { position: relative; }
.op-case .ba .before {
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(0,0,0,0.04) 14px 15px),
    linear-gradient(135deg, #cdb9a1 0%, #9b8a78 100%);
}
.op-case .ba .after {
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(80,184,72,0.06) 14px 15px),
    linear-gradient(135deg, var(--pb-green-100) 0%, var(--pb-green) 100%);
}
.op-case .ba .lbl {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--pb-font-mono); font-size: 10px; letter-spacing: 0.1em;
  padding: 4px 10px; border-radius: 4px; text-transform: uppercase; font-weight: 700;
}
.op-case .ba .before .lbl { background: rgba(255,255,255,0.85); color: #6b4f33; }
.op-case .ba .after .lbl { background: rgba(255,255,255,0.95); color: var(--pb-green-700); }
.op-case .ba::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--pb-yellow); z-index: 1; transform: translateX(-50%);
}
.op-case .ba::after {
  content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 32px; height: 32px; border-radius: 50%; background: var(--pb-yellow); border: 3px solid #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231a1d22' stroke-width='2.6' stroke-linecap='round'><polyline points='15 18 9 12 15 6'/><polyline points='9 18 15 12 9 6'/></svg>");
  background-repeat: no-repeat; background-position: center; z-index: 2;
  box-shadow: var(--pb-shadow-sm);
}
.op-case .info { padding: 18px 20px 20px; }
.op-case .info .city { font-family: var(--pb-font-mono); font-size: 11px; color: var(--pb-text-soft); letter-spacing: 0.06em; text-transform: uppercase; }
.op-case .info h4 { font-family: var(--pb-font-display); font-weight: 700; font-size: 17px; margin: 4px 0 0; color: var(--pb-ink); letter-spacing: -0.01em; }
.op-case .info .meta { display: flex; gap: 14px; margin-top: 10px; font-size: 12px; color: var(--pb-text-muted); flex-wrap: wrap; }
.op-case .info .meta b { color: var(--pb-green-700); font-weight: 700; }

/* =============================================================================
   9 — OPINIE GOOGLE — reuses .pb-opinions; light enhancements
   ============================================================================= */
.op-opinions-hero { display: flex; align-items: center; gap: 24px; margin-bottom: 32px; padding: 20px 28px; background: #fff; border-radius: var(--pb-r-xl); border: 1px solid var(--pb-line-soft); box-shadow: var(--pb-shadow-sm); flex-wrap: wrap; }
.op-opinions-hero .gicon { width: 48px; height: 48px; flex: 0 0 48px; }
.op-opinions-hero .label { font-family: var(--pb-font-display); font-weight: 700; font-size: 14px; color: var(--pb-ink); }
.op-opinions-hero .score { font-family: var(--pb-font-display); font-weight: 800; font-size: 32px; color: var(--pb-ink); letter-spacing: -0.02em; line-height: 1; }
.op-opinions-hero .stars { color: var(--pb-yellow-600); letter-spacing: 2px; font-size: 20px; margin-top: 4px; }
.op-opinions-hero .count { font-size: 13px; color: var(--pb-text-muted); margin-top: 4px; }
.op-opinions-hero .col { display: flex; flex-direction: column; }
.op-opinions-hero .grow { flex: 1; }

/* =============================================================================
   10 — ZAUFALI NAM (B2B logos)
   ============================================================================= */
.op-trust-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  border-top: 1px solid var(--pb-line-soft);
  border-bottom: 1px solid var(--pb-line-soft);
  background: #fff; border-radius: var(--pb-r-xl); overflow: hidden;
}
.op-trust-cell {
  padding: 28px 16px; border-right: 1px solid var(--pb-line-soft);
  display: grid; place-items: center;
  font-family: var(--pb-font-display); font-weight: 700;
  color: var(--pb-text-soft); font-size: 18px; letter-spacing: -0.02em;
  transition: 200ms;
  height: 90px;
}
.op-trust-cell:nth-child(6n) { border-right: none; }
.op-trust-cell:nth-child(n+7) { border-top: 1px solid var(--pb-line-soft); }
.op-trust-cell:hover { color: var(--pb-ink); background: var(--pb-surface-2); }
.op-trust-cell .box { padding: 6px 12px; border: 1.5px solid currentColor; border-radius: 4px; font-size: 14px; }

/* =============================================================================
   11 — KRÓTKA CTA BAND
   ============================================================================= */
.op-cta {
  background: linear-gradient(135deg, var(--pb-green-700) 0%, var(--pb-green) 100%);
  color: #fff; padding: 48px 0; position: relative; overflow: hidden;
}
.op-cta::before {
  content: ''; position: absolute; right: -80px; top: 50%; transform: translateY(-50%);
  width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,.08);
}
.op-cta::after {
  content: ''; position: absolute; right: 80px; top: -40px;
  width: 180px; height: 180px; border-radius: 50%; background: rgba(255,221,0,.18);
}
.op-cta-inner { display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; align-items: center; position: relative; z-index: 1; }
.op-cta h2 { font-family: var(--pb-font-display); font-size: 32px; font-weight: 800; color: #fff; line-height: 1.15; letter-spacing: -0.025em; margin: 0; }
.op-cta p { color: rgba(255,255,255,.92); margin-top: 8px; font-size: 15px; line-height: 1.5; }
.op-cta-form { display: flex; gap: 10px; align-items: stretch; flex-wrap: wrap; }
.op-cta-form .pb-input { background: rgba(255,255,255,.96); border: none; min-width: 200px; font-size: 15px; flex: 1; padding: 14px 18px; }
.op-cta-form .pb-btn-yellow { padding: 14px 22px; font-size: 15px; white-space: nowrap; }

/* =============================================================================
   12 — OBSZAR DZIAŁANIA (map + top-5)
   ============================================================================= */
.op-map-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.op-map-svg { position: relative; }
.op-map-svg svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 8px 24px rgba(80,184,72,.15)); }
.op-map-svg .pin { position: absolute; transform: translate(-50%, -50%); pointer-events: auto; }
.op-map-svg .pin .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--pb-yellow); border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,.2); position: relative; }
.op-map-svg .pin .dot::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--pb-yellow); opacity: .4; animation: pb-pulse 2.4s var(--pb-ease-out) infinite; }
.op-map-svg .pin.sm .dot { width: 9px; height: 9px; background: var(--pb-green); border-width: 2px; }
.op-map-svg .pin.sm .dot::before { border-color: var(--pb-green); }
.op-map-svg .pin .lbl { position: absolute; left: 18px; top: -5px; white-space: nowrap; font-family: var(--pb-font-display); font-weight: 700; font-size: 12px; color: var(--pb-ink); background: #fff; padding: 4px 9px; border-radius: 4px; box-shadow: var(--pb-shadow-sm); }

.op-cities { display: flex; flex-direction: column; gap: 8px; }
.op-cities h3 { font-family: var(--pb-font-display); font-weight: 700; font-size: 18px; color: var(--pb-ink); margin: 0 0 6px; letter-spacing: -0.015em; }
.op-city {
  display: grid; grid-template-columns: 28px 1fr auto auto; gap: 14px; align-items: center;
  background: #fff; border: 1px solid var(--pb-line-soft);
  border-radius: var(--pb-r-md); padding: 14px 18px;
  transition: 180ms; cursor: pointer;
}
.op-city:hover { border-color: var(--pb-green); background: var(--pb-green-50); }
.op-city .rank { font-family: var(--pb-font-mono); font-size: 13px; color: var(--pb-text-soft); font-weight: 700; }
.op-city .name { font-family: var(--pb-font-display); font-weight: 700; font-size: 15px; color: var(--pb-ink); letter-spacing: -0.01em; }
.op-city .name small { display: block; font-size: 11px; font-weight: 500; color: var(--pb-text-muted); margin-top: 2px; letter-spacing: 0; }
.op-city .price { font-family: var(--pb-font-display); font-weight: 700; color: var(--pb-green-700); font-size: 13px; }
.op-city .arrow { color: var(--pb-text-muted); transition: 200ms; display: inline-flex; }
.op-city .arrow svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.op-city:hover .arrow { color: var(--pb-green); transform: translateX(3px); }
.op-cities-more {
  margin-top: 4px;
  font-size: 12px; color: var(--pb-text-muted);
  background: var(--pb-surface-2); padding: 12px 18px;
  border-radius: var(--pb-r-md); border: 1px dashed var(--pb-line);
  display: flex; align-items: center; gap: 10px;
}
.op-cities-more b { color: var(--pb-ink); }

/* =============================================================================
   13 — FAQ — reuses .pb-faq from homepage. New: 2-column layout option.
   ============================================================================= */
.op-faq { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 100%; }
.op-faq .pb-faq-item { background: #fff; }

/* =============================================================================
   14 — BLOG CARDS
   ============================================================================= */
.op-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.op-blog {
  background: #fff; border: 1px solid var(--pb-line-soft);
  border-radius: var(--pb-r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer; transition: 220ms;
}
.op-blog:hover { box-shadow: var(--pb-shadow-md); transform: translateY(-3px); }
.op-blog .img {
  height: 180px; position: relative;
  background: linear-gradient(135deg, var(--pb-green-100), var(--pb-green));
}
.op-blog:nth-child(2) .img { background: linear-gradient(135deg, var(--pb-yellow-100), var(--pb-yellow)); }
.op-blog:nth-child(3) .img { background: linear-gradient(135deg, var(--pb-surface-3), #6b7280); }
.op-blog .img::after { content: 'foto'; position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--pb-font-mono); font-size: 11px; color: rgba(255,255,255,.7); letter-spacing: 2px; }
.op-blog .img .tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.92); color: var(--pb-ink);
  padding: 5px 11px; border-radius: 999px;
  font-family: var(--pb-font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.02em; z-index: 1;
}
.op-blog .body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.op-blog .meta { display: flex; gap: 10px; align-items: center; font-size: 12px; color: var(--pb-text-muted); }
.op-blog .meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--pb-text-soft); }
.op-blog h3 { font-family: var(--pb-font-display); font-weight: 700; font-size: 18px; color: var(--pb-ink); margin: 0; line-height: 1.25; letter-spacing: -0.015em; }
.op-blog p { font-size: 14px; color: var(--pb-text-muted); line-height: 1.5; margin: 0; }
.op-blog .read { margin-top: auto; padding-top: 10px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--pb-font-display); font-weight: 700; font-size: 13px; color: var(--pb-green-700); }
.op-blog .read svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.4; transition: 220ms; }
.op-blog:hover .read svg { transform: translateX(3px); }

/* =============================================================================
   15 — FORMA KOŃCOWA (big bottom form)
   ============================================================================= */
.op-bigform {
  background: linear-gradient(135deg, #fff 0%, var(--pb-green-50) 100%);
  border-radius: var(--pb-r-2xl);
  padding: 48px 56px;
  border: 1px solid var(--pb-line-soft);
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px;
  align-items: center;
  position: relative; overflow: hidden;
}
.op-bigform::before {
  content: ''; position: absolute; left: -80px; bottom: -80px;
  width: 240px; height: 240px; border-radius: 50%;
  background: var(--pb-yellow); opacity: .14;
}
.op-bigform-left { position: relative; z-index: 1; }
.op-bigform h2 { font-family: var(--pb-font-display); font-size: 36px; font-weight: 800; letter-spacing: -0.025em; color: var(--pb-ink); margin: 0; line-height: 1.1; max-width: 14ch; }
.op-bigform p.lead { font-size: 16px; color: var(--pb-text); margin-top: 14px; line-height: 1.55; max-width: 38ch; }
.op-bigform-bullets { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 10px; }
.op-bigform-bullets li { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--pb-ink); }
.op-bigform-bullets .ck { width: 22px; height: 22px; flex: 0 0 22px; border-radius: 50%; background: var(--pb-green); color: #fff; display: grid; place-items: center; }
.op-bigform-bullets .ck svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 3; }
.op-bigform-right {
  background: #fff;
  border-radius: var(--pb-r-xl);
  padding: 32px;
  box-shadow: var(--pb-shadow-md);
  border: 1px solid var(--pb-line-soft);
  display: flex; flex-direction: column; gap: 14px;
  position: relative; z-index: 1;
}
.op-bigform-right h3 { font-family: var(--pb-font-display); font-weight: 700; font-size: 22px; color: var(--pb-ink); margin: 0; letter-spacing: -0.015em; }
.op-bigform-right .sub { font-size: 13px; color: var(--pb-text-muted); margin: 0 0 4px; }
.op-bigform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.op-bigform-right textarea.pb-input { resize: vertical; min-height: 90px; font-family: var(--pb-font-body); }
.op-bigform-file {
  border: 1.5px dashed var(--pb-line);
  border-radius: var(--pb-r-md);
  padding: 16px;
  display: flex; align-items: center; gap: 12px;
  color: var(--pb-text-muted); font-size: 13px;
  background: var(--pb-surface-2);
}
.op-bigform-file svg { width: 22px; height: 22px; stroke: var(--pb-green-700); fill: none; stroke-width: 2; flex: 0 0 22px; }
.op-bigform-file b { color: var(--pb-ink); display: block; font-family: var(--pb-font-display); font-weight: 700; font-size: 13px; }
.op-bigform-consent { font-size: 11px; color: var(--pb-text-muted); line-height: 1.45; display: flex; gap: 8px; align-items: flex-start; }
.op-bigform-consent a { color: var(--pb-green-700); text-decoration: underline; }

/* ===== Calculator (merged from design calculator.css) ===== */
/* =============================================================================
   Pan Busowski — Multi-step calculator (light theme)
   The marquee section: 6-step wizard with live price sidebar.
   ============================================================================= */

.op-calc {
  padding: 80px 0;
  background:
    radial-gradient(60% 80% at 12% 0%, rgba(80,184,72,0.07), transparent 60%),
    var(--pb-surface-2);
  position: relative;
}

.op-calc-head { text-align: center; margin-bottom: 32px; max-width: 760px; margin-left: auto; margin-right: auto; }
.op-calc-head .pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 8px;
  background: #fff; border: 1px solid rgba(80,184,72,.3);
  border-radius: 999px; font-size: 12px;
  color: var(--pb-green-700); font-weight: 600;
  margin-bottom: 14px;
}
.op-calc-head .pill .badge {
  background: var(--pb-green); color: #fff;
  font-family: var(--pb-font-display); font-weight: 800; font-size: 11px;
  padding: 2px 9px; border-radius: 999px; letter-spacing: 0.02em;
}
.op-calc-head h2 { font-family: var(--pb-font-display); font-size: 40px; font-weight: 800; color: var(--pb-ink); letter-spacing: -0.025em; line-height: 1.08; margin: 0; }
.op-calc-head p { font-size: 16px; color: var(--pb-text-muted); margin-top: 12px; line-height: 1.55; max-width: 60ch; margin-left: auto; margin-right: auto; }

.op-calc-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; align-items: flex-start; }

/* ----- main wizard card ----- */
.op-calc-card {
  background: #fff;
  border-radius: var(--pb-r-xl);
  padding: 0;
  border: 1px solid var(--pb-line-soft);
  box-shadow: var(--pb-shadow-sm);
  overflow: hidden;
}

/* Progress bar */
.op-prog {
  display: flex; align-items: center;
  padding: 22px 32px;
  border-bottom: 1px solid var(--pb-line-soft);
  background: var(--pb-surface);
}
.op-prog-step {
  flex: 1; display: flex; align-items: center; gap: 10px;
  position: relative;
  cursor: pointer;
}
.op-prog-step:not(:last-child)::after {
  content: ''; position: absolute; left: 40px; right: -10px; top: 16px;
  height: 2px; background: var(--pb-line); z-index: 0;
}
.op-prog-step.done:not(:last-child)::after, .op-prog-step.active:not(:last-child)::after { background: var(--pb-green); }
.op-prog-step .dot {
  width: 32px; height: 32px; border-radius: 50%;
  background: #fff; color: var(--pb-text-muted);
  border: 2px solid var(--pb-line);
  display: grid; place-items: center;
  font-family: var(--pb-font-display); font-weight: 700; font-size: 14px;
  flex-shrink: 0;
  position: relative; z-index: 1;
  transition: 200ms;
}
.op-prog-step.active .dot { background: var(--pb-green); border-color: var(--pb-green); color: #fff; box-shadow: 0 0 0 4px rgba(80,184,72,.18); }
.op-prog-step.done .dot { background: var(--pb-green); border-color: var(--pb-green); color: #fff; }
.op-prog-step.done .dot::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 14px;
}
.op-prog-step .lbl {
  font-family: var(--pb-font-display); font-weight: 600; font-size: 13px;
  color: var(--pb-text-muted); line-height: 1.2;
  white-space: nowrap;
}
.op-prog-step.active .lbl { color: var(--pb-ink); }
.op-prog-step.done .lbl { color: var(--pb-text); }

/* Step body */
.op-step { padding: 32px; min-height: 360px; }
.op-step-head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.op-step-head .icon { width: 44px; height: 44px; border-radius: var(--pb-r-md); background: var(--pb-green-100); color: var(--pb-green-700); display: grid; place-items: center; flex: 0 0 44px; }
.op-step-head .icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.op-step-head h3 { font-family: var(--pb-font-display); font-weight: 700; font-size: 22px; color: var(--pb-ink); margin: 0; letter-spacing: -0.015em; }
.op-step-head .micro { font-family: var(--pb-font-mono); font-size: 11px; color: var(--pb-text-soft); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }
.op-step-head .head-body { display: flex; flex-direction: column; gap: 0; }

/* ----- step 1: city autocomplete + zone ----- */
.op-city-input { position: relative; }
.op-city-input .pb-input { padding-left: 44px; font-size: 16px; padding-top: 16px; padding-bottom: 16px; }
.op-city-input .pin {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--pb-green-700); display: inline-flex;
}
.op-city-input .pin svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.op-pop-label {
  margin: 18px 0 8px; font-family: var(--pb-font-display);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--pb-text-muted);
}
.op-city-suggestions {
  margin-top: 0; display: flex; flex-wrap: wrap; gap: 6px;
}
.op-city-suggestions .sg {
  padding: 6px 12px; border-radius: 999px;
  background: var(--pb-surface-2); border: 1px solid transparent;
  font-size: 12px; font-weight: 600; color: var(--pb-text);
  cursor: pointer; transition: 160ms;
  font-family: var(--pb-font-display);
}
.op-city-suggestions .sg:hover { background: var(--pb-green-50); }
.op-city-suggestions .sg.on { background: var(--pb-green-100); color: var(--pb-green-700); border-color: var(--pb-green); }

.op-zone-badge {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--pb-green-50); border: 1px solid rgba(80,184,72,.25);
  border-radius: var(--pb-r-md);
  font-size: 14px; color: var(--pb-text);
}
.op-zone-badge .num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--pb-green); color: #fff;
  display: grid; place-items: center;
  font-family: var(--pb-font-display); font-weight: 800; font-size: 14px;
}
.op-zone-badge b { color: var(--pb-ink); font-family: var(--pb-font-display); font-weight: 700; display: block; font-size: 14px; }
.op-zone-badge small { color: var(--pb-text-muted); font-size: 12px; }

/* ----- step 2: type cards ----- */
.op-types-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.op-tcard {
  background: var(--pb-surface-2);
  border: 1.5px solid transparent;
  border-radius: var(--pb-r-md);
  padding: 18px 16px;
  display: flex; flex-direction: column; gap: 8px;
  cursor: pointer; transition: 160ms;
  position: relative;
  text-align: left;
}
.op-tcard:hover { background: var(--pb-green-50); }
.op-tcard.on { background: var(--pb-green-100); border-color: var(--pb-green); }
.op-tcard .ic {
  width: 36px; height: 36px; border-radius: var(--pb-r-sm);
  background: #fff; color: var(--pb-green-700);
  display: grid; place-items: center;
}
.op-tcard.on .ic { background: var(--pb-green); color: #fff; }
.op-tcard .ic svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.op-tcard .t { font-family: var(--pb-font-display); font-weight: 700; font-size: 14px; color: var(--pb-ink); line-height: 1.2; letter-spacing: -0.01em; }
.op-tcard .d { font-size: 12px; color: var(--pb-text-muted); line-height: 1.4; }
.op-tcard .area { font-family: var(--pb-font-mono); font-size: 11px; color: var(--pb-green-700); font-weight: 600; margin-top: auto; }

/* ----- step 3: floor / area / quantity sliders ----- */
.op-step-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.op-field-block { display: flex; flex-direction: column; gap: 8px; }
.op-field-block .lbl {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--pb-font-display); font-weight: 600; font-size: 14px; color: var(--pb-ink);
}
.op-field-block .lbl .v { font-family: var(--pb-font-mono); font-size: 13px; color: var(--pb-green-700); font-weight: 700; }

.op-slider {
  -webkit-appearance: none; height: 6px; background: var(--pb-line);
  border-radius: 999px; outline: none; width: 100%;
}
.op-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--pb-green); border: 3px solid #fff; cursor: pointer;
  box-shadow: 0 0 0 4px rgba(80,184,72,.18);
}
.op-slider::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--pb-green); border: 3px solid #fff; cursor: pointer;
}
.op-slider-marks { display: flex; justify-content: space-between; font-family: var(--pb-font-mono); font-size: 10px; color: var(--pb-text-soft); margin-top: 4px; }

/* ----- step 4: items grid ----- */
.op-items-pick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.op-pick {
  background: var(--pb-surface-2);
  border: 1.5px solid transparent;
  border-radius: var(--pb-r-md);
  padding: 14px 12px;
  display: flex; flex-direction: column; gap: 6px; align-items: center; text-align: center;
  cursor: pointer; transition: 160ms;
  position: relative;
}
.op-pick:hover { background: var(--pb-green-50); }
.op-pick.on { background: var(--pb-green-100); border-color: var(--pb-green); }
.op-pick .ic { width: 36px; height: 36px; display: grid; place-items: center; color: var(--pb-green-700); }
.op-pick .ic svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.op-pick .t { font-family: var(--pb-font-display); font-weight: 600; font-size: 12px; color: var(--pb-ink); line-height: 1.2; }
.op-pick .vol { font-family: var(--pb-font-mono); font-size: 10px; color: var(--pb-text-soft); }
.op-pick .qbtns {
  position: absolute; right: 8px; top: 8px;
  display: none; align-items: center; gap: 0;
  background: #fff; border: 1px solid var(--pb-green);
  border-radius: 999px; padding: 1px;
  box-shadow: var(--pb-shadow-sm);
}
.op-pick.on .qbtns { display: inline-flex; }
.op-pick .qbtns button {
  width: 22px; height: 22px; border-radius: 50%;
  background: transparent; color: var(--pb-green-700); border: 0;
  font-family: var(--pb-font-display); font-weight: 700; font-size: 14px;
  cursor: pointer; display: grid; place-items: center;
}
.op-pick .qbtns button:hover { background: var(--pb-green-50); }
.op-pick .qbtns .q { min-width: 22px; padding: 0 4px; text-align: center; font-family: var(--pb-font-mono); font-weight: 700; font-size: 12px; color: var(--pb-ink); }

.op-items-summary {
  margin-top: 14px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: var(--pb-green-50); border: 1px solid rgba(80,184,72,.25);
  border-radius: var(--pb-r-md); padding: 12px 18px;
  font-size: 13px; color: var(--pb-text);
}
.op-items-summary b { color: var(--pb-ink); font-family: var(--pb-font-display); }
.op-items-summary .vol { font-family: var(--pb-font-mono); color: var(--pb-green-700); font-weight: 700; }

/* pytanie o zapełnienie mebli — checkbox pod listą przedmiotów */
.op-filled-check {
  margin-top: 12px; display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; cursor: pointer;
  background: var(--pb-surface-2); border: 1.5px solid transparent;
  border-radius: var(--pb-r-md); transition: 160ms;
}
.op-filled-check:hover { background: var(--pb-green-50); }
.op-filled-check.on { background: var(--pb-green-50); border-color: var(--pb-green); }
.op-filled-check .box {
  flex: 0 0 22px; width: 22px; height: 22px; margin-top: 1px;
  border-radius: 6px; border: 1.5px solid var(--pb-line); background: #fff;
  display: grid; place-items: center; transition: 160ms;
}
.op-filled-check .box svg {
  width: 14px; height: 14px; stroke: #fff; fill: none;
  stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; opacity: 0; transition: 160ms;
}
.op-filled-check.on .box { background: var(--pb-green); border-color: var(--pb-green); }
.op-filled-check.on .box svg { opacity: 1; }
.op-filled-check .txt { display: flex; flex-direction: column; gap: 2px; }
.op-filled-check .txt b { font-family: var(--pb-font-display); font-weight: 700; font-size: 14px; color: var(--pb-ink); }
.op-filled-check .txt small { font-size: 12.5px; color: var(--pb-text-muted); line-height: 1.4; }

/* ----- step 5: access modifiers ----- */
.op-mods { display: flex; flex-direction: column; gap: 22px; }
.op-mod-row { display: flex; flex-direction: column; gap: 10px; }
.op-mod-row .label {
  font-family: var(--pb-font-display); font-weight: 600; font-size: 14px; color: var(--pb-ink);
  display: flex; align-items: center; gap: 8px;
}
.op-mod-row .label .hint { font-size: 12px; color: var(--pb-text-muted); font-weight: 500; }

.op-segmented {
  display: flex; background: var(--pb-surface-2);
  border-radius: var(--pb-r-md); padding: 4px; gap: 4px;
  border: 1px solid var(--pb-line-soft);
}
.op-segmented button {
  flex: 1; padding: 9px 14px; border-radius: var(--pb-r-sm);
  background: transparent; color: var(--pb-text);
  font-family: var(--pb-font-display); font-weight: 600; font-size: 13px;
  cursor: pointer; transition: 160ms;
  border: 0;
}
.op-segmented button.on { background: var(--pb-green); color: #fff; box-shadow: var(--pb-shadow-sm); }
.op-segmented.warn button.on { background: var(--pb-warning); color: #fff; }
.op-segmented.danger button.on { background: var(--pb-danger); color: #fff; }
/* „Brak" (materiały niebezpieczne) — zielony; dopiero realne materiały = czerwony */
.op-segmented.danger button.on[data-val="brak"] { background: var(--pb-green); color: #fff; }

.op-warn-note {
  margin-top: 6px;
  display: flex; gap: 12px; align-items: flex-start;
  background: #fff4e6; border: 1px solid rgba(245,158,11,.25);
  border-radius: var(--pb-r-md); padding: 12px 14px;
  font-size: 13px; color: #6b4500; line-height: 1.5;
}
.op-warn-note svg { width: 20px; height: 20px; flex: 0 0 20px; stroke: var(--pb-warning); fill: none; stroke-width: 2; }

/* ----- step 6: result page in card ----- */
.op-result-inner { display: flex; flex-direction: column; align-items: center; padding: 16px 0 8px; }
.op-result-big {
  font-family: var(--pb-font-display); font-weight: 800;
  font-size: 16px; color: var(--pb-text-muted); letter-spacing: 0.02em; margin-bottom: 4px;
  text-transform: uppercase;
}
.op-result-price {
  font-family: var(--pb-font-display); font-weight: 800;
  font-size: 64px; color: var(--pb-green); letter-spacing: -0.04em; line-height: 1;
  display: flex; align-items: baseline; gap: 6px;
}
.op-result-price .unit { font-size: 24px; color: var(--pb-green-700); font-weight: 700; }
.op-result-price .dash { color: var(--pb-text-soft); font-size: 40px; padding: 0 6px; }
.op-result-sub { font-size: 13px; color: var(--pb-text-muted); margin-top: 8px; }
.op-result-incl {
  list-style: none; margin: 16px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center;
}
.op-result-incl li {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; color: var(--pb-text);
}
.op-result-incl li svg {
  width: 16px; height: 16px; flex: 0 0 16px;
  stroke: var(--pb-green-700); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}
.op-result-photocta {
  margin: 20px auto 0; max-width: 480px; text-align: center;
  font-size: 16px; line-height: 1.55; color: var(--pb-text);
}
.op-result-photocta b { color: var(--pb-green-700); }
.op-result-haznote {
  display: flex; gap: 9px; align-items: flex-start; text-align: left;
  margin: 16px auto 0; max-width: 460px; padding: 12px 14px;
  background: #fff8ea; border: 1px solid var(--pb-warning); border-radius: var(--pb-r-md);
  font-size: 13px; line-height: 1.5; color: var(--pb-text);
}
.op-result-haznote svg { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 1px; stroke: var(--pb-warning); fill: none; stroke-width: 2; }
.op-result-haznote b { color: var(--pb-warning); }
.op-result-cta { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; justify-content: center; }

/* ----- nav footer ----- */
.op-step-foot {
  padding: 18px 32px;
  border-top: 1px solid var(--pb-line-soft);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--pb-surface);
}
.op-step-foot .step-count { font-family: var(--pb-font-mono); font-size: 12px; color: var(--pb-text-muted); letter-spacing: 0.05em; }
.op-step-foot .nav { display: flex; gap: 10px; }
.op-step-foot .pb-btn { padding: 11px 22px; font-size: 14px; }
.op-step-foot .pb-btn-yellow { box-shadow: none; }   /* „Zacznij od nowa" — bez żółtej poświaty */

/* ----- sidebar live price ----- */
.op-calc-side {
  position: sticky; top: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.op-side-card {
  background: #fff;
  border-radius: var(--pb-r-xl);
  padding: 28px;
  border: 1px solid var(--pb-line-soft);
  box-shadow: var(--pb-shadow-md);
  position: relative; overflow: hidden;
}
.op-side-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--pb-green) 0%, var(--pb-yellow) 100%);
}
.op-side-eyebrow {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.op-side-eyebrow .l {
  font-family: var(--pb-font-mono); font-size: 11px; color: var(--pb-text-muted);
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
}
.op-side-eyebrow .live {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--pb-font-mono); font-size: 10px;
  color: var(--pb-green-700); font-weight: 700; letter-spacing: 0.06em;
}
.op-side-eyebrow .live .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pb-green); animation: pb-pulse 2s infinite; }

.op-side-price {
  font-family: var(--pb-font-display); font-weight: 800;
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 4px;
}
.op-side-price .from { font-size: 14px; color: var(--pb-text-muted); padding-bottom: 12px; font-weight: 500; }
.op-side-price .big { font-size: 44px; color: var(--pb-ink); letter-spacing: -0.035em; line-height: 1; }
.op-side-price .dash { color: var(--pb-text-soft); font-size: 28px; padding: 0 4px 8px; font-weight: 500; }
.op-side-price .unit { font-size: 16px; color: var(--pb-text-muted); padding-bottom: 8px; font-weight: 600; }
.op-side-sub {
  font-size: 12px; color: var(--pb-text-muted); line-height: 1.5;
  padding: 12px;
  background: var(--pb-green-50);
  border-radius: var(--pb-r-md);
  border-left: 3px solid var(--pb-green);
  margin-top: 8px;
}

.op-side-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }

.op-breakdown {
  margin-top: 20px; padding-top: 18px; border-top: 1px dashed var(--pb-line);
  display: flex; flex-direction: column; gap: 8px;
}
.op-breakdown .head {
  font-family: var(--pb-font-mono); font-size: 11px; color: var(--pb-text-muted);
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-bottom: 4px;
}
.op-breakdown .row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--pb-text);
}
.op-breakdown .row .k { color: var(--pb-text-muted); }
.op-breakdown .row .v { font-family: var(--pb-font-mono); color: var(--pb-ink); font-weight: 600; }
.op-breakdown .row .v.up { color: var(--pb-warning); }
.op-breakdown .row .v.danger { color: var(--pb-danger); }
.op-breakdown .row.total { padding-top: 10px; margin-top: 6px; border-top: 1px solid var(--pb-line); }
.op-breakdown .row.total .k { color: var(--pb-ink); font-weight: 700; font-family: var(--pb-font-display); font-size: 14px; }
.op-breakdown .row.total .v { color: var(--pb-green-700); font-weight: 800; font-size: 16px; }

/* extra side card: USP under price */
.op-side-usp { display: flex; flex-direction: column; gap: 8px; }
.op-side-usp .row { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--pb-text); }
.op-side-usp .ck { width: 18px; height: 18px; flex: 0 0 18px; border-radius: 50%; background: var(--pb-green); color: #fff; display: grid; place-items: center; }
.op-side-usp .ck svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 3; }

/* =============================================================================
   REUSED FROM HOMEPAGE (home.css) — needed because home.css isn't loaded here
   ============================================================================= */
/* USP strip */
.pb-usp { padding: 16px 0 36px; background: linear-gradient(180deg, var(--pb-green-50) 0%, #fff 100%); }
.pb-usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pb-usp-grid-5 { grid-template-columns: repeat(5, 1fr); }
.pb-usp-item { background: #fff; border-radius: var(--pb-r-lg); padding: 18px; box-shadow: var(--pb-shadow-sm); display: flex; align-items: center; gap: 14px; transition: box-shadow var(--pb-dur-base), transform var(--pb-dur-base); }
.pb-usp-item:hover { box-shadow: var(--pb-shadow-md); }
.pb-usp-illo { width: 56px; height: 56px; flex-shrink: 0; display: grid; place-items: center; border-radius: var(--pb-r-md); background: var(--pb-green-100); color: var(--pb-green-700); }
.pb-usp-illo svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.pb-usp-t1 { font-family: var(--pb-font-display); font-weight: 700; font-size: 15px; color: var(--pb-ink); line-height: 1.2; }
.pb-usp-t2 { font-size: 12px; color: var(--pb-text-muted); margin-top: 3px; line-height: 1.4; }

/* FAQ (homepage style — single column) */
.pb-faq { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.pb-faq-item { background: #fff; border-radius: var(--pb-r-lg); border: 1.5px solid var(--pb-line-soft); overflow: hidden; }
.pb-faq-q { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; cursor: pointer; font-family: var(--pb-font-display); font-weight: 600; font-size: 16px; color: var(--pb-ink); gap: 12px; user-select: none; }
.pb-faq-chev { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; background: var(--pb-green-100); color: var(--pb-green-700); display: grid; place-items: center; transition: transform var(--pb-dur-base), background var(--pb-dur-base); }
.pb-faq-chev svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; }
.pb-faq-item.open .pb-faq-chev { transform: rotate(180deg); background: var(--pb-green); color: #fff; }
.pb-faq-a { height: 0; overflow: hidden; }
.pb-faq-a-inner { padding: 0 22px 20px; font-size: 14px; color: var(--pb-text); line-height: 1.6; }

/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 1024px) {
  /* hero zostaje 2-kolumnowy na tablecie (jak na stronie głównej) — formularz wciąż z boku */
  .op-hero h1 { font-size: 42px; }
  .op-hero::before { display: none; }
  .pb-usp-grid, .pb-usp-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .op-calc-grid { grid-template-columns: 1fr; }
  .op-calc-side { position: static; }
  .op-cost-board { grid-template-columns: 1fr; }
  .op-map-grid { grid-template-columns: 1fr; gap: 28px; }
  .op-wf-grid { grid-template-columns: repeat(2, 1fr); }
  .op-bigform { grid-template-columns: 1fr; padding: 32px; }
  .op-sit-grid, .op-cases, .op-blog-grid, .op-usp6-grid { grid-template-columns: repeat(2, 1fr); }
  .op-types-grid { grid-template-columns: repeat(3, 1fr); }
  .op-items-grid { grid-template-columns: repeat(2, 1fr); }
  .op-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .op-stat { border-bottom: 1px solid var(--pb-line-soft); }
  .op-stat:nth-child(2n) { border-right: none; }
  .op-trust-grid { grid-template-columns: repeat(3, 1fr); }
  .op-cta-inner { grid-template-columns: 1fr; }
  .op-prog-step .lbl { display: none; }
}
@media (max-width: 760px) {
  .op-sec { padding: 56px 0; }
  .op-sec-head h2, .op-calc-head h2 { font-size: 30px; }
  .op-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .op-hero h1 { font-size: 34px; }
  .op-hero h1 .underline { white-space: normal; }
  .op-step-row, .op-types-cards, .op-items-pick { grid-template-columns: 1fr 1fr; }
  .op-types-grid, .op-sit-grid, .op-cases, .op-blog-grid, .op-usp6-grid, .op-items-grid { grid-template-columns: 1fr; }
  .op-stats-grid { grid-template-columns: 1fr; }
  .op-stat { border-right: none; }
  .op-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .op-result-price { font-size: 46px; }
  .op-step { padding: 20px; min-height: 0; }
  .op-prog { padding: 16px; gap: 4px; }
  .op-faq { grid-template-columns: 1fr; }
  .op-bigform-row { grid-template-columns: 1fr; }
  .pb-usp-grid, .pb-usp-grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .pb-usp-grid, .pb-usp-grid-5 { grid-template-columns: 1fr; }
}

/* =============================================================================
   REALIZACJE — before/after reveal slider (jak w hubie Wyburzenia, motyw jasny)
   Nadpisuje statyczny split z sekcji 8 powyżej.
   ============================================================================= */
.op-case .ba { display: block; height: 240px; position: relative; overflow: hidden; cursor: ew-resize; touch-action: none; --pos: 50%; }
.op-case .ba::before, .op-case .ba::after { content: none; display: none; }
.op-case .ba .before, .op-case .ba .after { position: absolute; inset: 0; background-size: cover; background-position: center; }
.op-case .ba .after { clip-path: inset(0 0 0 var(--pos)); }
.op-case .ba .lbl { position: absolute; top: auto; bottom: 12px; z-index: 4; }
.op-case .ba .before .lbl { left: 12px; right: auto; background: rgba(26,29,34,.62); color: #fff; }
.op-case .ba .after .lbl { right: 12px; left: auto; background: rgba(255,255,255,.95); color: var(--pb-green-700); }
.op-case .ba .handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; background: var(--pb-yellow); transform: translateX(-50%); z-index: 5; pointer-events: none; }
.op-case .ba .handle::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 34px; height: 34px; border-radius: 50%; background: var(--pb-yellow); border: 3px solid #fff; box-shadow: var(--pb-shadow-sm); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231a1d22' stroke-width='2.6' stroke-linecap='round'><polyline points='15 18 9 12 15 6'/><polyline points='9 18 15 12 9 6'/></svg>"); background-repeat: no-repeat; background-position: center; }

/* Sticky-header offset dla kotwic */
#kalkulator, #formularz { scroll-margin-top: 96px; }

/* =============================================================================
   PRAWKI: hero pebble jak na home + odstępy w formularzu + zgoda
   ============================================================================= */
/* Formularz hero — przywróć odstępy (pola są w <form>, nie bezpośrednio w .op-form) */
.op-form form { display: flex; flex-direction: column; gap: 14px; }
.op-form-consent { display: flex; gap: 8px; align-items: flex-start; font-size: 11px; color: var(--pb-text-muted); line-height: 1.45; }
.op-form-consent input { margin-top: 2px; flex: 0 0 auto; accent-color: var(--pb-green); }
.op-form-consent a { color: var(--pb-green-700); text-decoration: underline; }

/* Hero pebble slideshow — 1:1 jak na stronie głównej (.pb-hero-image) */
.pb-hero-image { position: relative; height: 280px; max-width: 520px; margin-top: 24px; }
.pb-hero-image .pebble { width: 100%; height: 100%; border-radius: 56% 44% 52% 48% / 58% 50% 50% 42%; position: relative; overflow: hidden; background-size: cover; background-position: center; }
.pb-hero-image .pebble::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.45) 38%, rgba(0,0,0,.12) 62%, transparent 100%); z-index: 1; }
.pb-hero-image .hero-text-overlay { position: absolute; left: 0; right: 0; bottom: 20px; padding: 0 22px; z-index: 5; pointer-events: none; }
.pb-hero-image .slide-label { display: block; color: #fff; font-family: var(--pb-font-display); font-weight: 700; font-size: 18px; line-height: 1.2; text-shadow: 0 2px 12px rgba(0,0,0,.9), 0 1px 4px rgba(0,0,0,.8), 0 0 2px rgba(0,0,0,.6); }
.pb-hero-image .slide-sub { display: block; color: rgba(255,255,255,.95); font-family: var(--pb-font-body); font-size: 12px; font-weight: 500; margin-top: 4px; text-shadow: 0 1px 8px rgba(0,0,0,.9), 0 1px 3px rgba(0,0,0,.8); }
.pb-hero-image .price-tag { position: absolute; bottom: 36px; right: -8px; background: var(--pb-yellow); color: var(--pb-ink); padding: 12px 20px; border-radius: var(--pb-r-pill); font-family: var(--pb-font-display); font-weight: 800; font-size: 18px; box-shadow: 0 4px 14px rgba(0,0,0,.22); transform: rotate(-4deg); z-index: 6; }
.pb-hero-image .dots { position: absolute; left: 50%; bottom: -14px; transform: translateX(-50%); display: flex; gap: 6px; }
.pb-hero-image .dots span { width: 28px; height: 4px; border-radius: 2px; background: rgba(180,180,180,.4); cursor: pointer; position: relative; overflow: hidden; }
.pb-hero-image .dots span.on { width: 40px; }
.pb-hero-image .dots span.on::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 100%; background: var(--pb-green); transform-origin: left center; transform: scaleX(0); animation: pb-progress-fill 4200ms linear forwards; }
@keyframes pb-progress-fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (max-width: 760px) { .pb-hero-image { height: 220px; max-width: 100%; } }

/* =============================================================================
   PRAWKI v2
   ============================================================================= */
/* 0. Wszystkie nagłówki h2 — firmowa zieleń */
main h2 { color: var(--pb-green); }
.op-sec-head h2, .op-calc-head h2, .op-cases-head h2, .op-bigform h2 { color: var(--pb-green); }

/* Hero — formularz wyśrodkowany w pionie */
.op-hero-inner { align-items: center; }
.op-form { align-self: center; }

/* Kalkulator — usuń nachodzące linie progressu */
.op-prog-step:not(:last-child)::after { display: none; }

/* Kalkulator — prawa kolumna (lead) w stylu huba Wyburzenia, kolory zielone */
.op-side-cta-head { font-family: var(--pb-font-display); font-weight: 700; font-size: 15px; color: var(--pb-ink); margin: 22px 0 0; letter-spacing: -0.01em; }
.op-calc-lead { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
.op-calc-lead label.fld { font-family: var(--pb-font-display); font-weight: 600; font-size: 13px; color: var(--pb-ink); }
.op-calc-lead .req { color: var(--pb-green); }
.op-upload { display: flex; align-items: center; gap: 12px; border: 1.5px dashed var(--pb-line); border-radius: var(--pb-r-md); padding: 14px 16px; cursor: pointer; transition: 160ms; background: var(--pb-surface-2); }
.op-upload:hover, .op-upload.is-drop { border-color: var(--pb-green); background: var(--pb-green-50); }
.op-upload > svg { width: 22px; height: 22px; flex: 0 0 22px; stroke: var(--pb-green-700); fill: none; stroke-width: 2; }
.op-upload b { display: block; font-family: var(--pb-font-display); font-weight: 700; font-size: 13px; color: var(--pb-ink); }
.op-upload small { display: block; font-size: 11px; color: var(--pb-text-muted); margin-top: 2px; }

/* =============================================================================
   KARTY USŁUG — styl jak na home (.pb-services / .pb-service) — Typy + Sytuacje
   ============================================================================= */
.pb-services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pb-service { background: #fff; border-radius: var(--pb-r-lg); padding: 18px; box-shadow: var(--pb-shadow-sm); display: flex; flex-direction: column; gap: 10px; cursor: pointer; transition: box-shadow var(--pb-dur-base), transform var(--pb-dur-base); position: relative; text-decoration: none; }
.pb-service:hover { box-shadow: var(--pb-shadow-md); color: inherit; text-decoration: none; }
.pb-service-img { width: 100%; height: 150px; border-radius: 56% 44% 52% 48% / 58% 50% 50% 42%; background-color: var(--pb-green-100); background-size: cover; background-position: center; transition: border-radius 380ms var(--pb-ease-out); overflow: hidden; }
.pb-service:hover .pb-service-img { border-radius: var(--pb-r-md); }
.pb-service h3 { font-family: var(--pb-font-display); font-weight: 700; font-size: 16px; color: var(--pb-ink); line-height: 1.2; margin: 0; }
.pb-service p { font-size: 13px; color: var(--pb-text-muted); line-height: 1.45; margin: 0; flex: 1; }
.pb-service .price { display: flex; align-items: center; justify-content: space-between; font-family: var(--pb-font-display); font-weight: 700; font-size: 14px; color: var(--pb-green-700); margin-top: auto; }
.pb-service .price svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.pb-service .promo { position: absolute; top: 12px; right: 12px; background: var(--pb-yellow); color: var(--pb-ink); padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; transform: rotate(-3deg); box-shadow: var(--pb-shadow-yellow); z-index: 2; }
@media (max-width: 1024px) { .pb-services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .pb-services { grid-template-columns: 1fr; } }
/* wariant 5 kafelków w rzędzie (geo-strony: „Co opróżniamy — wszystkie typy") — nie rusza stron z 4 kafelkami */
.pb-services.cols-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1200px) { .pb-services.cols-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1024px) { .pb-services.cols-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .pb-services.cols-5 { grid-template-columns: 1fr; } }

/* =============================================================================
   MAPA POLSKI (województwa) — jak w hubie Wyburzenia, motyw jasny/zielony
   ============================================================================= */
.op-map-section { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: center; }
.op-map-side { display: flex; flex-direction: column; gap: 16px; }
.op-map-side h3 { font-family: var(--pb-font-display); font-weight: 800; font-size: 26px; color: var(--pb-ink); margin: 0; letter-spacing: -0.02em; }
.op-map-side p { color: var(--pb-text-muted); font-size: 16px; line-height: 1.6; margin: 0; }
.op-map-side p b { color: var(--pb-ink); font-weight: 600; }
.op-map-features { list-style: none; padding: 0; margin: 4px 0 0; display: flex; flex-direction: column; gap: 8px; }
.op-map-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--pb-text); }
.op-map-features li::before { content: ''; width: 18px; height: 18px; flex: 0 0 18px; border-radius: 50%; background: var(--pb-green); background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>"); background-size: 11px; background-repeat: no-repeat; background-position: center; }
.op-poland-canvas { position: relative; }
.op-poland-map { width: 100%; height: auto; max-width: 680px; display: block; margin: 0 auto; filter: drop-shadow(0 8px 24px rgba(80,184,72,.18)); }
.op-voi { fill: var(--pb-surface-3); stroke: #fff; stroke-width: 1.5; transition: 200ms; }
.op-voi.hl { fill: var(--pb-green-100); stroke: var(--pb-green); }
.op-city-pin .pulse-ring { animation: pb-pulse 2.4s var(--pb-ease-out) infinite; transform-box: fill-box; transform-origin: center; }
@media (max-width: 1024px) { .op-map-section { grid-template-columns: 1fr; gap: 28px; } }

/* =============================================================================
   REALIZACJE — karty jak w hubie Wyburzenia: tekst na zdjęciu, bez podnoszenia
   (nadpisuje wcześniejszy slider .op-case)
   ============================================================================= */
.op-cases { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: 14px; }
.op-case { position: relative; border-radius: var(--pb-r-lg); overflow: hidden; border: none; background: var(--pb-surface-3); transition: none; }
.op-case:hover { transform: none; box-shadow: none; }
.op-case.wide { grid-column: span 2; }
.op-case.tall { grid-row: span 2; }
.op-case .ph { position: absolute; inset: 0; background-size: cover; background-position: center; }
.op-case::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.72) 100%); z-index: 1; }
.op-case .info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 16px 18px; }
.op-case .info .city { font-family: var(--pb-font-mono); font-size: 11px; color: rgba(255,255,255,.8); letter-spacing: 0.06em; text-transform: uppercase; }
.op-case .info h4 { font-family: var(--pb-font-display); font-weight: 700; font-size: 18px; margin: 4px 0 0; color: #fff; letter-spacing: -0.01em; }
.op-case .info .meta { display: flex; gap: 12px; margin-top: 8px; font-size: 12px; color: rgba(255,255,255,.85); flex-wrap: wrap; }
.op-case .info .meta b { color: var(--pb-yellow); font-weight: 700; }
@media (max-width: 1024px) { .op-cases { grid-template-columns: repeat(2, 1fr); } .op-case.wide { grid-column: span 1; } .op-case.tall { grid-row: span 1; } }
@media (max-width: 600px)  { .op-cases { grid-template-columns: 1fr; grid-auto-rows: 220px; } }

/* =============================================================================
   PRAWKI v3
   ============================================================================= */
/* Custom select (jak na home) — formularz hero */
.pb-custom-select { position: relative; width: 100%; user-select: none; }
.pb-custom-select-trigger { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border: 1.5px solid var(--pb-line); border-radius: var(--pb-r-md); background: #fff; cursor: pointer; font-family: var(--pb-font-body); font-size: 15px; color: var(--pb-ink); transition: border-color 160ms, box-shadow 160ms; }
.pb-custom-select.open .pb-custom-select-trigger { border-color: var(--pb-green); box-shadow: 0 0 0 3px rgba(80,184,72,.15); }
.pb-custom-select-trigger svg { width: 15px; height: 15px; fill: none; stroke: var(--pb-text-muted); stroke-width: 2.5; stroke-linecap: round; transition: transform 200ms var(--pb-ease-out); flex-shrink: 0; }
.pb-custom-select.open .pb-custom-select-trigger svg { transform: rotate(180deg); }
.pb-custom-select-dropdown { display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: #fff; border: 1.5px solid var(--pb-line); border-radius: var(--pb-r-md); box-shadow: var(--pb-shadow-md); z-index: 60; overflow: hidden; }
.pb-custom-select.open .pb-custom-select-dropdown { display: block; }
.pb-custom-select-option { padding: 11px 14px; font-family: var(--pb-font-body); font-size: 15px; color: var(--pb-text); cursor: pointer; transition: background 100ms; }
.pb-custom-select-option:hover { background: var(--pb-green-50); color: var(--pb-ink); }
.pb-custom-select-option.active { color: var(--pb-green-700); font-weight: 600; background: var(--pb-green-100); }

/* Progress — zielone linie między kółkami, etykieta NAD linią */
.op-prog-step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; position: relative; cursor: pointer; }
.op-prog-step .lbl { order: -1; text-align: center; white-space: normal; }
.op-prog-step:not(:last-child)::after { content: ''; display: block; position: absolute; top: auto; right: auto; left: 50%; bottom: 15px; width: 100%; height: 2px; background: var(--pb-green); z-index: 0; }
.op-prog-step .dot { position: relative; z-index: 1; }

/* Prawa kolumna kalkulatora — bez zielonej kreski u góry, bez LIVE/sub */
.op-side-card::before { display: none; }
.op-side-eyebrow .l { font-family: var(--pb-font-display); font-weight: 700; font-size: 14px; color: var(--pb-text-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.op-side-cta-head { font-family: var(--pb-font-display); font-weight: 700; font-size: 14px; color: var(--pb-green); letter-spacing: 0.06em; text-transform: uppercase; margin: 24px 0 4px; padding-top: 22px; border-top: 1px dashed var(--pb-line); }
.op-side-price .big { font-size: clamp(36px, 3.8vw, 52px); }

/* Kalkulator — karty typu obiektu (tylko ikona + nazwa) */
.op-tcard.simple { align-items: center; text-align: center; gap: 10px; padding: 20px 14px; justify-content: center; }
.op-tcard.simple .ic { width: 46px; height: 46px; }
.op-tcard.simple .ic svg { width: 24px; height: 24px; }
.op-tcard.simple .t { font-size: 15px; }

/* =============================================================================
   PRAWKI v4
   ============================================================================= */
/* MAPA — 1:1 jak na home (.pb-map-section + poland-map.php) */
.pb-map-section { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 48px; align-items: center; }
.pb-map-side { display: flex; flex-direction: column; gap: 16px; }
.pb-map-side h3 { font-family: var(--pb-font-display); font-size: clamp(24px, 2.6vw, 32px); font-weight: 800; color: var(--pb-green); letter-spacing: -0.02em; line-height: 1.2; margin: 0; }
.pb-map-side p { color: var(--pb-text-muted); font-size: 16px; line-height: 1.6; margin: 0; }
.pb-map-side p b { color: var(--pb-ink); font-weight: 600; }
.pb-map-features { list-style: none; padding: 0; margin: 4px 0 8px; display: flex; flex-direction: column; gap: 8px; }
.pb-map-features li { font-size: 15px; color: var(--pb-text); }
.pb-map-side .pb-btn { align-self: flex-start; }
.pb-map-wrap { position: relative; }
.pb-map-wrap svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 6px 16px rgba(80,184,72,.12)); }
.pb-poland-map { width: 100%; height: auto; max-width: 680px; display: block; margin: 0 auto; }
.pb-voi { fill: var(--pb-green-50); stroke: var(--pb-green-600); stroke-width: 0.8; stroke-linejoin: round; transition: fill 200ms; }
.pb-voi.hl { fill: #a3d69b; stroke: var(--pb-green-600); stroke-width: 1.1; }
.pb-city-pin .pulse-ring { animation: pb-pulse 2.4s var(--pb-ease-out) infinite; transform-box: fill-box; transform-origin: center; }
@media (max-width: 1024px) { .pb-map-section { grid-template-columns: 1fr; gap: 24px; } .pb-map-side { text-align: center; } .pb-map-side .pb-btn { align-self: center; } .pb-map-features { align-items: center; } }

/* REALIZACJE — before/after slider, 1:1 jak w hubie Wyburzenia (motyw jasny) */
.op-bacases { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 220px; gap: 14px; }
.op-bacase { border-radius: var(--pb-r-lg); position: relative; overflow: hidden; background: var(--pb-surface-3); border: 1px solid var(--pb-line-soft); cursor: ew-resize; touch-action: none; user-select: none; }
.op-bacase::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%); pointer-events: none; }
.op-bacase.tall { grid-row: span 2; }
.op-bacase.wide { grid-column: span 2; }
.op-bacase .ba { position: absolute; inset: 0; }
.op-bacase .ba .before, .op-bacase .ba .after { position: absolute; inset: 0; background-size: cover; background-position: center; background-color: var(--pb-surface-3); }
.op-bacase .ba .after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.op-bacase .ba .lbl { position: absolute; top: 14px; font-family: var(--pb-font-mono); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; padding: 5px 12px; border-radius: 6px; text-transform: uppercase; color: #fff; z-index: 2; box-shadow: 0 2px 8px rgba(0,0,0,0.4); pointer-events: none; }
.op-bacase .ba .before .lbl { left: 14px; background: var(--pb-danger); border: 1px solid rgba(255,255,255,0.25); }
.op-bacase .ba .after .lbl { right: 14px; background: var(--pb-green); color: #fff; border: 1px solid rgba(0,0,0,0.18); }
.op-bacase .info { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2; color: #fff; pointer-events: none; }
.op-bacase .info h4 { font-family: var(--pb-font-display); font-weight: 700; font-size: 18px; margin: 0; color: #fff; letter-spacing: -0.01em; }
.op-bacase .info .meta { display: flex; gap: 12px; margin-top: 6px; font-size: 12px; color: rgba(255,255,255,0.85); }
.op-bacase .info .meta b { color: var(--pb-yellow); font-weight: 700; }
.op-bacase .divider { position: absolute; left: var(--pos, 50%); top: 0; bottom: 0; width: 2px; background: var(--pb-yellow); transform: translateX(-50%); z-index: 1; box-shadow: 0 0 12px rgba(255,221,0,0.5); pointer-events: none; }
.op-bacase .divider::before { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 32px; height: 32px; border-radius: 50%; background: var(--pb-yellow); border: 3px solid #fff; box-shadow: 0 0 0 1px var(--pb-yellow), 0 2px 10px rgba(0,0,0,0.3); }
.op-bacase .divider::after { content: "\2194"; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); font-family: var(--pb-font-display); font-size: 16px; font-weight: 900; color: var(--pb-ink); line-height: 1; }
@media (max-width: 1024px) { .op-bacases { grid-template-columns: repeat(2, 1fr); } .op-bacase.wide { grid-column: span 2; } .op-bacase.tall { grid-row: span 1; } }
@media (max-width: 600px)  { .op-bacases { grid-template-columns: 1fr; } .op-bacase.wide { grid-column: span 1; } }

/* USP6 — bez efektu podnoszenia */
.op-usp6:hover { transform: none; }

/* Forma końcowa — odstępy między polem telefonu a przyciskiem */
.op-bigform-right form { display: flex; flex-direction: column; gap: 14px; }

/* BLOG — karuzela kart (design kart jak na /blog/) */
.op-blog-nav { display: flex; align-items: center; gap: 8px; }
.op-blog-nav button { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--pb-line); background: #fff; cursor: pointer; font-size: 22px; line-height: 1; color: var(--pb-ink); display: grid; place-items: center; transition: 160ms; }
.op-blog-nav button:hover { border-color: var(--pb-green); color: var(--pb-green-700); }
.op-blog-carousel { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 8px; -ms-overflow-style: none; scrollbar-width: none; }
.op-blog-carousel::-webkit-scrollbar { display: none; }
.op-blog-slide { flex: 0 0 340px; max-width: 340px; scroll-snap-align: start; }
@media (max-width: 600px) { .op-blog-slide { flex-basis: 82%; max-width: 82%; } }
/* karta bloga (kopia z blog.css) */
.bg-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--pb-line-soft); border-radius: var(--pb-r-xl); overflow: hidden; transition: 240ms var(--pb-ease-out); text-decoration: none; color: inherit; }
.bg-card:hover { border-color: var(--pb-green); box-shadow: var(--pb-shadow-md); transform: translateY(-2px); }
.bg-card-img { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: repeating-linear-gradient(135deg, transparent 0 18px, rgba(255,255,255,0.07) 18px 19px), linear-gradient(135deg, #b8d8b0 0%, #50b848 100%); }
.bg-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 480ms var(--pb-ease-out); }
.bg-card:hover .bg-card-img img { transform: scale(1.04); }
.bg-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.bg-card-date { display: inline-flex; align-items: center; gap: 6px; font-family: var(--pb-font-mono); font-size: 11px; color: var(--pb-text-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.bg-card-date svg { width: 12px; height: 12px; stroke: var(--pb-green-700); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.bg-card h3 { font-family: var(--pb-font-display); font-weight: 800; font-size: 20px; line-height: 1.25; letter-spacing: -0.015em; color: var(--pb-ink); margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.bg-card p { font-size: 14.5px; line-height: 1.55; color: var(--pb-text); margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.bg-card-more { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; padding-top: 6px; font-family: var(--pb-font-display); font-weight: 700; font-size: 14px; color: var(--pb-green-700); }
.bg-card-more svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; transition: transform 200ms var(--pb-ease-out); }
.bg-card:hover .bg-card-more svg { transform: translateX(3px); }

/* =============================================================================
   PRAWKI v5 — kalkulator (krok 2/3/4) + prawa kolumna „myślenie" + blog
   ============================================================================= */

/* Krok 2: suwak po lewej (szeroki), pole liczbowe po prawej — w jednym rzędzie */
.op-area-row { display: flex; align-items: center; gap: 18px; margin-top: 14px; }
.op-area-row .op-slider { flex: 1 1 auto; min-width: 0; margin: 0; }
.op-area-num { flex: 0 0 auto; display: flex; align-items: center; gap: 6px; }
.op-area-num input { width: 92px; text-align: center; }
.op-area-num span { font-size: 13px; color: var(--pb-text-muted); }
@media (max-width: 600px) { .op-area-row { flex-direction: column; align-items: stretch; gap: 12px; } .op-area-num { justify-content: center; } }

/* Krok 3: karta przedmiotu to <div> (nie <button>) — licznik +/- bez rozjeżdżania siatki */
.op-pick { -webkit-tap-highlight-color: transparent; }
.op-pick:focus-visible { outline: 2px solid var(--pb-green); outline-offset: 2px; }

/* Prawa kolumna: cena ukryta, dopóki użytkownik nie dojdzie do ostatniego kroku */
.op-side-price { display: none; }
.op-side-card.is-revealed .op-side-price { display: flex; animation: op-price-in 360ms var(--pb-ease-out); }
.op-side-card.is-revealed .op-side-thinking { display: none; }
@keyframes op-price-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* „Myślenie" jak u Claude — fala unoszących się liter, jednolity kolor tekstu */
.op-side-thinking { display: flex; flex-direction: column; gap: 8px; min-height: 60px; justify-content: center; margin: 2px 0 4px; }
.op-think-text {
  font-family: var(--pb-font-display); font-weight: 800;
  font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.02em; line-height: 1.15;
  color: var(--pb-text-muted);
}
.op-think-ch { display: inline-block; will-change: transform; animation: op-wave 1.5s ease-in-out infinite; }
@keyframes op-wave { 0%, 55%, 100% { transform: translateY(0); } 25% { transform: translateY(-0.32em); } }

/* Mobile: kalkulator = jeden blok. Status „myślenia" nad kółkami 1–5,
   boczna karta (blok 2) ukryta, formularz przenoszony do kroku „Wynik". */
.op-calc-status { display: none; }
.op-calc-status .op-think-text { font-size: clamp(19px, 5.6vw, 26px); }
.op-result-lead-slot:empty { display: none; }
.op-result-lead-slot { width: 100%; align-self: stretch; text-align: left; }
@media (max-width: 760px) {
  .op-calc-status { display: block; padding: 18px 20px 2px; }
  .op-calc-status.is-last { display: none; }               /* krok „Wynik" — cena jest w treści kroku */
  .op-calc-side { display: none; }
  .op-result-photocta { display: none; }
  .op-result-lead-slot { margin-top: 20px; }
  /* licznik kroków 1/5 — pod przyciskami Wstecz/Dalej */
  .op-step-foot { flex-direction: column-reverse; align-items: stretch; gap: 12px; }
  .op-step-foot .nav { justify-content: space-between; }
  .op-step-foot .nav [data-next] { margin-left: auto; }   /* 1. krok: „Dalej" do prawej; dalej — Wstecz lewo / Dalej prawo */
  .op-step-foot .step-count { text-align: center; }
}
@media (prefers-reduced-motion: reduce) { .op-think-ch { animation: none; } }

/* Blog: bez podkreślania tekstu przy najechaniu (nadpisuje globalne a:hover) */
.op-blog-carousel .bg-card:hover,
.op-blog-carousel .bg-card:hover * { text-decoration: none; }

/* =============================================================================
   PRAWKI v6 — sekcja „Z czego składa się cena" (czynniki ceny, spokojny układ)
   ============================================================================= */
.op-price-factors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.op-pf-card {
  background: #fff; border: 1px solid var(--pb-line-soft); border-radius: var(--pb-r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color 200ms var(--pb-ease-out), box-shadow 200ms var(--pb-ease-out);
}
.op-pf-card:hover { border-color: rgba(80,184,72,.45); box-shadow: var(--pb-shadow-sm); }
.op-pf-img { aspect-ratio: 16 / 10; background: var(--pb-surface-3); overflow: hidden; }
.op-pf-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.op-pf-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.op-pf-card h3 { font-family: var(--pb-font-display); font-weight: 700; font-size: 17px; color: var(--pb-ink); margin: 0; letter-spacing: -0.01em; }
.op-pf-card p { font-size: 14px; line-height: 1.6; color: var(--pb-text-muted); margin: 0; }
@media (max-width: 900px) { .op-price-factors { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .op-price-factors { grid-template-columns: 1fr; } }

.op-price-note {
  margin-top: 18px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
  background: var(--pb-green-50); border: 1px solid rgba(80,184,72,.22);
  border-radius: var(--pb-r-lg); padding: 22px 26px;
}
.op-price-note .txt { display: flex; align-items: flex-start; gap: 14px; flex: 1 1 480px; }
.op-price-note .txt svg { width: 24px; height: 24px; flex: 0 0 24px; stroke: var(--pb-green-700); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-top: 1px; }
.op-price-note .txt p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--pb-text); }
.op-price-note .txt b { color: var(--pb-ink); font-weight: 700; }
.op-price-note .pb-btn { white-space: nowrap; flex: 0 0 auto; }

/* =============================================================================
   PRAWKI v7 — siatka bezpieczeństwa przed poziomym przewijaniem na mobile.
   overflow-x: clip (a NIE hidden) — nie psuje position:sticky prawej kolumny.
   ============================================================================= */
/* clip na html (realny scroller), body ORAZ wrapperze — inaczej clip tylko na body
   nie zatrzymuje poziomego przewijania na root-elemencie (jak w hubie Wyburzenia) */
html { overflow-x: clip; }
body { overflow-x: clip; width: 100%; }
#main-content { overflow-x: clip; max-width: 100vw; }
/* twardy limit szerokości dla nośników, które mimo wszystko mogłyby rozepchnąć layout */
.op-hero, .op-sec, .op-calc, .pb-cta-band { max-width: 100%; }
.op-hero img, .op-sec img, .op-calc img { max-width: 100%; height: auto; }
/* obraz w kalkulatorze (upload-podgląd) i pola formularzy nie wychodzą poza kontener */
.op-calc input, .op-bigform input, .op-form input { max-width: 100%; }
/* przyciski blokowe (.pb-btn ma white-space:nowrap) — pozwól zawijać tekst na wąskich ekranach,
   żeby długi napis „Wyślij — oddzwonimy w 1 h" nie wystawał poza kartę */
.op-form .pb-btn-block, .op-bigform-right .pb-btn-block, .op-calc-lead .pb-btn-block { white-space: normal; }

/* =============================================================================
   PRAWKI v8 — bardzo wąskie telefony (np. Galaxy Z Fold 5 złożony ~344 px):
   mniejsze zdjęcie hero, żeby sekcja się nie przycinała
   ============================================================================= */
@media (max-width: 400px) {
  .op-hero { padding: 16px 0 44px; }
  .op-hero h1 { font-size: 29px; }
  .pb-hero-image { height: 170px; margin-top: 16px; }
  .pb-hero-image .slide-label { font-size: 15px; }
  .pb-hero-image .slide-sub { font-size: 11px; }
  .pb-hero-image .price-tag { right: 0; bottom: 18px; font-size: 14px; padding: 8px 13px; }
  .op-hero-cta .pb-btn { width: 100%; justify-content: center; }
}
@media (max-width: 340px) {
  .pb-hero-image { height: 148px; }
}

/* Korekta: globalna siatka anty-overflow (.op-sec img { height:auto }) nadpisywała
   object-fit kart faktorów — przywróć wypełnienie na całą wysokość kafelka */
.op-pf-img img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================================================
   PRAWKI v9 — sekcja „Nasz sprzęt" (port z /rozbiorka-domow .pw-park, motyw jasny)
   ============================================================================= */
.op-park-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.op-park-card {
  background: #fff; border: 1px solid var(--pb-line-soft);
  border-radius: var(--pb-r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color 220ms var(--pb-ease-out), box-shadow 220ms var(--pb-ease-out);
}
.op-park-card:hover { border-color: var(--pb-green); box-shadow: var(--pb-shadow-sm); }
.op-park-img { aspect-ratio: 3 / 2; background: var(--pb-surface-2); border-bottom: 1px solid var(--pb-line-soft); overflow: hidden; }
.op-park-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.op-park-card .body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.op-park-card h4 { font-family: var(--pb-font-display); font-weight: 700; font-size: 16px; color: var(--pb-ink); margin: 0; letter-spacing: -0.01em; }
.op-park-card .specs { display: flex; flex-direction: column; gap: 6px; }
.op-park-card .spec { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 12px; font-family: var(--pb-font-mono); }
.op-park-card .spec .k { color: var(--pb-text-muted); flex-shrink: 0; }
.op-park-card .spec .v { color: var(--pb-text); font-weight: 600; text-align: right; min-width: 0; }
@media (max-width: 900px) { .op-park-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .op-park-grid { grid-template-columns: 1fr; } }

/* =============================================================================
   PRAWKI v10 — sekcja „Z czego składa się cena" (nowy design OpCost z Claude Design)
   ============================================================================= */
.op-pc-board { display: grid; grid-template-columns: 0.82fr 1fr; gap: 32px; align-items: start; }

/* ----- LEFT: galeria zdjęć (nie-sticky) ----- */
.op-pc-object { display: flex; flex-direction: column; gap: 10px; }
.op-pc-photos { display: flex; flex-direction: column; gap: 10px; }
.op-pc-photo { position: relative; overflow: hidden; border-radius: var(--pb-r-lg); cursor: zoom-in; }
.op-pc-photo.main { aspect-ratio: 16 / 11; }
.op-pc-stripe { position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, transparent 0 18px, rgba(255,255,255,.10) 18px 19px); }
.op-pc-city {
  position: absolute; left: 14px; top: 13px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.94); color: var(--pb-ink);
  font-family: var(--pb-font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 6px;
}
.op-pc-city svg { width: 13px; height: 13px; stroke: var(--pb-green-700); fill: none; stroke-width: 2.2; }
.op-pc-stamp { position: absolute; left: 16px; bottom: 13px; font-family: var(--pb-font-mono); font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,.88); text-transform: uppercase; text-shadow: 0 1px 3px rgba(0,0,0,.4); }
.op-pc-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.op-pc-thumbs .op-pc-photo { aspect-ratio: 3 / 2; }
.op-pc-thumbs .thb { position: absolute; left: 11px; bottom: 9px; font-family: var(--pb-font-mono); font-size: 9px; letter-spacing: 0.1em; color: rgba(255,255,255,.92); text-transform: uppercase; text-shadow: 0 1px 3px rgba(0,0,0,.4); }

.op-pc-summary h3 { font-family: var(--pb-font-display); font-weight: 700; font-size: 20px; color: var(--pb-ink); letter-spacing: -0.02em; margin: 0 0 14px; }
.op-pc-facts { display: flex; flex-direction: column; gap: 9px; }
.op-pc-facts span { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: var(--pb-text); font-weight: 500; }
.op-pc-facts svg { width: 17px; height: 17px; stroke: var(--pb-green-700); fill: none; stroke-width: 1.9; flex: 0 0 17px; }

.op-pc-price { background: var(--pb-ink); color: #fff; border-radius: var(--pb-r-lg); padding: 20px 22px 18px; display: flex; flex-direction: column; }
.op-pc-price .lbl { font-family: var(--pb-font-display); font-size: 16px; font-weight: 800; letter-spacing: -0.01em; color: #fff; }
.op-pc-price .amt { font-family: var(--pb-font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; line-height: 1; margin: 10px 0 0; }
.op-pc-price .amt b { font-size: 46px; }
.op-pc-price .net { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.6); margin-left: 5px; }
.op-pc-price .sub { font-size: 12.5px; color: rgba(255,255,255,.7); }
.op-pc-price .seal { display: flex; align-items: center; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.14); font-size: 12.5px; font-weight: 600; color: var(--pb-yellow); line-height: 1.35; }
.op-pc-price .seal svg { width: 16px; height: 16px; stroke: var(--pb-yellow); fill: none; stroke-width: 2.4; flex: 0 0 16px; }

/* ----- RIGHT: czynniki ceny ----- */
.op-pc-factors { background: #fff; border: 1px solid var(--pb-line-soft); border-radius: var(--pb-r-xl); box-shadow: var(--pb-shadow-sm); padding: 30px 32px 26px; }
.op-pc-factors-head h3 { font-family: var(--pb-font-display); font-weight: 800; font-size: 25px; color: var(--pb-ink); letter-spacing: -0.02em; margin: 0 0 7px; }
.op-pc-factors-head p { font-size: 14.5px; color: var(--pb-text-muted); line-height: 1.5; margin: 0; max-width: 52ch; }

.op-pc-list { list-style: none; padding: 0; margin: 0; }
/* nagłówek tabeli: Czynnik | Wpływ — wyrównany do kolumn wierszy */
.op-pc-thead { display: grid; grid-template-columns: 1fr 124px; gap: 16px; margin-top: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--pb-line); }
.op-pc-thead span { font-family: var(--pb-font-mono); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--pb-text-muted); font-weight: 700; }
.op-pc-thead span:last-child { padding-left: 16px; border-left: 1px solid var(--pb-line-soft); text-align: center; }
/* tabelka: kolumna 1 = ikona + tekst, kolumna 2 = wpływ (kreski) */
.op-pc-factor { display: grid; grid-template-columns: 44px 1fr 124px; gap: 16px; align-items: center; padding: 16px 0; border-top: 1px solid var(--pb-line-soft); }
.op-pc-factor:first-child { border-top: 0; padding-top: 4px; }
.op-pc-ic { flex: 0 0 44px; width: 44px; height: 44px; border-radius: var(--pb-r-md); background: var(--pb-green-50); color: var(--pb-green-700); display: grid; place-items: center; }
.op-pc-ic svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.9; }
.op-pc-factor.incl .op-pc-ic { background: var(--pb-green); color: #fff; }

.op-pc-text { min-width: 0; }
.op-pc-text b { display: block; font-family: var(--pb-font-display); font-weight: 700; font-size: 16px; color: var(--pb-ink); letter-spacing: -0.01em; margin-bottom: 3px; }
.op-pc-text .val { display: block; font-size: 13px; color: var(--pb-text); margin-top: 4px; }
.op-pc-text .note { display: block; font-size: 12.5px; color: var(--pb-text-muted); line-height: 1.45; margin-top: 5px; }

/* kolumna „wpływ" — pionowy separator jak w tabeli */
.op-pc-influence { align-self: stretch; display: flex; align-items: center; justify-content: center; min-width: 0; padding-left: 16px; border-left: 1px solid var(--pb-line-soft); }

.op-pc-meter { display: inline-flex; align-items: center; gap: 7px; flex: none; }
.op-pc-meter i { width: 8px; height: 20px; border-radius: 2px; background: var(--pb-line); display: block; }

/* ocena trudności zlecenia — N/10 + cienki pasek */
.op-pc-score { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; }
.op-pc-score .n { font-family: var(--pb-font-display); color: var(--pb-text-soft); font-size: 13px; font-weight: 700; }
.op-pc-score .n b { font-size: 22px; font-weight: 800; color: var(--pb-ink); letter-spacing: -0.02em; }
.op-pc-score .bar { width: 64px; height: 5px; border-radius: 3px; background: var(--pb-line); overflow: hidden; }
.op-pc-score .bar i { display: block; height: 100%; background: var(--pb-green); border-radius: 3px; }
.op-pc-meter.lv1 i:nth-child(1),
.op-pc-meter.lv2 i:nth-child(1), .op-pc-meter.lv2 i:nth-child(2),
.op-pc-meter.lv3 i:nth-child(1), .op-pc-meter.lv3 i:nth-child(2), .op-pc-meter.lv3 i:nth-child(3) { background: var(--pb-green); }
.op-pc-meter em { font-style: normal; font-family: var(--pb-font-mono); font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--pb-text-soft); white-space: nowrap; }

.op-pc-badge { display: inline-flex; align-items: center; gap: 5px; flex: none; background: var(--pb-green-100); color: var(--pb-green-700); font-family: var(--pb-font-body); font-weight: 700; font-size: 11.5px; padding: 5px 11px; border-radius: var(--pb-r-pill); white-space: nowrap; }
.op-pc-badge svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2.6; }
.op-pc-badge.muted { background: var(--pb-surface-2); color: var(--pb-text-muted); }

.op-pc-foot { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--pb-line-soft); display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.op-pc-foot p { font-size: 14px; color: var(--pb-text); margin: 0; max-width: 40ch; line-height: 1.5; }
.op-pc-foot p b { color: var(--pb-ink); }
.op-pc-foot .pb-btn { white-space: nowrap; }

@media (max-width: 920px) {
  .op-pc-board { grid-template-columns: 1fr; gap: 24px; }
  .op-pc-factors { padding: 24px 22px 22px; }
}
@media (max-width: 560px) {
  .op-pc-foot { justify-content: stretch; }
  .op-pc-foot .pb-btn { white-space: normal; text-align: center; width: 100%; }
}
@media (max-width: 480px) {
  .op-pc-thead { display: none; }
  .op-pc-factor { grid-template-columns: 38px 1fr; row-gap: 4px; }
  .op-pc-influence { grid-column: 2; justify-content: flex-start; border-left: 0; padding-left: 0; min-width: 0; padding-top: 2px; }
}

/* Lightbox dla zdjęć realizacji (nie na cały ekran) */
.op-pc-lightbox { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 6vh 6vw; background: rgba(15,17,20,.72); opacity: 0; transition: opacity .2s var(--pb-ease-out); }
.op-pc-lightbox.open { opacity: 1; }
.op-pc-lightbox-box { width: min(80vw, 820px); aspect-ratio: 16 / 11; max-height: 82vh; border-radius: var(--pb-r-lg); box-shadow: 0 24px 60px rgba(0,0,0,.5); background-size: cover !important; background-position: center !important; overflow: hidden; transform: scale(.94); transition: transform .2s var(--pb-ease-out); }
.op-pc-lightbox.open .op-pc-lightbox-box { transform: scale(1); }
.op-pc-lightbox-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.op-pc-lightbox-close { position: absolute; top: 22px; right: 26px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,.94); color: var(--pb-ink); font-size: 26px; line-height: 1; cursor: pointer; display: grid; place-items: center; box-shadow: var(--pb-shadow-md); }

/* Sekcja mapy „Cała Polska" — na tablecie i mobile nagłówek wyśrodkowany
   (treść poniżej też jest centrowana od 1024 px) */
@media (max-width: 1024px) {
  .op-sec.washed .op-sec-head { max-width: 100%; margin-left: auto; margin-right: auto; text-align: center; }
}

/* Workflow „Jak wygląda współpraca" — responsywność (design nie miał breakpointów) */
@media (max-width: 760px) {
  .op-wf-grid { grid-template-columns: 1fr; }
  .op-wf-foot { grid-template-columns: 1fr; gap: 20px; }
  .op-wf-foot-actions { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .op-wf-track { display: none; }
  .op-wf-foot { padding: 24px; }
  .op-wf-foot-actions { width: 100%; }
  .op-wf-foot-actions .pb-btn { white-space: normal; text-align: center; flex: 1 1 100%; }
}

/* =============================================================================
   PRAWKI mobile hero (hub Opróżnianie) — aktywne tylko z klasą .op-hero-mobile-v2
   Mobile (≤760px): kolejność H1 → tekst → zdjęcie → telefon → „Bezpłatna wycena";
   boczny formularz „Wyceń w 1 godzinę" ukryty; mniejszy odstęp nad H1.
   Desktop bez zmian. Aby przenieść na inne strony huba — dodać klasę do <section class="op-hero ...">.
   ============================================================================= */
@media (max-width: 760px) {
  .op-hero-mobile-v2 .op-hero-left { padding-top: 0; }
  .op-hero-mobile-v2 .op-hero-left h1 { margin-top: 6px; order: 1; }
  .op-hero-mobile-v2 .op-hero-sub { order: 2; }
  .op-hero-mobile-v2 .pb-hero-image { order: 3; }
  .op-hero-mobile-v2 .op-hero-cta { order: 4; flex-direction: column; align-items: stretch; }
  .op-hero-mobile-v2 .op-hero-cta .pb-btn-ghost { order: 1; }   /* telefon — pierwszy */
  .op-hero-mobile-v2 .op-hero-cta .pb-btn-primary { order: 2; } /* Bezpłatna wycena — drugi */
  .op-hero-mobile-v2 .op-form { display: none; }
}
