:root {
  /* canvas — DARK */
  --bg:        oklch(0.135 0.008 60);
  --bg-alt:    oklch(0.185 0.010 60);
  --ink:       oklch(0.97  0.004 60);
  --ink-2:     oklch(0.78  0.006 60);
  --ink-3:     oklch(0.58  0.008 60);
  --line:      oklch(0.28  0.012 60);
  --line-2:    oklch(0.22  0.010 60);

  /* "dark" sections — slightly differentiated panels for contrast */
  --night:     oklch(0.085 0.010 60);
  --night-2:   oklch(0.18  0.012 60);
  --night-ink: oklch(0.97  0.004 60);
  --night-mut: oklch(0.66  0.008 60);
  --night-line: oklch(0.24  0.012 60);

  /* accent — controlled by tweak */
  --accent:    oklch(0.56 0.18 25);   /* red */
  --accent-2:  oklch(0.62 0.18 25);
  --accent-ink: white;

  /* type */
  --sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
  --serif: 'Fraunces', Georgia, serif;

  /* sizing */
  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

/* ---------- helpers ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow .num { color: var(--accent); margin-right: 8px; }

h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.02em; line-height: 1.05; }
.display {
  font-family: var(--sans);
  font-size: clamp(40px, 6.4vw, 92px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.display em { font-family: var(--serif); font-style: italic; font-weight: 300; }

.h-section {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.h-section em { font-family: var(--serif); font-style: italic; font-weight: 300; }

p { margin: 0; color: var(--ink-2); }
.lede { font-size: clamp(17px, 1.6vw, 22px); line-height: 1.45; color: var(--ink-2); max-width: 60ch; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, color .15s, border-color .15s;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-on-dark {
  background: white;
  color: oklch(0.18 0.01 60);
  border-color: white;
}
.btn-on-dark:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translate(2px, -2px); }

.link-u {
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border-color .15s, color .15s;
}
.link-u:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-img { height: 44px; width: auto; display: block; }
.brand-logo {
  width: 38px; height: 38px;
  background: var(--night);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid; place-items: center;
  position: relative;
}
.brand-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
  line-height: 1;
}
.brand-mark::after {
  content: '';
  position: absolute;
  top: 8px; right: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px 1px var(--accent);
}
.brand-text {
  display: flex; flex-direction: column; line-height: 1; gap: 2px;
}
.brand-text strong { font-weight: 600; font-size: 14px; letter-spacing: -0.01em; }
.brand-text span { font-family: var(--mono); font-size: 10px; color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; }

.nav { display: flex; gap: 4px; align-items: center; }
.nav-item {
  position: relative;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  background: transparent; border: 0;
  border-radius: 6px;
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.nav-item:hover { background: var(--bg-alt); }
.nav-item.active { color: var(--accent); }
.nav-item.open .caret { transform: rotate(180deg); }
.nav-item .caret { width: 9px; height: 9px; opacity: 0.45; transition: transform .18s; }

.top-actions { display: flex; gap: 12px; align-items: center; }
.top-phone {
  font-family: var(--mono); font-size: 12px; color: var(--ink-2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.top-phone:hover { color: var(--ink); border-bottom-color: var(--accent); }

/* CTA in topbar — show full label on desktop, short label on mobile */
.btn-cta-short { display: none; }
.btn-cta { padding: 9px 16px; font-size: 13px; }

/* hamburger */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .25s, opacity .2s, top .25s;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 24px; }
.nav-toggle.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* mobile menu panel */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: calc(100vh - 64px);
  height: calc(100dvh - 64px);
  background: var(--bg);
  z-index: 9999;
  overflow-y: auto;
  padding: 8px 0 32px;
  animation: mobile-menu-in .22s ease-out;
}
@keyframes mobile-menu-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  font-family: inherit;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.mobile-nav-item.active { color: var(--accent); }
.mobile-caret { display: inline-flex; transition: transform .2s; }
.mobile-caret.open { transform: rotate(180deg); }
.mobile-caret svg { width: 14px; height: 14px; }

.mobile-sub {
  list-style: none;
  margin: 0;
  padding: 4px 0 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
}
.mobile-sub-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  width: 100%;
  padding: 14px 24px 14px 32px;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink-2);
  text-align: left;
  cursor: pointer;
}
.mobile-sub-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.06em;
  flex: 0 0 24px;
}
.mobile-sub-overview {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
  padding-bottom: 16px;
}

.mobile-cta-block {
  padding: 32px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-phone {
  font-family: var(--mono);
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.mobile-email {
  font-size: 14px;
  color: var(--ink-3);
  text-decoration: none;
  word-break: break-all;
}

/* ---------- mega menu ---------- */
.megamenu {
  position: absolute;
  left: 0; right: 0; top: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 48px -24px rgba(0,0,0,0.6);
  animation: fadeDown .18s ease both;
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.megamenu-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  padding: 40px var(--gutter) 48px;
  max-width: var(--max);
  margin: 0 auto;
}
.megamenu-side h3 { font-size: 28px; font-weight: 400; letter-spacing: -0.03em; line-height: 1.05; }
.megamenu-side h3 em { font-family: var(--serif); font-style: italic; font-weight: 300; }
.megamenu-side p { margin-top: 12px; font-size: 14px; color: var(--ink-3); max-width: 36ch; }
.megamenu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 32px; }
.mega-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 18px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  border-top: 1px solid var(--line-2);
  align-items: start;
  transition: background .15s;
}
.mega-card:hover { background: var(--bg-alt); }
.mega-card .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.05em;
  padding-top: 4px;
}
.mega-card h4 {
  font-size: 16px; font-weight: 500; letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.mega-card p { font-size: 13px; color: var(--ink-3); line-height: 1.4; }
.mega-card .more {
  display: inline-flex; gap: 6px; align-items: center;
  margin-top: 10px;
  font-size: 12px; color: var(--ink-2);
}
.mega-card:hover .more { color: var(--accent); }

/* simple dropdown variant */
.dropdown-simple {
  position: absolute;
  top: 100%; left: 0;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 24px 48px -24px rgba(0,0,0,0.6);
  padding: 8px;
  min-width: 360px;
  animation: fadeDown .18s ease both;
}
.dropdown-simple a {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none; color: var(--ink);
  font-size: 14px;
}
.dropdown-simple a:hover { background: var(--bg-alt); }
.dropdown-simple a .num {
  font-family: var(--mono); font-size: 11px; color: var(--accent);
  width: 18px; flex-shrink: 0;
}

/* ---------- hero ---------- */
.hero { padding: clamp(40px, 6vw, 96px) 0 clamp(40px, 5vw, 80px); }

/* hero variant A — editorial split */
.hero-a {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.hero-a .copy { padding-bottom: 24px; }
.hero-a .display { margin: 24px 0 0; }
.hero-a .lede { margin-top: 28px; }
.hero-a .ctas { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-a .img-wrap {
  aspect-ratio: 4/5;
  background: var(--night);
  overflow: hidden;
  position: relative;
}
.hero-a .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-a .img-meta {
  position: absolute;
  left: 16px; bottom: 16px;
  font-family: var(--mono); font-size: 10px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(0,0,0,0.4);
  padding: 6px 10px;
  backdrop-filter: blur(6px);
}

/* hero variant B — full bleed image */
.hero-b {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  color: white;
  margin: 0 calc(-1 * var(--gutter));
  padding: 0 var(--gutter) 48px;
  overflow: hidden;
}
.hero-b::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('assets/img-5.webp');
  background-size: cover;
  background-position: center;
  filter: brightness(0.55) saturate(1.05);
  z-index: -2;
}
.hero-b::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.55) 100%);
  z-index: -1;
}
.hero-b .copy { max-width: 880px; padding-bottom: 24px; }
.hero-b .display { color: white; }
.hero-b .lede { color: rgba(255,255,255,0.85); }
.hero-b .eyebrow { color: rgba(255,255,255,0.75); }
.hero-b .eyebrow .num { color: var(--accent); }
.hero-b .ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero-b .btn { background: white; border-color: white; color: oklch(0.18 0.01 60); }
.hero-b .btn:hover { background: var(--accent); border-color: var(--accent); color: white; }
.hero-b .btn-ghost { background: transparent; color: white; border-color: rgba(255,255,255,0.45); }
.hero-b .btn-ghost:hover { background: white; color: oklch(0.18 0.01 60); border-color: white; }
.hero-b-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
  z-index: 2;
}
.hero-b-strip > div {
  padding: 18px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.hero-b-strip > div:last-child { border-right: 0; }
.hero-b-strip .k { font-family: var(--mono); font-size: 10px; opacity: 0.7; letter-spacing: 0.08em; text-transform: uppercase; }
.hero-b-strip .v { font-size: 22px; font-weight: 400; letter-spacing: -0.02em; margin-top: 4px; }

/* hero variant C — index list */
.hero-c .display { margin: 32px 0 24px; max-width: 16ch; }
.hero-c .lede { margin-bottom: 64px; }
.hero-c .index {
  display: grid;
  border-top: 1px solid var(--line);
}
.hero-c .index-row {
  display: grid;
  grid-template-columns: 80px 1fr auto 240px;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  transition: padding .2s;
}
.hero-c .index-row:hover { padding-left: 12px; }
.hero-c .index-row .num { font-family: var(--mono); font-size: 12px; color: var(--accent); }
.hero-c .index-row .ttl { font-size: clamp(20px, 2.4vw, 30px); font-weight: 400; letter-spacing: -0.02em; }
.hero-c .index-row .arrow { font-size: 18px; opacity: 0.4; }
.hero-c .index-row:hover .arrow { opacity: 1; color: var(--accent); transform: translateX(4px); }
.hero-c .index-row .thumb {
  width: 240px; height: 100px; background: var(--bg-alt);
  overflow: hidden;
}
.hero-c .index-row .thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.hero-c .index-row:hover .thumb img { opacity: 1; }

/* ---------- section frame ---------- */
.section { padding: clamp(64px, 8vw, 128px) 0; }
.section-dark { background: var(--night); color: var(--night-ink); }
.section-dark .eyebrow { color: var(--night-mut); }
.section-dark p { color: var(--night-mut); }
.section-dark .h-section { color: var(--night-ink); }
.section-dark .btn { background: white; color: oklch(0.18 0.01 60); border-color: white; }
.section-dark .btn:hover { background: var(--accent); color: white; border-color: var(--accent); }
.section-dark .btn-ghost { background: transparent; color: white; border-color: rgba(255,255,255,0.3); }
.section-dark .btn-ghost:hover { background: white; color: oklch(0.18 0.01 60); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  margin-bottom: 64px;
  align-items: end;
}
.section-head .lede { max-width: 56ch; }

/* ---------- services grid (homepage) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--bg);
  padding: 40px;
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background .2s, color .2s;
}
/* Karta bez "num-big" (np. sekcja "Inne obszary") — bez pustego rzędu rozpychającego button */
.service-card:not(:has(.num-big)) {
  grid-template-rows: 1fr auto;
  min-height: 280px;
}
.service-card > * { position: relative; z-index: 2; }
.service-card:hover { color: white; }
.service-card .num-big {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.service-card h3 {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 24px 0 16px;
  max-width: 18ch;
}
.service-card p { font-size: 15px; color: var(--ink-2); max-width: 44ch; }
.service-card ul {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 8px;
}
.service-card li {
  display: flex; gap: 10px; align-items: baseline;
  font-size: 13.5px; color: var(--ink-2);
}
.service-card li::before {
  content: '';
  width: 5px; height: 1px; background: var(--ink-3);
  flex-shrink: 0; margin-top: 8px;
}
.service-card .foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.service-card .foot .label { font-size: 13px; font-weight: 500; }
.service-card .foot .arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: all .2s;
}
.service-card:hover .foot .arrow { background: white; color: var(--bg); border-color: white; transform: rotate(-45deg); }

.service-card .img-strip {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity .35s ease;
}
.service-card .img-strip::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.78) 100%);
}
.service-card:hover .img-strip { opacity: 1; }
.service-card .img-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .img-strip img { transform: scale(1.04); }
.service-card:hover p,
.service-card:hover li,
.service-card:hover .num-big,
.service-card:hover .foot .label { color: rgba(255,255,255,0.92); }
.service-card:hover li::before { background: rgba(255,255,255,0.6); }
.service-card:hover .foot { border-top-color: rgba(255,255,255,0.25); }
.service-card:hover .foot .arrow { background: white; color: var(--bg); border-color: white; transform: rotate(-45deg); }

/* ---------- "Dla kogo" / B2B section ---------- */
.audience {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.audience-img {
  aspect-ratio: 5/6;
  background: var(--night);
  overflow: hidden;
}
.audience-img img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05); }
.audience-list {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px;
}
.audience-list li {
  display: flex; gap: 12px; align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
}
.audience-list li .num { font-family: var(--mono); font-size: 11px; color: var(--accent); }

/* ---------- process ---------- */
.process-rows { border-top: 1px solid var(--night-line); }
.process-row {
  display: grid;
  grid-template-columns: 80px 280px 1fr 80px;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--night-line);
  align-items: start;
}
.process-row .num { font-family: var(--mono); font-size: 12px; color: var(--accent); padding-top: 6px; }
.process-row h3 { font-size: 26px; font-weight: 400; letter-spacing: -0.02em; }
.process-row p { font-size: 15px; max-width: 56ch; }
.process-row .when { font-family: var(--mono); font-size: 11px; color: var(--night-mut); text-align: right; }

/* ---------- why-us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.why-card {
  background: var(--bg);
  padding: 36px 32px 40px;
  display: flex; flex-direction: column;
  min-height: 260px;
}
.why-card .num { font-family: var(--mono); font-size: 11px; color: var(--accent); letter-spacing: 0.08em; }
.why-card h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.02em; margin: 24px 0 12px; }
.why-card p { font-size: 14.5px; color: var(--ink-2); flex: 1; }

/* ---------- realizacje strip ---------- */
.realizacje-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--line);
  border: 1px solid var(--line);
}
.real-card {
  background: var(--bg);
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
}
.real-card .ph {
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  overflow: hidden;
}
.real-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.real-card:hover .ph img { transform: scale(1.04); }
.real-card .meta { padding: 24px 28px 28px; }
.real-card .tag { font-family: var(--mono); font-size: 10px; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; }
.real-card h4 { font-size: 19px; font-weight: 500; letter-spacing: -0.01em; margin: 12px 0 8px; }
.real-card p { font-size: 13px; color: var(--ink-3); }

/* ---------- FAQ ---------- */
.faq-row {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: start;
  cursor: pointer;
}
.faq-row:last-child { border-bottom: 1px solid var(--line); }
.faq-row .num { font-family: var(--mono); font-size: 11px; color: var(--accent); padding-top: 6px; }
.faq-row .q { font-size: 19px; font-weight: 500; letter-spacing: -0.01em; }
.faq-row .toggle {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: all .2s;
  font-size: 18px; line-height: 1;
}
.faq-row.open .toggle { background: var(--ink); color: var(--bg); border-color: var(--ink); transform: rotate(45deg); }
.faq-row .toggle { color: var(--ink); }
.faq-row .a {
  grid-column: 2 / 3;
  font-size: 15px; color: var(--ink-2);
  max-width: 76ch;
  margin-top: 16px;
  display: none;
}
.faq-row.open .a { display: block; }

/* ---------- CTA banner ---------- */
.cta-banner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}
.cta-banner h2 {
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.cta-banner h2 em { font-family: var(--serif); font-style: italic; font-weight: 300; }

/* ---------- form ---------- */
.form {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 0;
}
.form h3 { font-size: 22px; font-weight: 500; margin-bottom: 4px; }
.form p { font-size: 13px; color: var(--ink-3); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.full { grid-template-columns: 1fr; }
.field {
  display: flex; flex-direction: column; gap: 6px;
}
.field label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.field input, .field select, .field textarea {
  font: inherit;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--accent); }
.field textarea { min-height: 92px; }
.form .submit { margin-top: 20px; width: 100%; justify-content: center; }
.form-success {
  margin-top: 16px;
  padding: 14px;
  background: oklch(0.22 0.06 145);
  border: 1px solid oklch(0.40 0.10 145);
  font-size: 13px;
  color: oklch(0.85 0.10 145);
}

/* ---------- footer ---------- */
.footer {
  background: var(--night);
  color: var(--night-ink);
  padding: 96px 0 40px;
}
.footer .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 80px;
}
.footer h4 { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--night-mut); margin-bottom: 20px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { color: var(--night-ink); text-decoration: none; font-size: 14.5px; }
.footer a:hover { color: var(--accent); }
.footer .brand-text strong, .footer .brand-text span { color: var(--night-ink); }
.footer .blurb { font-size: 14.5px; color: var(--night-mut); max-width: 36ch; margin-top: 24px; }
.footer .bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--night-line);
  font-family: var(--mono); font-size: 11px; color: var(--night-mut);
  letter-spacing: 0.05em;
}

/* ---------- pages: oferta detail ---------- */
.page-hero { padding: 64px 0 48px; }
.crumb { display: flex; gap: 10px; align-items: center; font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; }
.crumb a { color: var(--ink-3); text-decoration: none; border-bottom: 1px solid transparent; }
.crumb a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  margin-top: 48px;
  align-items: start;
}
.detail-grid .img {
  aspect-ratio: 4/5;
  background: var(--night);
  overflow: hidden;
  position: sticky; top: 88px;
}
.detail-grid .img img { width: 100%; height: 100%; object-fit: cover; }
.detail-list {
  display: flex; flex-direction: column;
  margin: 32px 0 0;
}
.detail-list .item {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
}
.detail-list .item:last-child { border-bottom: 1px solid var(--line); }
.detail-list .num { font-family: var(--mono); font-size: 11px; color: var(--accent); padding-top: 4px; }
.detail-list h4 { font-size: 19px; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 10px; }
.detail-list p { font-size: 14.5px; color: var(--ink-2); max-width: 60ch; }

.specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 64px;
}
.specs > div {
  background: var(--bg);
  padding: 24px;
}
.specs .k { font-family: var(--mono); font-size: 10px; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; }
.specs .v { font-size: 22px; font-weight: 400; letter-spacing: -0.02em; margin-top: 6px; line-height: 1.2; }

/* ---------- realizacje page ---------- */
.real-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.real-grid .real-card { border: 1px solid var(--line); }
.real-filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 32px 0 48px; }
.real-filters button {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  cursor: pointer;
}
.real-filters button.active {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
}
.real-filters button { color: var(--ink-2); }

/* ---------- o firmie ---------- */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin: 64px 0;
}
.about-stats > div { background: var(--bg); padding: 32px; }
.about-stats .v { font-size: clamp(40px, 4vw, 56px); font-weight: 300; letter-spacing: -0.03em; line-height: 1; }
.about-stats .v em { font-family: var(--serif); font-style: italic; }
.about-stats .k { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 12px; }

.about-text {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  margin: 64px 0;
}
.about-text p { font-size: 16px; line-height: 1.55; max-width: 60ch; margin-bottom: 16px; }

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-block {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.contact-block .k { font-family: var(--mono); font-size: 10px; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.contact-block .v { font-size: 20px; font-weight: 400; letter-spacing: -0.01em; }
.contact-block .v a { text-decoration: none; color: inherit; border-bottom: 1px solid var(--line); }
.contact-block .v a:hover { border-bottom-color: var(--accent); color: var(--accent); }

/* ---------- case study ---------- */
.case-hero {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--line);
}
.case-hero .crumb { margin-bottom: 40px; }
.case-hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}
.case-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.case-meta {
  border-left: 1px solid var(--line);
  padding-left: 32px;
}
.case-meta-row {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.case-meta-row .k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.case-meta-row .v {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
}

.case-hero-img {
  padding: 0 0 24px;
}
.case-hero-img-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--line);
}
.case-hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-narrative { padding-top: 80px; padding-bottom: 80px; }
.case-narr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.case-narr-block .case-narr-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.case-narr-block h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.case-narr-block p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  text-wrap: pretty;
}

.case-scope { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.case-scope-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.case-scope-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.case-scope-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.case-scope-list .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.06em;
}
.case-scope-list .t {
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.case-gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--line);
}
.case-gallery-item.wide {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
}
.case-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-outcome {
  background: var(--ink);
  color: var(--bg);
  padding-top: 80px;
  padding-bottom: 80px;
}
.case-outcome .eyebrow { color: var(--accent); margin-bottom: 24px; }
.case-outcome-inner {
  max-width: 880px;
}
.case-outcome h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.2;
  text-wrap: balance;
  color: var(--bg);
}

.case-others-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}

/* ---------- floating contact button ---------- */
.contact-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18), 0 2px 6px rgba(0,0,0,0.12);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.contact-fab:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.22), 0 3px 8px rgba(0,0,0,0.14);
}
.contact-fab-icon { display: block; }
.contact-fab-label { white-space: nowrap; }

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  /* topbar tightening */
  .topbar-inner { height: 64px; }
  .brand-img { height: 52px; }
  .nav { display: none; }
  .top-phone { display: none; }
  .top-actions { gap: 8px; }
  .nav-toggle { display: block; }
  .mobile-menu { display: block; }
  /* swap CTA labels on small screens */
  .btn-cta-full { display: none; }
  .btn-cta-short { display: inline; }
  .btn-cta { padding: 9px 14px; font-size: 12.5px; }
  .btn-cta .arrow { width: 11px; height: 11px; }

  /* tighter wrap & section padding */
  .wrap { padding: 0 20px; }
  .section { padding: 56px 0; }
  .page-hero { padding: 48px 0 32px; }

  /* better mobile reading */
  body { font-size: 15px; }
  .display { font-size: clamp(34px, 9vw, 48px) !important; line-height: 1.06; }
  h1, h2, h3 { text-wrap: balance; }
  .lede { font-size: 16px; line-height: 1.55; }
  .h-section { font-size: clamp(26px, 6vw, 34px) !important; }
  .eyebrow { font-size: 11px; }

  /* layouts collapse to single column */
  .hero-a, .audience, .cta-banner, .about-text, .contact-grid, .detail-grid, .megamenu-inner { grid-template-columns: 1fr; }
  .services-grid, .why-grid { grid-template-columns: 1fr; }
  /* specs i about-stats (10+ lat itp.) — 2x2 zamiast 4 pod sobą, treść wyśrodkowana */
  .specs { grid-template-columns: repeat(2, 1fr); margin-top: 40px; }
  .specs > div { padding: 18px 14px; text-align: center; }
  .specs .v { font-size: 18px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); margin: 40px 0; }
  .about-stats > div { padding: 22px 14px; text-align: center; }
  .about-stats .v { font-size: clamp(32px, 9vw, 44px); }
  .about-stats .k { margin-top: 8px; }
  /* realizacje — 2 columns on mobile for compact cards */
  .realizacje-strip, .real-grid { grid-template-columns: repeat(2, 1fr); }

  /* detail page — kill sticky on mobile, image flows above text */
  .detail-grid .img {
    position: relative;
    top: auto;
    aspect-ratio: 16/9;
  }
  /* "Dla kogo" — kompaktowy układ mobilny: tekst pierwszy, obraz krajobrazowy pod nim */
  .audience { display: flex; flex-direction: column; gap: 28px; }
  .audience > .audience-img { order: 2; aspect-ratio: 16/10; max-height: 320px; }
  .audience-list {
    grid-template-columns: 1fr;
    margin-top: 20px;
    gap: 0;
  }
  .audience-list li {
    padding: 12px 0;
    font-size: 14px;
    gap: 10px;
  }
  .process-row { grid-template-columns: 1fr; gap: 8px; }
  .process-row .when { text-align: left; }
  .hero-c .index-row { grid-template-columns: 60px 1fr auto; }
  .hero-c .index-row .thumb { display: none; }
  /* footer mobile */
  .footer { padding: 48px 0 32px; }
  .footer .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
  }
  /* logo + blurb spans full width */
  .footer .grid > div:first-child {
    grid-column: 1 / -1;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--night-line);
  }
  .footer .grid > div:first-child .blurb {
    max-width: none;
    font-size: 13px;
    margin-top: 16px;
    line-height: 1.5;
  }
  .footer h4 { font-size: 10px; margin-bottom: 12px; }
  .footer a { font-size: 13px; }
  .footer ul { gap: 6px; }
  .footer .bottom {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    font-size: 10px;
    padding-top: 24px;
  }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .megamenu-grid { grid-template-columns: 1fr; }

  /* hero spacing tighter */
  .hero-a { gap: 32px; padding: 56px 0 48px; }
  .hero-a .ctas { margin-top: 24px; gap: 10px; }
  .hero-a .ctas .btn { width: 100%; justify-content: center; }
  .hero-b { padding: 64px 0; }
  .hero-c { padding: 48px 0 24px; }

  /* services grid card */
  .service-card { padding: 28px 24px; }
  .service-card h4 { font-size: 22px; }

  /* FAQ — mniej miejsca po lewej, ciaśniejsze rzędy */
  .faq-row { grid-template-columns: 24px 1fr 32px; gap: 10px; padding: 20px 0; }
  .faq-row .num { font-size: 10px; padding-top: 4px; }
  .faq-row .q { font-size: 16px; }
  .faq-row .a { font-size: 14px; margin-top: 12px; }
  .faq-row .toggle { width: 28px; height: 28px; font-size: 16px; }

  /* "Co dokładnie wykonujemy" — mniejszy lewy padding na mobile */
  .detail-list .item { grid-template-columns: 24px 1fr; gap: 10px; padding: 20px 0; }
  .detail-list .num { font-size: 10px; padding-top: 4px; }
  .detail-list h4 { font-size: 17px; }
  .detail-list p { font-size: 14px; }

  /* realizacje — compact cards in 2-col mobile grid */
  .real-card .meta { padding: 12px 14px 16px; }
  .real-card .tag { font-size: 9px; }
  .real-card h4 { font-size: 14px; margin: 6px 0 4px; }
  .real-card p { font-size: 11px; }
  .real-card .ph { aspect-ratio: 4/3; }
  .real-grid { gap: 12px; }
  .realizacje-strip { gap: 1px; }
  /* realizacje filters on mobile */
  .real-filters { margin: 20px 0 32px; gap: 6px; }
  .real-filters button { padding: 6px 12px; font-size: 12px; }

  /* CTA banner — make headline readable */
  .cta-banner { text-align: center; gap: 24px; }
  .cta-banner h2 { font-size: clamp(28px, 7vw, 40px) !important; }
  .cta-banner > div > p { text-align: center; }
  .cta-banner > div > div { justify-content: center; }

  /* contact form — full-width inputs */
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .contact-block .v { font-size: 17px; }

  /* ---- case-study mobile ---- */
  .case-hero { padding: 32px 0 24px; }
  .case-hero .crumb { margin-bottom: 20px; font-size: 10px; }
  .case-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  /* override inline clamp on title */
  .case-hero-grid .display { font-size: clamp(26px, 7vw, 38px) !important; }
  .case-hero-grid .lede { font-size: 15px; margin-top: 16px !important; }
  .case-tag { font-size: 10px; }

  /* meta — compact horizontal grid instead of tall stacked list */
  .case-meta {
    border-left: 0; padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .case-meta-row {
    padding: 10px 0;
    border-bottom: 1px solid var(--line-2);
  }
  .case-meta-row .k { font-size: 9px; margin-bottom: 3px; }
  .case-meta-row .v { font-size: 13px; }

  /* hero image tighter */
  .case-hero-img { padding: 0 0 16px; }
  .case-hero-img-frame { aspect-ratio: 16/10; }

  /* narrative */
  .case-narr-grid { grid-template-columns: 1fr; gap: 32px; }
  .case-narrative { padding: 40px 0; }
  .case-narr-block .case-narr-num { font-size: 10px; margin-bottom: 8px; }
  .case-narr-block h2 { font-size: 20px; margin-bottom: 12px; }
  .case-narr-block p { font-size: 15px; line-height: 1.55; }

  /* scope — heading + list in 1 col */
  .case-scope-grid { grid-template-columns: 1fr; gap: 24px; }
  .case-scope-grid .display { font-size: clamp(22px, 6vw, 32px) !important; }
  .case-scope-list { border-top: 1px solid var(--line); }
  .case-scope-list li {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .case-scope-list .num {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.08em;
    margin-bottom: 4px;
  }
  .case-scope-list .t { display: block; font-size: 15px; line-height: 1.5; }

  /* gallery */
  .case-gallery { grid-template-columns: 1fr; gap: 10px; }
  .case-gallery-item.wide { aspect-ratio: 16/10; }
  .case-gallery-section { padding-bottom: 0 !important; }

  /* outcome */
  .case-outcome { padding: 40px 0; }
  .case-outcome h2 { font-size: 20px !important; line-height: 1.35; }

  /* other projects heading */
  .case-others-head { grid-template-columns: 1fr; gap: 16px; }
  .case-others-head .display { font-size: clamp(22px, 6vw, 30px) !important; }
  .case-others-head .link-arrow { font-size: 14px; }

  /* mega menu inside (when accidentally visible) */
  .megamenu-inner { padding: 32px 0; gap: 24px; }
}

/* ============================================================
   Landing: Utrzymanie ruchu (kampania Google Ads)
   ============================================================ */

/* ---- Hero ---- */
.ur-hero { padding: 72px 0 40px; border-bottom: 1px solid var(--line); }
.ur-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.ur-hero-copy .display { max-width: 16ch; }
.ur-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.ur-btn-call { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.ur-btn-call:hover { background: var(--accent-2); border-color: var(--accent-2); color: var(--accent-ink); }
.ur-hero-phone {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
}
.ur-hero-phone:hover { color: var(--accent); border-color: var(--accent); }

.ur-hero-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.ur-badge { background: var(--bg); padding: 22px 20px; }
.ur-badge-num { font-family: var(--mono); font-size: 11px; color: var(--accent); letter-spacing: 0.08em; }
.ur-badge-t { font-size: 16px; font-weight: 500; letter-spacing: -0.01em; margin: 12px 0 6px; }
.ur-badge-d { font-size: 13px; color: var(--ink-3); line-height: 1.45; }

/* ---- Zakres usług ---- */
.ur-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 48px;
}
.ur-service {
  background: var(--bg);
  padding: 28px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
}
.ur-service .num { font-family: var(--mono); font-size: 11px; color: var(--accent); padding-top: 4px; letter-spacing: 0.08em; }
.ur-service h4 { font-size: 18px; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 8px; }
.ur-service p { font-size: 14px; color: var(--ink-2); line-height: 1.5; }

/* ---- Pasek CTA ---- */
.ur-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 36px;
  border: 1px solid var(--line);
  background: var(--bg-alt);
}
.ur-band h3 { font-size: clamp(20px, 2.4vw, 28px); font-weight: 400; letter-spacing: -0.02em; margin-top: 10px; }
.ur-band-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.ur-band-dark { background: var(--night); border-color: var(--night-line); }
.ur-band-dark h3 { color: var(--night-ink); }

/* ---- Szybka reakcja ---- */
.ur-react { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.ur-react-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ---- Dla kogo ---- */
.ur-audience {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 48px;
}
.ur-aud-card {
  background: var(--bg);
  padding: 28px 24px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.ur-aud-card .num { font-family: var(--mono); font-size: 11px; color: var(--accent); font-weight: 400; letter-spacing: 0.08em; }

/* ---- Wycena ---- */
.ur-pricing {
  margin-top: 56px;
  padding: 32px 36px;
  border-left: 2px solid var(--accent);
  background: var(--bg);
  border: 1px solid var(--line);
  border-left-width: 2px;
  border-left-color: var(--accent);
}
.ur-pricing p { font-size: clamp(17px, 2vw, 22px); color: var(--ink); font-weight: 400; letter-spacing: -0.01em; margin-top: 12px; max-width: 68ch; }

/* ---- Lokalizacja + mapa ---- */
.ur-loc { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.ur-loc-list { list-style: none; padding: 0; margin: 28px 0 0; }
.ur-loc-list li {
  display: flex; gap: 14px; align-items: baseline;
  padding: 16px 0; border-top: 1px solid var(--line);
  font-size: 17px; letter-spacing: -0.01em;
}
.ur-loc-list li:last-child { border-bottom: 1px solid var(--line); }
.ur-loc-list .num { font-family: var(--mono); font-size: 11px; color: var(--accent); }
.ur-map {
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-alt);
}
.ur-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.3) contrast(1.05); }
.ur-map-ph {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3);
}

/* ---- Kontakt / formularz ---- */
.ur-contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; margin-top: 48px; }
.ur-contact-info { display: flex; flex-direction: column; gap: 1px; background: var(--night-line); border: 1px solid var(--night-line); }
.ur-contact-item {
  background: var(--night);
  padding: 24px 28px;
  text-decoration: none;
  color: var(--night-ink);
  display: block;
  transition: background .15s;
}
.ur-contact-item:not(.static):hover { background: var(--night-2); }
.ur-contact-item .k { font-family: var(--mono); font-size: 10px; color: var(--night-mut); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.ur-contact-item .v { font-size: 19px; font-weight: 400; letter-spacing: -0.01em; word-break: break-word; }
.ur-contact-item:not(.static):hover .v { color: var(--accent); }

/* form extras — plik + zgoda */
.ur-file-btn {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 4px;
  padding: 12px 16px;
  border: 1px dashed var(--line);
  cursor: pointer;
  font-size: 13px;
  color: var(--ink-2);
  transition: border-color .15s, color .15s;
}
.ur-file-btn:hover { border-color: var(--accent); color: var(--ink); }
.ur-file-btn input { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.ur-consent {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 20px;
  font-size: 13px; color: var(--ink-2); line-height: 1.4;
  cursor: pointer;
}
.ur-consent input { margin-top: 2px; accent-color: var(--accent); width: 16px; height: 16px; flex-shrink: 0; }

/* ---- Sticky pasek CTA (mobile) ---- */
.mobile-cta-bar { display: none; }
.mcb-call, .mcb-form {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 52px;
  font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
  border: 0; text-decoration: none; border-radius: 0;
}
.mcb-call { background: var(--accent); color: #fff; }
.mcb-form { background: var(--ink); color: var(--bg); }

/* ---- responsive: landing ---- */
@media (max-width: 920px) {
  .ur-hero { padding: 40px 0 32px; }
  .ur-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .ur-hero-copy .display { max-width: none; }
  .ur-hero-ctas { margin-top: 24px; }
  .ur-hero-ctas .btn { flex: 1; justify-content: center; min-width: 0; }
  .ur-services, .ur-react, .ur-loc, .ur-contact-grid { grid-template-columns: 1fr; }
  .ur-services { margin-top: 32px; }
  .ur-audience { grid-template-columns: 1fr 1fr; }
  .ur-band { grid-template-columns: 1fr; gap: 20px; padding: 24px; text-align: left; }
  .ur-band-ctas .btn { flex: 1; justify-content: center; }
  .ur-react { gap: 24px; }
  .ur-pricing { padding: 24px; }
  .ur-loc-list li { font-size: 15px; }

  /* sticky bottom bar shows on mobile; keep footer clear of it */
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.28);
  }
  body:has(.mobile-cta-bar) .footer { padding-bottom: 88px; }
}

@media (max-width: 480px) {
  .ur-hero-badges { grid-template-columns: 1fr; }
  .ur-audience { grid-template-columns: 1fr; }
  .ur-service { padding: 20px; grid-template-columns: 32px 1fr; gap: 12px; }
  .ur-service h4 { font-size: 16px; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .topbar-inner { height: 60px; }
  .mobile-menu { height: calc(100vh - 60px); height: calc(100dvh - 60px); }
  .display { font-size: 34px !important; }
  .btn-cta-short { display: none; }   /* on the very smallest screens — only icon */
  .btn-cta { padding: 9px 11px; }
  .btn-cta::after { content: ''; }

  /* realizacje — 1 column on very small screens */
  .realizacje-strip, .real-grid { grid-template-columns: 1fr; }
  .real-card .meta { padding: 16px 18px 20px; }
  .real-card h4 { font-size: 16px; margin: 8px 0 6px; }
  .real-card p { font-size: 12px; }

  /* footer — stack on very small screens */
  .footer .grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .footer .grid > div:first-child { grid-column: 1 / -1; }
  .footer .grid > div:last-child { grid-column: 1 / -1; }

  /* case study — extra tight on small phones */
  .case-hero { padding: 24px 0 20px; }
  .case-meta { grid-template-columns: 1fr; }
  .case-meta-row .v { font-size: 14px; }
  .case-hero-grid .display { font-size: 24px !important; }
  .case-narr-block h2 { font-size: 18px; }
  .case-outcome h2 { font-size: 18px !important; }
}

