:root {
  --bg: #f7f9f8;
  --panel: #ffffff;
  --text: #07131a;
  --muted: #40546d;
  --soft: #edf3ef;
  --line: #dfe8e3;
  --line-strong: #cbd8d1;
  --green: #087b3a;
  --green-dark: #075f2f;
  --green-soft: #e8f3eb;
  --blue-text: #173e73;
  --shadow: 0 18px 48px rgba(21, 39, 32, .10);
  --shadow-soft: 0 8px 24px rgba(24, 40, 36, .08);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --max: 1420px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 0 95%, rgba(8,123,58,.09), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f7f9f8 58%, #fff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 14px 16px 0;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.86));
  backdrop-filter: blur(14px);
}
.topbar {
  max-width: var(--max);
  height: 76px;
  margin: 0 auto;
  padding: 0 28px;
  border: 1px solid rgba(10, 38, 25, .07);
  border-radius: 0 0 24px 24px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 24px rgba(31,45,39,.06);
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  margin-right: auto;
  text-decoration: none;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1;
  font-weight: 850;
  letter-spacing: -.04em;
  color: #0F172A;
  white-space: nowrap;
}
.brand-local,
.brand-tenant {
  color: #0F172A;
}
.brand-z {
  color: #16A34A;
}
.brand-domain {
  color: #6B7280;
  font: inherit;
  letter-spacing: inherit;
}
.nav-menu { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 42px); }
.nav-menu a {
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  color: #0d1418;
  font-weight: 650;
}
.nav-menu a:hover { color: var(--green); }
.login-button {
  min-height: 46px;
  padding: 0 18px;
  border: 1.5px solid var(--green);
  border-radius: 10px;
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 760;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  background: rgba(255,255,255,.75);
}
.login-button span { font-size: 24px; line-height: 0; transform: translateY(-1px); }

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 80px;
}
.hero {
  position: relative;
  min-height: 545px;
  display: grid;
  grid-template-columns: minmax(440px, 1fr) 320px minmax(430px, 1fr);
  align-items: center;
  gap: 26px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 52%;
  background:
    radial-gradient(circle at 6% 30%, rgba(8,123,58,.04), transparent 34%),
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.98) 63%, rgba(255,255,255,0) 100%);
  z-index: -1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 36%, rgba(255,255,255,.62) 58%, rgba(255,255,255,.12) 78%, rgba(255,255,255,0) 100%),
    radial-gradient(circle at 10% 18%, rgba(8,123,58,.045), transparent 28%);
  z-index: -1;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 54px 0 72px 8px;
}
h1 {
  margin: 0;
  max-width: 590px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.3vw, 76px);
  line-height: .99;
  letter-spacing: -.055em;
  font-weight: 700;
  color: #07131a;
}
h1 span { color: var(--green); }
.lead {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--blue-text);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.45;
  font-weight: 420;
}

.hero-note {
  max-width: 650px;
  margin: 24px 0 0;
  padding: 20px 22px;
  border: 1px solid rgba(203, 216, 209, .86);
  border-left: 5px solid var(--green);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}
.hero-note h2 {
  margin: 0 0 10px;
  max-width: none;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.15;
  letter-spacing: -.035em;
  color: #07131a;
}
.hero-note p {
  margin: 0;
  color: #24364b;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
}
.hero-note p + p { margin-top: 10px; }
.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.button {
  min-height: 66px;
  border-radius: 11px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 17px;
  font-weight: 780;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.button:hover { transform: translateY(-1px); }
.button span { font-size: 25px; line-height: 1; }
.button strong { margin-left: 6px; font-size: 30px; font-weight: 360; }
.primary {
  background: linear-gradient(180deg, #07934a, #08743a);
  color: #fff;
  box-shadow: 0 15px 34px rgba(8,123,58,.22);
}
.secondary {
  background: rgba(255,255,255,.86);
  border: 1.5px solid var(--green);
  color: var(--green-dark);
}
.offer-count-card {
  position: relative;
  z-index: 3;
  align-self: center;
  justify-self: center;
  width: 320px;
  min-height: 278px;
  padding: 30px 34px 34px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(226,235,231,.78);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.count-title {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
  color: var(--green-dark);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 860;
  letter-spacing: .01em;
}
.count-title span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(8,123,58,.08);
}
.count-number {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 108px;
  line-height: .82;
  letter-spacing: -.04em;
  color: var(--green);
  font-weight: 700;
}
.count-label {
  margin-top: 16px;
  font-size: 31px;
  line-height: 1.05;
  color: #11181b;
  letter-spacing: -.04em;
  font-weight: 450;
}
.hero-visual {
  position: absolute;
  top: 50px;
  right: -74px;
  width: min(760px, 54vw);
  height: 450px;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.40) 0%, rgba(255,255,255,0) 18%, rgba(255,255,255,0) 78%, rgba(255,255,255,.88) 100%),
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 70%, #fff 100%),
    url("hero-retail-final-v9.jpg") center center / cover no-repeat;
  opacity: .98;
}

.offers-panel {
  position: relative;
  z-index: 4;
  margin-top: -6px;
}
.filters {
  min-height: 104px;
  padding: 12px 18px;
  border-radius: 15px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(224,232,228,.86);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1.25fr 1.15fr 1.05fr 1.2fr auto;
  align-items: center;
}
.filter-item {
  position: relative;
  min-width: 0;
  min-height: 68px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--line-strong);
}
.filter-icon {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 36px;
  line-height: 1;
  font-weight: 300;
}
.filter-copy { min-width: 0; display: block; width: 100%; }
.filter-copy strong {
  display: block;
  margin-bottom: 4px;
  color: #0c1418;
  font-size: 16px;
  font-weight: 760;
}
.filter-copy input,
.filter-copy select {
  width: 100%;
  height: 30px;
  border: 0;
  outline: none;
  padding: 0;
  background: transparent;
  color: #263d63;
  font: inherit;
  font-size: 15px;
  font-weight: 450;
  appearance: none;
}
.filter-copy input::placeholder { color: #263d63; opacity: .92; }
.filter-tenant { border-right: 0; }
.search-button {
  min-height: 56px;
  padding: 0 26px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #07934a, #08743a);
  color: #fff;
  font-size: 16px;
  font-weight: 760;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(8,123,58,.20);
}
.search-button span { font-size: 32px; font-weight: 300; line-height: 0; }
.hidden-controls {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.listing-section {
  margin-top: 42px;
  padding: 34px 0 0;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: .22em;
}
h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: -.045em;
}
.result-counter { color: var(--muted); font-weight: 740; }
.result-counter span { color: var(--green); font-weight: 900; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-height: 430px;
}
.badges { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.badge {
  border: 1px solid #cfd9e6;
  background: #f3f7fd;
  color: #2d5f9f;
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.badge.good { background: var(--green-soft); color: var(--green-dark); border-color: #bcd9c6; }
.card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.1; letter-spacing: -.03em; }
.location { color: var(--muted); margin: 0 0 18px; }
.metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 8px 0 18px; }
.metric { background: #f7faf8; border: 1px solid #e2ece6; border-radius: 12px; padding: 12px; }
.metric span { display: block; color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.metric strong { display: block; margin-top: 5px; font-size: 18px; }
.details { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0 0 18px; }
.card-actions { margin-top: auto; display: flex; gap: 10px; align-items: center; justify-content: space-between; }
.source-link,
.table-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--green);
  background: #fff;
  color: var(--green-dark);
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 860;
}
.updated { color: var(--muted); font-size: 12px; }
.empty-state {
  text-align: center;
  padding: 46px;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--line);
  color: var(--muted);
  background: rgba(255,255,255,.72);
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.offers-table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
  font-size: 14px;
}
.offers-table th,
.offers-table td {
  padding: 14px 13px;
  border-bottom: 1px solid #e8efeb;
  text-align: left;
  vertical-align: top;
}
.offers-table th {
  background: #f6faf7;
  color: #26384f;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .055em;
}
.offers-table tr:last-child td { border-bottom: 0; }
.num,
.num-head { text-align: right; }
.sort-header {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  font: inherit;
  font-weight: 900;
  text-transform: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}
.sort-header::after { content: "↕"; margin-left: 6px; color: #8aa099; font-size: 11px; }
.sort-header[data-active="asc"]::after { content: "↑"; color: var(--green); }
.sort-header[data-active="desc"]::after { content: "↓"; color: var(--green); }
.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 24px 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.footer strong { color: var(--text); }
.footer p { margin: 8px 0 0; }
.footer a { color: var(--green-dark); font-weight: 760; text-decoration: none; }

@media (max-width: 1180px) {
  .topbar { gap: 18px; }
  .nav-menu { gap: 18px; }
  .hero { grid-template-columns: minmax(360px, 1fr) 300px; }
  .hero-visual { width: 58vw; right: -160px; opacity: .78; }
  .filters { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
  .filter-roi { border-top: 1px solid var(--line); }
  .filter-tenant { border-top: 1px solid var(--line); border-right: 1px solid var(--line-strong); }
  .search-button { margin: 12px 22px; grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .site-header { padding: 8px 8px 0; }
  .topbar { height: auto; min-height: 68px; padding: 16px; flex-wrap: wrap; border-radius: 0 0 18px 18px; }
  .brand { width: 100%; }
  .nav-menu { display: flex; width: 100%; justify-content: flex-start; gap: 24px; }
  main { padding: 0 14px 56px; }
  .hero { display: block; min-height: unset; padding-top: 14px; }
  .hero-copy { padding: 42px 0 26px; }
  .hero-note { padding: 18px 16px; }
  h1 { font-size: clamp(42px, 13vw, 64px); }
  .lead { font-size: 18px; }
  .hero-actions { gap: 12px; }
  .button { width: 100%; min-height: 58px; }
  .offer-count-card { width: 100%; min-height: 200px; margin: 16px 0 20px; }
  .count-number { font-size: 82px; }
  .count-label { font-size: 26px; }
  .hero-visual { position: relative; top: auto; right: auto; width: 100%; height: 260px; border-radius: 18px; overflow: hidden; margin-top: 10px; }
  .filters { grid-template-columns: 1fr; }
  .filter-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .filter-tenant { border-right: 0; }
  .cards { grid-template-columns: 1fr; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .footer { flex-direction: column; }
}


/* Legal pages, contact forms and newsletter */
.info-section,
.contact-section {
  margin-top: 56px;
}
.info-section > h2,
.contact-section h2 {
  max-width: 820px;
}
.info-grid,
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-card,
.site-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.info-card h3,
.site-form h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -.03em;
}
.info-card p,
.form-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.site-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.site-form label:not(.checkbox-row) {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14px;
  font-weight: 800;
  color: #26384f;
}
.site-form input[type="email"],
.site-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
.site-form textarea {
  min-height: 132px;
  resize: vertical;
}
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}
.checkbox-row input[type="checkbox"] {
  margin-top: 3px;
  min-width: 17px;
  min-height: 17px;
}
.checkbox-row a,
.form-note a,
.footer-links a,
.legal-document a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-button {
  min-height: 50px;
  border: 0;
  border-radius: 11px;
  background: linear-gradient(180deg, #07934a, #08743a);
  color: #fff;
  font: inherit;
  font-weight: 860;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(8,123,58,.18);
}
.form-button:hover { transform: translateY(-1px); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  max-width: 620px;
}
.footer-owner {
  font-size: 12px;
  line-height: 1.45;
}
.legal-main {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.legal-document {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: clamp(28px, 5vw, 54px);
}
.legal-document h1 {
  max-width: none;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -.055em;
}
.legal-document h2 {
  margin: 36px 0 12px;
  font-size: 24px;
}
.legal-document h3 {
  margin: 22px 0 10px;
  font-size: 18px;
}
.legal-document p,
.legal-document li {
  color: #24364b;
  line-height: 1.65;
}
.legal-document ol,
.legal-document ul {
  padding-left: 24px;
}
.legal-document table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 14px;
}
.legal-document th,
.legal-document td {
  border: 1px solid var(--line);
  padding: 10px;
  vertical-align: top;
  text-align: left;
}
.legal-document th {
  background: #f6faf7;
}
.legal-meta {
  margin: 10px 0 30px;
  color: var(--muted);
  font-weight: 700;
}

.about-actions {
  margin: 30px 0 10px;
}
.about-button {
  min-height: 56px;
  padding: 0 24px;
}

.thank-you-card {
  max-width: 760px;
  margin: 70px auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 54px);
  box-shadow: var(--shadow-soft);
}
.thank-you-card h1 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(34px, 5vw, 50px);
}
@media (max-width: 860px) {
  .info-grid,
  .form-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .legal-main { padding: 34px 14px 56px; }
}

/* PATCH 2026-06-08: exact CTA style for O nas.
   Purpose: a CTA link inside .legal-document must look exactly like the main offers CTA,
   not like a standard content link. */
.legal-document .hero-actions a.button.primary,
.legal-document .hero-actions a.button.primary:link,
.legal-document .hero-actions a.button.primary:visited,
.legal-document .hero-actions a.button.primary:hover,
.legal-document .hero-actions a.button.primary:focus,
.legal-document .hero-actions a.button.primary:active {
  min-height: 66px !important;
  border-radius: 11px !important;
  padding: 0 26px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  font-size: 17px !important;
  font-weight: 780 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-underline-offset: 0 !important;
  background: linear-gradient(180deg, #07934a, #08743a) !important;
  color: #fff !important;
  box-shadow: 0 15px 34px rgba(8,123,58,.22) !important;
}
.legal-document .hero-actions a.button.primary span,
.legal-document .hero-actions a.button.primary strong {
  color: #fff !important;
  text-decoration: none !important;
}
.legal-document .hero-actions a.button.primary span {
  font-size: 25px !important;
  line-height: 1 !important;
}
.legal-document .hero-actions a.button.primary strong {
  margin-left: 6px !important;
  font-size: 30px !important;
  font-weight: 360 !important;
}

/* PATCH 2026-06-08: Dla inwestorów page, ROI card and due diligence cards. */
.legal-note {
  border-left: 4px solid var(--green);
  background: #f6faf7;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 650;
}
.roi-card {
  margin: 20px 0 26px;
  padding: 24px 26px;
  border: 1px solid rgba(7,147,74,.26);
  border-radius: 20px;
  background: linear-gradient(180deg, #f8fbf8, #ffffff);
  box-shadow: 0 14px 30px rgba(9, 76, 43, .08);
}
.roi-card-title {
  margin: 0 0 18px !important;
  color: var(--green-dark) !important;
  font-size: 13px;
  line-height: 1.2 !important;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.roi-equation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 24px 20px;
  border: 1px solid #d7ead9;
  border-radius: 18px;
  background: #f8fbf8;
  color: #07131a;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}
.roi-equation-prefix {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  white-space: nowrap;
}
.roi-equation-symbol {
  font-size: clamp(20px, 2.1vw, 24px);
}
.roi-equation-equals {
  font-style: normal;
  font-size: clamp(22px, 2.4vw, 28px);
}
.roi-equation-fraction {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  flex: 1 1 620px;
  max-width: 720px;
  min-width: 0;
  text-align: center;
  line-height: 1.35;
}
.roi-equation-numerator,
.roi-equation-denominator {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
  color: #07131a;
  font-size: clamp(15px, 1.45vw, 19px);
  overflow-wrap: anywhere;
  hyphens: auto;
}
.roi-equation-numerator {
  padding-bottom: 9px;
  border-bottom: 2px solid #07131a;
}
.roi-equation-denominator {
  padding-top: 8px;
}
.due-diligence-list {
  margin: 18px 0 8px;
  padding-left: 1.25rem;
}
.due-diligence-list li {
  margin: 0 0 14px;
  padding-left: 4px;
  line-height: 1.75;
}
.due-diligence-list li::marker {
  color: var(--green);
  font-weight: 850;
}
.due-diligence-list strong {
  color: #07131a;
  font-weight: 850;
}
@media (max-width: 760px) {
  .roi-card { padding: 18px 16px; }
  .roi-equation {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 14px;
  }
  .roi-equation-fraction {
    flex-basis: auto;
    width: 100%;
    max-width: 100%;
  }
  .roi-equation-numerator,
  .roi-equation-denominator {
    font-size: 15px;
  }
}

/* HERO_BUTTON_RIGHT_FIX_20260611
   Zakres: wyłącznie sekcja hero i przycisk "Przeglądaj oferty".
   Fundament:
   - hero ma dwie kolumny;
   - prawa kolumna .hero-side zawiera grafikę, licznik i CTA;
   - CTA jest elementem prawej kolumny, wyrównanym do prawej krawędzi grafiki;
   - brak ujemnych przesunięć typu right:-XXpx i brak transformów "na oko".
*/
@media (min-width: 861px) {
  .site-header {
    padding: 14px 16px 0;
  }

  .topbar {
    max-width: var(--max);
    padding-left: 24px;
    padding-right: 24px;
  }

  .brand {
    transform: none;
  }

  main {
    max-width: var(--max);
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(480px, 640px) minmax(560px, 1fr);
    column-gap: 30px;
    align-items: start;
    min-height: 0;
    padding-top: 28px;
    padding-bottom: 34px;
    overflow: visible;
  }

  .hero-copy {
    grid-column: 1;
    position: relative;
    z-index: 2;
    padding: 0;
  }

  .hero-copy .hero-note {
    width: 100%;
    max-width: none;
    margin: 28px 0 0;
    padding: 24px 26px;
    border: 1px solid rgba(203, 216, 209, .86);
    border-radius: 18px;
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
  }

  .hero-copy .hero-note h2,
  .hero-copy .hero-note p {
    text-align: left;
  }

  .hero-side {
    grid-column: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    z-index: 1;
  }

  .hero-side .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 450px;
    z-index: 1;
  }

  .hero-side .offer-count-card {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    width: 236px;
    min-height: 160px;
    padding: 22px 18px 20px;
    text-align: right;
    border-radius: 18px;
  }

  .hero-side .count-title,
  .hero-side .count-number,
  .hero-side .count-label {
    text-align: right;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  .hero-side .count-title {
    display: block;
    margin-bottom: 12px;
    color: #11181b;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 820;
    letter-spacing: .015em;
  }

  .hero-side .count-title span {
    display: none;
  }

  .hero-side .count-number {
    display: block;
    font-size: 62px;
    line-height: .95;
    letter-spacing: -.045em;
    color: var(--green);
    font-weight: 800;
  }

  .hero-side .count-label {
    margin-top: 8px;
    font-size: 17px;
    line-height: 1.15;
    color: #11181b;
    letter-spacing: -.02em;
    font-weight: 500;
  }

  .hero-side .hero-actions {
    position: relative;
    right: auto;
    bottom: auto;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 22px;
    z-index: 2;
  }

  .hero-side .hero-actions .button.primary {
    width: 258px;
    min-width: 258px;
    min-height: 84px;
    padding: 0 28px;
    justify-content: flex-start;
    box-shadow: 0 15px 34px rgba(8,123,58,.22);
  }

  .hero-side .hero-actions .button.primary strong {
    margin-left: auto;
    font-size: 34px;
    font-weight: 360;
  }

  .hero-side .hero-actions .button.secondary {
    display: none;
  }
}

@media (min-width: 1181px) and (max-width: 1320px) {
  .hero {
    grid-template-columns: minmax(470px, 610px) minmax(520px, 1fr);
    column-gap: 24px;
  }

  .hero-side .offer-count-card {
    width: 224px;
    min-height: 154px;
    padding: 20px 16px 18px;
  }

  .hero-side .count-number {
    font-size: 58px;
  }

  .hero-side .count-label {
    font-size: 16px;
  }
}

@media (min-width: 861px) and (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(420px, 560px) minmax(420px, 1fr);
    column-gap: 20px;
    padding-top: 22px;
  }

  .hero-side .hero-visual {
    height: 420px;
  }

  .hero-copy .hero-note {
    padding: 22px;
  }

  .hero-side .offer-count-card {
    width: 218px;
  }

  .hero-side .hero-actions .button.primary {
    width: 258px;
    min-width: 258px;
    min-height: 76px;
  }
}

@media (max-width: 860px) {
  .brand {
    transform: none;
  }

  .hero-side {
    position: relative;
  }

  .hero-copy .hero-note {
    border-left: 1px solid rgba(203, 216, 209, .86);
  }

  .hero-side .count-title span {
    display: none;
  }
}

/* TABLE_HEADER_LOCATION_FILTERS_20260615
   Zakres: tylko dwa filtry lokalizacji w nagłówkach tabeli ofert:
   - Województwo
   - Miasto / miejscowość
   Cena i pozostałe kolumny pozostają przy dotychczasowym sortowaniu.
*/
.offers-table th {
  position: relative;
}

.table-filter {
  position: relative;
  display: inline-block;
}

.table-filter-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  font: inherit;
  font-weight: 900;
  text-transform: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 100%;
}

.table-filter-trigger strong {
  color: #8aa099;
  font-size: 12px;
  line-height: 1;
  transform: translateY(-1px);
}

.table-filter-trigger.is-active,
.table-filter-trigger[aria-expanded="true"] {
  color: var(--green);
}

.table-filter-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 14px);
  z-index: 30;
  width: min(260px, 72vw);
  max-height: 330px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid rgba(203, 216, 209, .95);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .14);
  text-transform: none;
  letter-spacing: normal;
}

.table-filter-option {
  appearance: none;
  border: 0;
  background: transparent;
  width: 100%;
  min-height: 38px;
  padding: 9px 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  text-align: left;
  color: #142033;
  font: 700 14px/1.25 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: pointer;
}

.table-filter-option span {
  width: 14px;
  color: var(--green);
  font-weight: 900;
}

.table-filter-option:hover,
.table-filter-option[aria-current="true"] {
  background: rgba(8, 123, 58, .08);
  color: var(--green);
}

/* HOME_HERO_TEXT_POINTS_AND_CONTACT_CLEAN_20260615
   Zakres: wyłącznie strona główna hero oraz usunięcie trzech kafelków z Kontakt.
   - hero: trzy punkty w boksie tekstowym, mniejsza typografia, CTA pod boksem w lewej kolumnie;
   - kontakt: brak dodatkowych stylów, usunięto tylko blok trzech kafelków w HTML.
*/
@media (min-width: 861px) {
  .hero-copy .hero-note-points {
    margin-top: 22px;
    padding: 22px 24px;
  }

  .hero-copy > .hero-actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
  }

  .hero-copy > .hero-actions .button.primary {
    width: 360px;
    max-width: 100%;
    min-height: 74px;
    padding: 0 26px;
    justify-content: flex-start;
  }

  .hero-copy > .hero-actions .button.primary strong {
    margin-left: auto;
  }
}

.hero-value-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-value-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hero-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin-top: 1px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  font-weight: 850;
  line-height: 1;
}

.hero-note .hero-value-list p {
  margin: 0;
  color: #24364b;
  font-size: clamp(14px, .92vw, 16px);
  line-height: 1.42;
}

.hero-note .hero-value-list strong {
  color: #07131a;
  font-weight: 850;
}

@media (max-width: 860px) {
  .hero-copy > .hero-actions {
    margin-top: 18px;
  }

  .hero-copy > .hero-actions .button.primary {
    width: 100%;
  }
}
