/* ============================================================
   DESIGN TOKENS (Figma — Azzura_draft)
   ============================================================ */
:root {
  --primary-100: #e0f1fe;
  --primary-200: #bae4fd;
  --primary-500: #0d91d7;
  --primary-600: #027dc7;
  --primary-800: #075485;
  --primary-900: #0c466e;
  --primary-950: #082d49;

  --secondary-300: #6cf3f4;
  --secondary-400: #28e4e8;
  --secondary-600: #0da0ad;

  --zinc-50:  #fafafa;
  --zinc-100: #f4f4f5;
  --zinc-200: #e4e4e7;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-600: #52525b;
  --zinc-700: #3f3f46;
  --zinc-800: #27272a;
  --zinc-900: #18181b;

  --bw-black: #1a1a1a;
  --bw-white: #ffffff;

  --font-heading: 'Manrope', sans-serif;
  --font-body:    'Inter', sans-serif;

  --container-max: 1440px;
  --container-pad: 60px;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  font-family: var(--font-body); color: var(--bw-white);
  background: var(--bw-black);
}
html { overflow-x: clip; }
body { width: 100%; min-width: 320px; max-width: 100vw; overflow-x: clip; }
img { display: block; max-width: 100%; height: auto; }
button, input { font-family: inherit; font-size: inherit; cursor: pointer; border: 0; outline: none; }
a { color: inherit; text-decoration: none; }

/* Container — wycentrowany content max 1440 wewnątrz każdej full-width sekcji */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Tokens utility */
.eyebrow {
  font-family: var(--font-body); font-weight: 600;
  font-size: 16px; line-height: 1.5; letter-spacing: 0.48px;
  color: var(--secondary-600);
  text-transform: uppercase;
}
.eyebrow--light { color: var(--secondary-300); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 24px;
  font-weight: 500; font-size: 16px; line-height: 1;
  color: var(--bw-white); white-space: nowrap;
}
.btn-primary { background: var(--primary-600); }
.btn-outline-dark  { background: var(--bw-black);  border: 0.7px solid var(--zinc-500); }
.btn-outline-light { background: transparent;       border: 0.7px solid var(--zinc-300); }
.btn-white { background: var(--bw-white); color: var(--bw-black); }
.btn-underline {
  height: 48px; padding: 0 24px;
  border-bottom: 0.7px solid var(--zinc-300);
  background: transparent; color: var(--bw-white);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 500; font-size: 16px;
}
.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 500;
  color: var(--primary-600);
}
.btn-link::after { content: "→"; font-size: 18px; }

/* ============================================================
   SECTION 1: HERO (Frame 96) — pełna szerokość, content w container 1440
   ============================================================ */
.hero {
  width: 100%; background: var(--bw-black);
  position: relative; overflow: hidden;
}
.hero-inner {
  width: 100%; max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  height: 981px;
}
.hero-bg {
  position: absolute; width: 837px; height: 562px;
  right: 60px; top: 205px;
  mix-blend-mode: lighten; opacity: 0.3;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* When mega-menu open: kill blend mode + hide video to prevent text bleed-through repaints */
html.mega-open .hero-bg {
  mix-blend-mode: normal !important;
  visibility: hidden !important;
}
html.mega-open .s6-decor {
  visibility: hidden !important;
}

.topbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 188px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px;
  z-index: 950;
}
.logo {
  width: 108px; height: 132px;
  display: flex; align-items: center; justify-content: center;
}
.logo svg { width: 100%; height: 100%; }

.main-nav { display: flex; align-items: center; gap: 16px; }
.main-nav a {
  display: inline-flex; align-items: center; gap: 4px;
  height: 32px; padding: 4px 8px;
  font-size: 16px; line-height: 1.6; color: var(--bw-white);
}
.caret { display: inline-block; width: 18px; height: 18px; position: relative; }
.caret::before {
  content: ""; position: absolute; top: 4px; left: 5px;
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.lang-switch { display: flex; align-items: center; }
.lang-switch a {
  display: inline-flex; align-items: center; justify-content: center;
  height: 32px; padding: 4px 8px; font-size: 16px; line-height: 1.6;
  color: var(--zinc-400);
}
.lang-switch a.active { color: var(--bw-white); }
.lang-switch .sep { color: var(--zinc-400); font-size: 16px; }

.hero-copy {
  position: absolute; top: 270px; left: 172px; width: 670px; z-index: 2;
  display: flex; flex-direction: column; gap: 48px;
}
.hero-copy h1 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 48px; line-height: 1.2; letter-spacing: -0.96px;
  color: var(--bw-white);
}
.hero-copy .lead { width: 555px; color: var(--bw-white); font-size: 16px; line-height: 1.6; margin-top: 24px; }
.hero-copy .lead p + p { margin-top: 16px; }
.hero-copy .cta-row { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }

.brand-strip {
  position: absolute; top: 813px; left: 0; right: 0;
  padding: 60px 0 60px;
  border-top: 0.7px solid var(--zinc-600);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.brand-track {
  display: flex; align-items: center; gap: 80px;
  width: max-content;
  animation: brand-scroll 40s linear infinite;
  padding: 0 40px;
  will-change: transform;
  backface-visibility: hidden;
}
.brand-strip:hover .brand-track,
html.mega-open .brand-track { animation-play-state: paused; }
@keyframes brand-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-strip .brand-item {
  flex-shrink: 0;
  height: 48px;
  display: flex; align-items: center; gap: 12px;
  color: var(--bw-white);
  font-family: var(--font-heading); font-weight: 800; letter-spacing: 1px;
  font-size: 18px;
}
.brand-strip .brand-mark {
  width: 48px; height: 48px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
  align-content: center;
  padding: 6px;
}
.brand-strip .brand-mark span {
  display: block; width: 8px; height: 8px;
  background: var(--bw-white); border-radius: 50%;
}
.brand-strip .brand-mark span:nth-child(2),
.brand-strip .brand-mark span:nth-child(4),
.brand-strip .brand-mark span:nth-child(6),
.brand-strip .brand-mark span:nth-child(8) { opacity: 0.6; }
.brand-strip .brand-name { display: flex; align-items: baseline; gap: 6px; line-height: 1; }
.brand-strip .brand-name .top { font-weight: 800; font-size: 20px; letter-spacing: 0.5px; }
.brand-strip .brand-name .bottom { font-weight: 400; font-size: 20px; letter-spacing: 0.5px; color: var(--zinc-300); }

/* ============================================================
   SECTION 2: Frame 20 (białe) — 4 podsekcje
   ============================================================ */
.s2 {
  width: 100%; background: var(--zinc-100); color: var(--bw-black);
  padding: 80px 0;
}
.s2 > .container > * + * { margin-top: 100px; }

.section-head { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.section-head h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 42px; line-height: 1.2; letter-spacing: -0.84px;
}
.section-head .subtitle { font-size: 18px; line-height: 1.5; margin-top: 6px; }

/* 2a Czego szukasz */
.s2a { display: flex; flex-direction: column; gap: 60px; }
.persona-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  perspective: 1400px;
}
.persona-card {
  position: relative;
  aspect-ratio: 1/1.1;
  border-radius: 4px;
  background: transparent;
  display: block;
}
.persona-inner {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.4, .0, .2, 1);
  border-radius: 4px;
}
.persona-card:hover .persona-inner,
.persona-card:focus-visible .persona-inner { transform: rotateY(180deg); }

.persona-face {
  position: absolute; inset: 0;
  border-radius: 4px;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.persona-face.persona-front {
  background: var(--zinc-800);
}
.persona-front img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.persona-front::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}
.persona-front .label {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; text-align: center;
  color: var(--bw-white);
  font-family: var(--font-heading); font-weight: 600;
  font-size: 24px; line-height: 1.3; letter-spacing: -0.48px;
}
.persona-face.persona-back {
  transform: rotateY(180deg);
  background: var(--primary-950);  /* #082d49 — granatowy */
  color: var(--bw-white);
  padding: 32px;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between;
  gap: 16px;
}
.persona-back .persona-text {
  display: flex; flex-direction: column; gap: 12px;
  width: 100%;
  word-break: break-word;
}
.persona-back h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 24px; line-height: 1.3; letter-spacing: -0.48px;
  color: var(--bw-white);
  width: 100%;
}
.persona-back p {
  font-family: var(--font-body); font-weight: 400;
  font-size: 14px; line-height: 1.5; letter-spacing: 0;
  color: var(--bw-white);
  width: 100%;
}
.persona-back .persona-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 42px; padding: 0 24px;
  background: var(--primary-200);  /* #bae4fd — jasnoniebieski */
  color: var(--bw-black);          /* #1a1a1a */
  border-radius: 0;
  font-family: var(--font-body); font-weight: 400;
  font-size: 16px; line-height: 1.2; letter-spacing: 0;
  white-space: nowrap;
  transition: background .15s;
}
.persona-back .persona-cta svg {
  width: 24px; height: 24px;
  stroke: var(--bw-black);
  flex-shrink: 0;
}

/* 2b Nasze produkty */
.s2b { display: flex; flex-direction: column; gap: 60px; padding-bottom: 80px; }
.product-filter { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; justify-content: center;
  height: 28px; padding: 0 12px;
  font-size: 12px; line-height: 1; font-weight: 500;
  background: transparent; color: var(--zinc-700);
  border: 0.7px solid var(--zinc-300); border-radius: 4px;
  cursor: pointer; transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.chip:hover { border-color: var(--zinc-500); color: var(--zinc-900); }
.chip.active {
  background: var(--bw-black); color: var(--bw-white);
  border-color: var(--bw-black);
}
.product-empty {
  color: var(--zinc-600); font-size: 14px; padding: 24px 0; margin: 0; text-align: center;
}
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { background: var(--bw-white); display: flex; flex-direction: column; border-radius: 4px; overflow: hidden; transition: transform .25s ease; }
.product-card:hover { transform: translateY(-3px); }
.product-card .img-wrap {
  position: relative;
  width: 100%; height: 240px;
  background: linear-gradient(135deg, var(--zinc-300), var(--zinc-100));
  overflow: hidden;
}
.product-card .img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
/* Base image — widoczna domyślnie, znika na hover */
.product-card .img-wrap .img-base {
  opacity: 1;
  transition: opacity .4s ease, transform .6s ease;
  z-index: 1;
}
/* Hover image — niewidoczna domyślnie, pojawia się na hover */
.product-card .img-wrap .img-hover {
  opacity: 0;
  transition: opacity .4s ease, transform .6s ease;
  z-index: 2;
}
.product-card:hover .img-wrap .img-base { opacity: 0; transform: scale(1.04); }
.product-card:hover .img-wrap .img-hover { opacity: 1; transform: scale(1.04); }
.product-card .body { padding: 24px 32px 32px; display: flex; flex-direction: column; gap: 12px; }
.product-card .brand {
  height: 24px;
  display: flex; align-items: center; gap: 8px;
}
.product-card .brand img { height: 22px; width: auto; max-width: 140px; object-fit: contain; }
.product-card .brand-text {
  font-size: 12px; font-weight: 500; letter-spacing: 0.5px;
  color: var(--zinc-500);
}
.product-card h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 24px; line-height: 1.3; letter-spacing: -0.48px;
  color: var(--bw-black);
}
.product-card p { font-size: 14px; line-height: 1.5; color: var(--zinc-600); }
.product-card .card-tags { display: flex; gap: 8px; margin-top: 4px; flex-wrap: wrap; }
.product-card .card-tag {
  height: 24px; padding: 0 10px;
  display: inline-flex; align-items: center;
  background: var(--zinc-100); color: var(--zinc-700);
  font-size: 12px; font-weight: 500; line-height: 1.2;
  border-radius: 4px;
}

.s2b .catalog-cta { display: flex; justify-content: center; }

/* 2c Twój partner — białe tło full-width (na szarej s2) */
.s2c {
  display: flex; justify-content: space-between; align-items: flex-start;
  max-width: 1096px; margin-left: auto; margin-right: auto;
  position: relative;
  padding: 100px 60px 140px;
  isolation: isolate;
}
.s2c::before {
  content: ""; position: absolute; z-index: 0;
  inset: 0;
  left: 50%; transform: translateX(-50%);
  width: 100vw;
  background: var(--bw-white);
}
.s2c > * { position: relative; z-index: 1; }
/* Reset margin-top added by s2 container — s2c handles its own padding */
.s2 > .container > .s2c { margin-top: 0 !important; }
.s2 > .container > .s2c + * { margin-top: 0; }
.s2c .left { width: 536px; display: flex; flex-direction: column; gap: 12px; }
.s2c .left h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 42px; line-height: 1.2; letter-spacing: -0.84px;
}
.s2c .right { display: flex; flex-direction: column; gap: 40px; width: 426px; }
.usp { display: flex; gap: 20px; align-items: flex-start; }
.usp .icon {
  flex-shrink: 0; width: 64px; height: 64px;
  background: var(--primary-200);
  display: grid; place-items: center;
  color: var(--primary-600);
}
.usp .text { padding: 4px 0; width: 343px; display: flex; flex-direction: column; gap: 16px; }
.usp .text h4 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 24px; line-height: 1.3; letter-spacing: -0.48px;
  color: var(--primary-800);
}
.usp .text p { font-size: 16px; line-height: 1.6; color: var(--zinc-600); }

/* 2d Co mówią nasi klienci */
.s2d { display: flex; flex-direction: column; gap: 60px; padding-top: 60px; }
.testimonials-row { display: flex; gap: 20px; flex-wrap: wrap; }
/* Rzetelna Firma — zgodne z Figma 56:1328 */
.t-card-rzetelna {
  width: 315px; height: 315px;
  background: var(--zinc-50);
  padding: 32px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-radius: 4px; color: var(--bw-black);
}
.t-card-rzetelna h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 28px; line-height: 1.2; letter-spacing: -0.56px;
  color: var(--bw-black);
}
.t-card-rzetelna .rzetelna-img {
  width: 100%; aspect-ratio: 160/75;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.t-card-rzetelna .rzetelna-img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.t-card-rzetelna .btn-cert {
  align-self: flex-start;
  height: 42px; padding: 0 24px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0;
  border-bottom: 0.7px solid var(--zinc-300);
  background: transparent;
  font-family: var(--font-body); font-weight: 500;
  font-size: 14px; line-height: 1;
  color: var(--bw-black);
  text-decoration: none;
}
.t-card-rzetelna .btn-cert:hover { color: var(--primary-600); border-bottom-color: var(--primary-600); }
.t-card-rzetelna .btn-cert::after { content: none; }

/* Testimonial cards — zgodne z Figma 56:1333 */
.t-card {
  width: 315px; height: 315px;
  background: var(--zinc-50);
  padding: 28px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-radius: 4px;
}
.t-card .role-tag {
  align-self: flex-end;
  height: 24px; padding: 0 10px;
  display: inline-flex; align-items: center;
  background: var(--zinc-100); color: var(--zinc-700);
  font-family: var(--font-body); font-weight: 500;
  font-size: 12px; line-height: 1.2;
  border-radius: 4px;
}
.t-card .stars { display: flex; gap: 0; color: #f59e0b; height: 24px; }
.t-card .stars svg { width: 24px; height: 24px; flex-shrink: 0; }
.t-card .quote {
  font-family: var(--font-body); font-style: italic; font-weight: 400;
  font-size: 14px; line-height: 1.5;
  color: var(--bw-black);
  margin-top: 18px;
}
.t-card .author { display: flex; align-items: center; gap: 12px; }
.t-card .author .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: #737373;
  overflow: hidden; flex-shrink: 0;
}
.t-card .author .avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-card .author .meta { display: flex; flex-direction: column; gap: 2px; }
.t-card .author .name {
  font-family: var(--font-body); font-weight: 600;
  font-size: 14px; line-height: 1.5;
  color: var(--bw-black);
}
.t-card .author .role {
  font-family: var(--font-body); font-weight: 400;
  font-size: 12px; line-height: 1.5;
  color: var(--zinc-700);
}

/* ============================================================
   SECTION 3: CTA banner (Frame 52)
   ============================================================ */
.s3 {
  position: relative; width: 100%;
  padding: 80px 60px;
  display: flex; flex-direction: column; gap: 42px; align-items: center;
  overflow: hidden;
}
.s3-bg {
  position: absolute !important; inset: 0;
  z-index: 0 !important;
  background-image: url('../img/7fc06692c4c7d8c02c670f7fd92bd3caa1848b19.webp');
  background-size: cover; background-position: center;
}
.s3-bg::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(26, 26, 26, 0.4);
}
.s3 > *:not(.s3-bg) { position: relative; z-index: 1; }
.s3 .head { display: flex; flex-direction: column; gap: 18px; align-items: center; text-align: center; color: var(--bw-white); }
.s3 .head h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 42px; line-height: 1.2; letter-spacing: -0.84px;
  max-width: 536px;
}
.s3 .head p { font-size: 18px; line-height: 1.5; max-width: 536px; }
.s3 .cta-row { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   SECTION 4: Realizacje (Frame 43, DARK)
   ============================================================ */
.s4 {
  width: 100%; background: var(--bw-black); color: var(--bw-white);
  padding: 80px 0;
}
.s4 .container { display: flex; flex-direction: column; gap: 80px; align-items: center; }
.s4 .section-head { width: 100%; }
.s4 .section-head h2 { color: var(--bw-white); }
.s4 .section-head .subtitle { font-size: 24px; color: var(--bw-white); max-width: 884px; }
.s4 .grid-wrap { display: flex; flex-direction: column; gap: 60px; align-items: center; width: 100%; }
.realizations {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%;
}
.real-card {
  background: var(--zinc-800);
  border: 1px solid var(--zinc-700); border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 24px;
}
.real-card .img-wrap {
  width: 100%; height: 256px;
  background: linear-gradient(135deg, var(--zinc-700), var(--zinc-800));
  overflow: hidden;
}
.real-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.real-card .body {
  padding: 0 32px 32px;
  display: flex; flex-direction: column; gap: 24px;
  flex: 1; justify-content: space-between;
}
.real-card h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 24px; line-height: 1.3; letter-spacing: -0.48px;
}
.real-card .meta { font-size: 14px; line-height: 1.5; margin-top: 12px; }
.real-card .tags { display: flex; gap: 8px; flex-wrap: wrap; }
.real-card .tag {
  height: 24px; padding: 0 10px;
  display: inline-flex; align-items: center;
  background: var(--zinc-700); color: var(--zinc-300);
  font-size: 12px; font-weight: 500; line-height: 1.2;
  border-radius: 4px;
}

/* ============================================================
   SECTION 5: Materiały eksperckie (Frame 65, LIGHT GRAY)
   ============================================================ */
.s5 {
  width: 100%; background: var(--zinc-100); color: var(--bw-black);
  padding: 80px 0;
}
.s5 .wrap { display: flex; flex-direction: column; gap: 60px; }
.s5 .section-head h2 { color: var(--bw-black); }
.s5 .section-head .subtitle { font-size: 18px; color: var(--bw-black); }
.articles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.article-card {
  background: var(--zinc-50);
  border: 1px solid var(--zinc-300); border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 18px;
}
.article-card .img-wrap {
  position: relative;
  width: 100%; height: 256px;
  background: linear-gradient(135deg, var(--zinc-300), var(--zinc-200));
  overflow: hidden;
}
.article-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.article-card .article-tag {
  position: absolute; top: 16px; right: 16px;
  height: 24px; padding: 0 10px;
  display: inline-flex; align-items: center;
  background: var(--primary-200); color: var(--primary-950);
  font-size: 12px; font-weight: 500; line-height: 1.2;
  border-radius: 4px;
}
.article-tag.tag-architects   { background: #bae4fd; color: #082d49; }
.article-tag.tag-investors    { background: #e9d5ff; color: #581c87; }
.article-tag.tag-contractors  { background: #fef3c7; color: #78350f; }
.article-tag.tag-compare      { background: #e0e7ff; color: #312e81; }
.article-tag.tag-howto        { background: #fed7aa; color: #7c2d12; }
.article-tag.tag-norms        { background: #fee2e2; color: #7f1d1d; }
.article-tag.tag-realizations { background: #d1fae5; color: #064e3b; }
.article-tag.tag-trends       { background: #fce7f3; color: #9d174d; }
.article-tag.tag-guides       { background: #cffafe; color: #155e75; }
.article-tag.tag-casestudy    { background: #f3e8ff; color: #6b21a8; }
.article-card .body { padding: 0 32px 32px; display: flex; flex-direction: column; gap: 24px; flex: 1; }
.article-card h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 24px; line-height: 1.3; letter-spacing: -0.48px;
  color: var(--bw-black);
}
.article-card p { font-size: 14px; line-height: 1.5; color: var(--bw-black); margin-top: 12px; }
.article-card .meta-row { display: flex; gap: 12px; }
.article-card .meta-row .meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--zinc-600);
}
.article-card .meta-row .meta-item svg { width: 20px; height: 20px; }

/* ============================================================
   SECTION 6: Newsletter (Frame 66, BLUE GRADIENT)
   ============================================================ */
.s6 {
  width: 100%;
  background: linear-gradient(106deg, var(--primary-500) 33%, var(--primary-600) 100%);
  padding: 80px 64px;
  display: flex; justify-content: center;
  position: relative; overflow: hidden;
}
.s6-decor {
  position: absolute; right: 0; top: 50%;
  transform: translate(20px, -50%);
  width: 401px; height: 422px;
  pointer-events: none;
  mix-blend-mode: screen;
  overflow: hidden;
  border-radius: 4px;
}
.s6-decor video { width: 100%; height: 100%; object-fit: cover; display: block; }
.s6-decor svg { width: 100%; height: 100%; display: block; }
.s6 .inner { display: flex; flex-direction: column; gap: 40px; align-items: center; max-width: 700px; width: 100%; }
.s6 .head { display: flex; flex-direction: column; gap: 18px; text-align: center; color: var(--bw-white); }
.s6 .head h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 42px; line-height: 1.2; letter-spacing: -0.84px;
}
.s6 .head p { font-size: 18px; line-height: 1.5; }
.s6 form { display: flex; gap: 20px; align-items: center; width: 100%; }
.s6 input[type="email"] {
  flex: 1; height: 48px; padding: 0 16px;
  background: var(--primary-100); color: var(--primary-900);
  font-size: 14px; text-align: left;
}
.s6 input[type="email"]::placeholder { color: var(--primary-900); opacity: 1; }
.s6 button[type="submit"] {
  height: 48px; padding: 0 24px;
  background: var(--bw-white); color: var(--bw-black);
  font-size: 16px; font-weight: 500;
}
.s6 .role-label {
  width: 100%; text-align: left;
  color: var(--bw-white); font-size: 14px; font-weight: 500;
  margin-bottom: -28px; /* tighten gap to following role-tabs (parent has gap: 40px) */
}
.s6 .role-tabs { display: flex; gap: 12px; align-items: flex-start; flex-wrap: wrap; justify-content: flex-start; width: 100%; }
.s6 .role-tab {
  height: 36px; padding: 0 14px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; line-height: 1.5; border-radius: 4px;
  border: 0.7px solid var(--bw-white);
  color: var(--zinc-100); background: transparent;
  cursor: pointer; transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.s6 .role-tab:hover,
.s6 .role-tab.active { background: var(--primary-200); color: var(--primary-900); border-color: transparent; }

/* ============================================================
   FOOTER (Frame 93)
   ============================================================ */
.footer {
  width: 100%; background: var(--bw-black); color: var(--bw-white);
  padding: 20px 0;
}
.footer .container { display: flex; flex-direction: column; gap: 40px; }
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 40px 0; gap: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 44px; width: 315px; flex-shrink: 0; }
.footer-brand .logo svg { width: 108px; height: 132px; }
.footer-brand .tagline {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 24px; line-height: 1.3; letter-spacing: -0.48px;
  color: var(--zinc-400);
}
.footer-brand .tagline strong { color: var(--bw-white); font-weight: 600; }
.footer-brand .socials { display: flex; gap: 20px; }
.footer-brand .socials a {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  color: var(--bw-white);
}
.footer-brand .socials svg { width: 24px; height: 24px; }

.footer-cols { display: flex; gap: 20px; flex: 1; max-width: 873px; }
.footer-col { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 17px; }
.footer-col .col-title {
  padding: 4px 8px;
  font-size: 16px; font-weight: 600; line-height: 1.5; letter-spacing: 0.48px;
  text-transform: uppercase; color: var(--bw-white);
}
.footer-col .col-list { display: flex; flex-direction: column; gap: 2px; }
.footer-col .col-list a {
  height: 32px; padding: 4px 8px;
  display: flex; align-items: center;
  font-size: 14px; line-height: 1.5; color: var(--zinc-300);
}
.footer-col .contact { display: flex; flex-direction: column; gap: 12px; }
.footer-col .contact .lines a {
  height: 32px; padding: 4px 8px;
  display: flex; align-items: center;
  font-size: 14px; line-height: 1.5; color: var(--bw-white);
}
.footer-col .address {
  padding: 4px 8px;
  font-size: 12px; line-height: 1.5; color: var(--zinc-300);
}
.footer-col .legal-ids { display: flex; flex-direction: column; gap: 2px; }
.footer-col .legal-ids div {
  height: 24px; padding: 4px 8px;
  display: flex; align-items: center;
  font-size: 12px; line-height: 1.5; color: var(--zinc-300);
}

.footer-bottom {
  border-top: 0.7px solid var(--zinc-500);
  padding: 12px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-bottom .copy {
  height: 32px; padding: 4px 8px;
  display: flex; align-items: center;
  font-size: 12px; color: var(--zinc-500);
}
.footer-bottom .right { display: flex; gap: 12px; align-items: center; }
.footer-bottom .legal-links { display: flex; gap: 12px; }
.footer-bottom .legal-links a {
  height: 32px; padding: 4px 8px;
  display: flex; align-items: center;
  font-size: 12px; color: var(--zinc-500);
}
.footer-bottom .lang { display: flex; align-items: center; }
.footer-bottom .lang a {
  height: 32px; padding: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--zinc-400);
}
.footer-bottom .lang a.active { color: var(--bw-white); }
.footer-bottom .lang .sep { color: var(--zinc-400); font-size: 12px; }

/* ============================================================
   MEGA MENU (desktop) + HAMBURGER + MOBILE MENU
   ============================================================ */

/* Hamburger - hidden on desktop, shown on mobile */
.hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 0; cursor: pointer;
  position: relative; z-index: 1001;
}
.hamburger span {
  position: absolute;
  width: 24px; height: 2px;
  background: var(--bw-white);
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
  left: 10px;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }
.mobile-menu-open .hamburger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.mobile-menu-open .hamburger span:nth-child(2) { opacity: 0; }
.mobile-menu-open .hamburger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mega menu — dropdown shown under topbar on hover/click of "Produkty" */
.has-mega { position: relative; }
/* When menu open, lift .has-mega above backdrop so its hover bridge stays active */
html.mega-open .has-mega { z-index: 1101; }
/* Invisible "bridge" extending DOWN from Produkty link to TOP of mega-menu,
   so cursor moving from link to menu stays in hover state.
   Uses fixed position so it sits exactly in the viewport gap regardless of
   .has-mega element's box (which only spans the link itself) */
html.mega-open .has-mega::after {
  content: "";
  position: fixed;
  left: 0; right: 0;
  top: 0;
  height: 188px;        /* covers entire topbar area + reaches mega-menu top */
  z-index: 1099;        /* above backdrop (99), below menu (1100) */
  pointer-events: auto;
  /* background: rgba(255,0,0,0.15); — uncomment to debug */
}
.mega-menu {
  position: fixed;
  top: 188px;
  left: 0; right: 0;
  background: var(--zinc-800);
  padding: 32px 60px;
  display: none;
  z-index: 1100;
  isolation: isolate;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  /* Force GPU layer + opaque rendering — eliminates flicker / see-through */
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
  opacity: 1;
  transition: top .45s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Sub-pages with prod-topbar — topbar is 154px tall */
body:has(.prod-topbar) .mega-menu { top: 72px; }
/* Compact (scrolled) state — topbar collapses to 72px */
html.is-scrolled .mega-menu { top: 72px; }
@media (max-width: 768px) {
  html.is-scrolled .mega-menu { top: 60px; }
}
.mega-menu > .mega-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 40px;
}
html.mega-open .mega-menu { display: block; }
html.mega-open .has-mega .caret { transform: rotate(180deg); }
.caret { transition: transform 0.2s ease; }
html.mega-open { overflow: hidden; }
.mega-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.3);
  display: none; z-index: 99;
}
html.mega-open .mega-backdrop { display: block; }

.mega-cols {
  display: grid; grid-template-columns: 315px 315px 315px;
  gap: 20px;
}
.mega-col {
  display: flex; flex-direction: column; gap: 16px;
  padding: 0 20px;
}
.mega-col.boxed {
  background: var(--zinc-900);
  padding: 24px;
  gap: 16px;
  justify-content: center;
}
.mega-col-title {
  font-family: var(--font-body); font-weight: 600;
  font-size: 14px; line-height: 1.5; letter-spacing: 0.42px;
  color: var(--secondary-400); text-transform: uppercase;
}
.mega-menu .mega-col .list { display: flex; flex-direction: column; gap: 10px; }
.mega-menu .mega-col .list a {
  display: flex; justify-content: space-between; align-items: center;
  height: 32px !important; padding: 4px 8px !important; gap: 0;
  font-size: 16px; line-height: 1.6; color: var(--bw-white);
  white-space: nowrap;
}
.mega-menu .mega-col .list a .count { color: var(--zinc-400); }
.mega-menu .mega-col .list a:hover { color: var(--secondary-400); }

.mega-menu .mega-products { display: flex; flex-direction: column; gap: 16px; }
.mega-menu .mega-product {
  display: flex; align-items: center; gap: 18px;
  height: auto !important;
  padding: 8px !important;
  color: var(--bw-white);
}
.mega-menu .mega-product .thumb {
  width: 64px; height: 64px; flex-shrink: 0;
  background: var(--zinc-700);
  overflow: hidden;
  border-radius: 2px;
}
.mega-menu .mega-product .thumb img { width: 100%; height: 100%; object-fit: cover; }
.mega-menu .mega-product .info {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 14px; line-height: 1.5;
  white-space: nowrap;
}
.mega-menu .mega-product .info .name { font-weight: 600; font-size: 14px; }
.mega-menu .mega-product .info .desc { font-weight: 400; font-size: 12px; color: var(--zinc-300); }
.mega-menu .mega-product:hover .info .name { color: var(--secondary-400); }

.mega-bottom {
  display: flex; gap: 20px; justify-content: flex-end;
}
.mega-bottom .btn-underline { height: 42px; font-size: 14px; }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; top: 0; right: 0;
  width: 100%; max-width: 360px; height: 100vh;
  background: var(--bw-black);
  padding: 72px 24px 24px;
  z-index: 1000;
  overflow-y: auto;
  flex-direction: column; gap: 8px;
  display: none;
}
.mobile-menu-close {
  position: absolute; top: 14px; right: 16px;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 0; padding: 0; cursor: pointer;
  color: var(--bw-white);
  border-radius: 50%;
  transition: background .2s ease;
}
.mobile-menu-close:hover, .mobile-menu-close:focus-visible {
  background: var(--zinc-900);
  outline: none;
}
.mobile-menu-close svg { display: block; }
html.mobile-menu-open .mobile-menu { display: flex; }
.mobile-menu-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  display: none;
}
html.mobile-menu-open .mobile-menu-backdrop { display: block; }
.mobile-menu-open { overflow: hidden; }

.mobile-menu a {
  display: flex; align-items: center;
  padding: 14px 12px;
  font-size: 18px; font-weight: 500; color: var(--bw-white);
  border-bottom: 0.7px solid var(--zinc-800);
}
.mobile-menu a:active { background: var(--zinc-900); }
.mobile-menu .lang-mobile {
  margin-top: auto; padding-top: 24px;
  display: flex; gap: 12px; justify-content: center;
}
.mobile-menu .lang-mobile a {
  border: 0; padding: 8px 12px; font-size: 14px;
  color: var(--zinc-400);
}
.mobile-menu .lang-mobile a.active { color: var(--bw-white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  :root { --container-pad: 40px; }
  .hero-copy { left: 60px; width: auto; right: 60px; max-width: 670px; }
  .hero-copy .lead { width: auto; max-width: 555px; }
  .hero-bg { right: -100px; opacity: 0.25; }
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-row { justify-content: center; }
  .s2c { flex-direction: column; gap: 60px; max-width: 600px; }
  .s2c .left, .s2c .right { width: 100%; }
  .realizations { grid-template-columns: repeat(2, 1fr); }
  .articles { grid-template-columns: repeat(2, 1fr); }
  .footer-top { flex-direction: column; }
  .footer-cols { width: 100%; max-width: none; flex-wrap: wrap; }
  .footer-col { min-width: 200px; }
}

@media (max-width: 768px) {
  :root { --container-pad: 20px; }
  .hero-inner { height: auto; min-height: 700px; padding-bottom: 40px; }
  .topbar { padding: 12px 20px; height: 64px; gap: 16px; }
  .topbar .logo { width: 40px; height: 48px; }
  .topbar .logo svg, .topbar .logo img { width: 100%; height: 100%; object-fit: contain; }
  .hero .logo { transform: none; margin-right: 0; }
  html.is-scrolled .hero .logo { transform: none; margin-right: 0; }
  .main-nav { display: none; }
  .lang-switch { display: none; }
  .hamburger { display: flex; }
  .hero-bg { display: none; }
  .hero-copy {
    position: relative; left: 0; right: 0; top: 0;
    padding: 0 20px; width: 100%;
    margin-top: 84px;
  }
  .hero-copy h1 { font-size: 36px; }
  .hero-copy .lead { width: 100%; }
  .brand-strip {
    position: relative; left: 0; right: 0; top: 0;
    margin: 40px 0 0;
    padding: 30px 0 0;
  }

  .section-head h2 { font-size: 32px; }
  .s2 { padding: 60px 0; }
  .s2 > .container > * + * { margin-top: 60px; }
  .persona-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .realizations { grid-template-columns: 1fr; }
  .articles { grid-template-columns: 1fr; }
  .s2c .right { width: 100%; }
  .usp .text { width: auto; flex: 1; }
  .testimonials-row { gap: 16px; }
  .t-card, .t-card-rzetelna { width: 100%; }

  .s3 { padding: 60px 20px; }
  .s3 .head h2 { font-size: 32px; }

  .s4, .s5 { padding: 60px 0; }
  .s6 { padding: 60px 20px; }
  .s6 .head h2 { font-size: 32px; }
  .s6 form { flex-direction: column; align-items: stretch; }
  .s6-decor { display: none; }

  /* Brand strip — smaller logos on mobile */
  .brand-strip { padding: 30px 0 0; }
  .brand-item { font-size: 14px; height: 36px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-mark span { width: 6px; height: 6px; }

  /* Other 4 sections — proper padding */
  .s4, .s5 .container, .s7 .container { padding-left: 20px; padding-right: 20px; }
  .realizations, .articles { grid-template-columns: 1fr !important; }
  .product-grid { grid-template-columns: 1fr !important; }
  .testimonials-row { flex-direction: column; align-items: center; gap: 20px; }
}


/* ============================================================
   PAGE: DLA ARCHITEKTA
   ============================================================ */
:root {
  --secondary-500: #0dcfd6;
}

/* --- Hero (smaller than home, no brand strip) --- */
.arch-hero { width: 100%; background: var(--bw-black); position: relative; overflow: hidden; }
.arch-hero .hero-inner { width: 100%; max-width: var(--container-max); margin: 0 auto; position: relative; height: 652px; }
.arch-hero-bg {
  position: absolute; right: 60px; top: 188px;
  width: 700px; height: 380px;
  pointer-events: none;
  mix-blend-mode: lighten; opacity: 0.5;
  overflow: hidden;
  filter: grayscale(1);
}
.arch-hero-bg video { width: 100%; height: 100%; object-fit: cover; display: block; }
html.mega-open .arch-hero-bg { mix-blend-mode: normal !important; visibility: hidden !important; }
.arch-hero .hero-copy { top: 234px; }
.arch-hero h1 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 48px; line-height: 1.2; letter-spacing: -0.96px;
  color: var(--bw-white); width: 650px;
}
.arch-hero .lead { width: 555px; color: var(--bw-white); font-size: 16px; line-height: 1.6; margin-top: 24px; }

/* --- Znamy wyzwania (white, 2 columns) --- */
.arch-challenges { width: 100%; background: var(--bw-white); padding: 80px 0; color: var(--bw-black); }
.arch-challenges .container {
  display: flex; justify-content: space-between; align-items: flex-start;
  max-width: 1216px;  /* 1096 + padding */
}
.arch-challenges .left { width: 536px; display: flex; flex-direction: column; gap: 16px; }
.arch-challenges .left h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 42px; line-height: 1.2; letter-spacing: -0.84px;
}
.arch-challenges .left h2 .accent { color: var(--secondary-600); }
.arch-challenges .left p { font-size: 18px; line-height: 1.5; }
.arch-challenges .right { width: 426px; display: flex; flex-direction: column; gap: 40px; }
.arch-challenge-item { display: flex; gap: 20px; align-items: flex-start; }
.arch-challenge-num {
  flex-shrink: 0; width: 48px; height: 48px;
  background: var(--primary-600);
  display: grid; place-items: center;
  font-family: var(--font-body); font-weight: 700;
  font-size: 32px; line-height: 1; color: var(--bw-white); letter-spacing: -0.64px;
  border-radius: 4px;
}
.arch-challenge-text {
  display: flex; flex-direction: column; gap: 12px; padding: 4px 0;
  width: 343px;
}
.arch-challenge-text h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 24px; line-height: 1.3; letter-spacing: -0.48px;
  color: var(--primary-800);
}
.arch-challenge-text p { font-size: 14px; line-height: 1.5; color: var(--zinc-600); }

/* --- Jak wspieramy (light gray, 4 cards 2x2) --- */
.arch-support { width: 100%; background: var(--zinc-100); padding: 80px 0; }
.arch-support .container { max-width: 1216px; display: flex; flex-direction: column; gap: 40px; }
.arch-support h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 42px; line-height: 1.2; letter-spacing: -0.84px;
  color: var(--bw-black);
}
.arch-support h2 .accent { color: var(--secondary-600); }
.arch-support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.arch-support-card {
  background: var(--bw-white);
  padding: 32px;
  border-radius: 4px;
  display: flex; gap: 24px; align-items: flex-start;
}
.arch-support-icon { flex-shrink: 0; width: 54px; height: 54px; }
.arch-support-icon img { width: 100%; height: 100%; }
.arch-support-card .body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.arch-support-card .text { display: flex; flex-direction: column; gap: 12px; }
.arch-support-card h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 24px; line-height: 1.3; letter-spacing: -0.48px;
  color: var(--bw-black);
}
.arch-support-card p { font-size: 14px; line-height: 1.5; color: var(--bw-black); }
.arch-support-card .btn-underline { height: 42px; font-size: 14px; padding: 0 24px; color: var(--bw-black); }

/* --- Popularne wśród architektów (white, 3 product cards) --- */
.arch-products { width: 100%; background: var(--zinc-100); padding: 80px 0; }
.arch-products .container { display: flex; flex-direction: column; gap: 40px; align-items: center; max-width: 1440px; }
.arch-products .section-head { width: 100%; align-items: flex-start; }
.arch-products .section-head .eyebrow { color: var(--secondary-600); }
.arch-products .section-head h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 48px; line-height: 1.2; letter-spacing: -0.96px;
  color: var(--bw-black);
}
.arch-products .section-head .subtitle { font-size: 18px; color: var(--bw-black); }
.arch-products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%; max-width: 1318px; }
.arch-product-card {
  background: var(--bw-white);
  border: 1px solid var(--zinc-300);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 18px;
}
.arch-product-card .img-wrap { height: 256px; overflow: hidden; }
.arch-product-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.arch-product-card .body {
  padding: 0 32px 32px;
  display: flex; flex-direction: column; gap: 24px;
}
.arch-product-card .head { display: flex; flex-direction: column; gap: 10px; }
.arch-product-card .brand { height: 28px; display: flex; align-items: center; }
.arch-product-card .brand img { height: 22px; width: auto; object-fit: contain; }
.arch-product-card .brand-text { font-size: 14px; color: var(--zinc-600); font-weight: 400; }
.arch-product-card h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 24px; line-height: 1.3; letter-spacing: -0.48px;
  color: var(--bw-black);
}
.arch-product-card p { font-size: 14px; line-height: 1.5; color: var(--bw-black); }
.arch-product-card .tags { display: flex; gap: 8px; }
.arch-product-card .tag {
  background: var(--zinc-100);
  color: var(--zinc-700);
  font-size: 12px; height: 24px;
  padding: 0 10px; border-radius: 4px;
  display: inline-flex; align-items: center;
}

/* --- Single testimonial dark — zgodnie z Figma node 1:1150 --- */
.arch-testimonial {
  width: 100%;
  background: var(--bw-black);          /* #1a1a1a — parent inherit z Figmy */
  padding: 80px 60px;                    /* py-80 z Figmy */
  display: flex; align-items: center; justify-content: center;
}
.arch-testimonial .t-quote-card {
  width: 650px; max-width: 100%;        /* w-[650px] z Figmy */
  height: 220px;                         /* h-[220px] z Figmy */
  background: var(--zinc-800);          /* #27272a */
  border: 1px solid var(--zinc-700);    /* #3f3f46 */
  border-radius: 4px;                    /* rounded-[4px] */
  padding: 32px;                         /* p-[32px] */
  display: flex; flex-direction: column;
  gap: 42px;                             /* gap-[42px] z Figmy */
  align-items: stretch;
}
.arch-testimonial .quote-text {
  font-family: var(--font-body); font-style: italic; font-weight: 400;
  font-size: 16px; line-height: 1.5; letter-spacing: 0;   /* Cytat/l */
  color: var(--bw-white); text-align: center;
  margin: 0;
}
.arch-testimonial .author {
  display: flex; gap: 12px;             /* gap-[12px] z Figmy */
  align-items: center; justify-content: center;
}
.arch-testimonial .author .avatar {
  width: 42px; height: 42px;            /* size-[42px] z Figmy */
  border-radius: 50%; overflow: hidden;
  flex-shrink: 0; background: var(--zinc-700);
}
.arch-testimonial .author .avatar img { width: 100%; height: 100%; object-fit: cover; }
.arch-testimonial .author .meta {
  display: flex; flex-direction: column; gap: 2px;
  justify-content: center; text-align: left;
}
.arch-testimonial .author .name {
  font-family: var(--font-body); font-weight: 600;
  font-size: 14px; line-height: 1.5;    /* z Figmy */
  color: var(--bw-white);
}
.arch-testimonial .author .role {
  font-family: var(--font-body); font-weight: 400;
  font-size: 12px; line-height: 1.5;    /* Body/Regular/xs */
  color: var(--zinc-400);                /* #a1a1aa */
}

/* --- Blue CTA banner (smaller, 2 buttons including phone) --- */
.arch-cta {
  width: 100%;
  background: linear-gradient(106deg, var(--primary-500) 33%, var(--primary-600) 100%);
  padding: 80px 64px;
  display: flex; justify-content: center;
}
.arch-cta .inner { display: flex; flex-direction: column; gap: 40px; align-items: center; }
.arch-cta .head { display: flex; flex-direction: column; gap: 18px; text-align: center; color: var(--bw-white); align-items: center; }
.arch-cta .head h2 { font-family: var(--font-heading); font-weight: 600; font-size: 42px; line-height: 1.2; letter-spacing: -0.84px; white-space: nowrap; }
.arch-cta .head p { font-size: 18px; line-height: 1.5; max-width: 800px; white-space: nowrap; }
.arch-cta .buttons { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; justify-content: center; }
.arch-cta .btn-phone {
  background: var(--primary-600);
  border: 0.7px solid var(--zinc-200);
  display: inline-flex; align-items: center; gap: 8px;
  height: 48px; padding: 0 24px;
  color: var(--bw-white);
  font-weight: 500; font-size: 16px;
}
.arch-cta .btn-phone img { width: 24px; height: 24px; }

/* Responsive */
@media (max-width: 1200px) {
  .arch-challenges .container, .arch-support .container { flex-direction: column; gap: 40px; }
  .arch-challenges .left, .arch-challenges .right { width: 100%; max-width: 536px; }
  .arch-support-grid { grid-template-columns: 1fr; }
  .arch-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  /* Hero — text first, animation below */
  .arch-hero .hero-inner { height: auto; min-height: auto; padding: 16px 20px 40px; display: flex; flex-direction: column; }
  .arch-hero .hero-copy { position: static; top: auto; left: auto; right: auto; width: 100%; padding: 0; margin-top: 24px; gap: 24px; }
  .arch-hero h1 { font-size: 32px; width: 100%; line-height: 1.15; }
  .arch-hero .lead, .arch-hero .hero-copy .lead { width: 100%; max-width: 100%; }
  .arch-hero-bg {
    position: relative !important;
    top: auto !important; right: auto !important; left: auto !important;
    width: 100% !important; height: 220px !important;
    margin-top: 32px;
    mix-blend-mode: normal !important;
    opacity: 1 !important;
    filter: none !important;
    visibility: visible !important;
    order: 99;
  }
  .arch-hero-bg video { width: 100%; height: 100%; object-fit: cover; }
  .arch-hero .cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .arch-hero .cta-row .btn { width: 100%; justify-content: center; }

  .arch-challenges, .arch-support, .arch-products, .arch-testimonial, .arch-cta { padding: 60px 0; }
  .arch-challenges .left h2, .arch-support h2 { font-size: 32px; }
  .arch-products .section-head h2 { font-size: 32px; }
  .arch-products-grid { grid-template-columns: 1fr; }
  .arch-testimonial { padding: 60px 20px; }
  .arch-testimonial .t-quote-card { width: 100%; max-width: 100%; height: auto; min-height: 220px; }
  .arch-cta { padding: 60px 20px; }
  .arch-cta .head h2 { font-size: 32px; white-space: normal; }
  .arch-cta .buttons { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; }
  .arch-cta .buttons .btn, .arch-cta .buttons .btn-phone { width: 100%; justify-content: center; }
}


/* ============================================================
   PAGE: DLA WYKONAWCY
   ============================================================ */

/* --- Hero (same structure as architekta) --- */
.wyk-hero { width: 100%; background: var(--bw-black); position: relative; overflow: hidden; }
.wyk-hero .hero-inner { width: 100%; max-width: var(--container-max); margin: 0 auto; position: relative; height: 652px; }
.wyk-hero-bg {
  position: absolute; right: 60px; top: 188px;
  width: 700px; height: 380px; overflow: hidden;
  pointer-events: none; mix-blend-mode: lighten; opacity: 0.5;
  filter: grayscale(1);
}
.wyk-hero-bg video { width: 100%; height: 100%; object-fit: cover; display: block; }
html.mega-open .wyk-hero-bg { mix-blend-mode: normal !important; visibility: hidden !important; }
.wyk-hero .hero-copy { top: 234px; }
.wyk-hero h1 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 48px; line-height: 1.2; letter-spacing: -0.96px;
  color: var(--bw-white); width: 650px;
}
.wyk-hero .lead { width: 555px; color: var(--bw-white); font-size: 16px; line-height: 1.6; margin-top: 24px; }

/* --- Frame 20 wrapper: Wyzwania + Jak wspieramy on LIGHT GRAY bg --- */
.wyk-content { width: 100%; background: var(--zinc-100); padding: 80px 0; color: var(--bw-black); }
.wyk-content .container { max-width: 1216px; display: flex; flex-direction: column; gap: 60px; }

/* Wyzwania (2 cols) — uses .arch-challenges item styles */
.wyk-challenges { display: flex; justify-content: space-between; align-items: flex-start; width: 100%; }
.wyk-challenges .left { width: 536px; display: flex; flex-direction: column; gap: 16px; }
.wyk-challenges .left h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 42px; line-height: 1.2; letter-spacing: -0.84px;
  color: var(--bw-black);
}
.wyk-challenges .left p { font-size: 18px; line-height: 1.5; color: var(--bw-black); }
.wyk-challenges .right { width: 426px; display: flex; flex-direction: column; gap: 40px; }

/* Jak wspieramy heading */
.wyk-support h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 42px; line-height: 1.2; letter-spacing: -0.84px;
  color: var(--bw-black);
}
.wyk-support h2 .accent { color: var(--secondary-600); }
.wyk-support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 48px; }

/* --- Sprawdzone na prawdziwych budowach (DARK section) --- */
.wyk-realizations { width: 100%; background: var(--bw-black); padding: 80px 0; }
.wyk-realizations .container { display: flex; flex-direction: column; gap: 80px; align-items: center; max-width: 1440px; }
.wyk-realizations .head { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.wyk-realizations .eyebrow { color: var(--secondary-300); }
.wyk-realizations h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 48px; line-height: 1.2; letter-spacing: -0.96px;
  color: var(--bw-white);
}
.wyk-realizations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; width: 100%; max-width: 1318px; }
.wyk-real-card {
  background: var(--zinc-800);
  border: 1px solid var(--zinc-700);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 24px;
  height: 443px;
}
.wyk-real-card .img-wrap { height: 256px; }
.wyk-real-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wyk-real-card .body {
  padding: 0 32px 32px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1; justify-content: space-between;
}
.wyk-real-card h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 24px; line-height: 1.3; letter-spacing: -0.48px;
  color: var(--bw-white);
}
.wyk-real-card .meta { font-size: 14px; line-height: 1.5; color: var(--bw-white); }
.wyk-real-card .meta-dot { letter-spacing: 0.14px; }
.wyk-real-card .tags { display: flex; gap: 8px; margin-top: 8px; }
.wyk-real-card .tag {
  height: 24px; padding: 0 10px;
  display: inline-flex; align-items: center;
  background: var(--zinc-700); color: var(--zinc-300);
  font-size: 12px; font-weight: 500; line-height: 1.2;
  border-radius: 4px;
}

/* --- Od zapytania do realizacji (light gray 4-step process) --- */
.wyk-process { width: 100%; background: var(--zinc-100); padding: 80px 0; }
.wyk-process .container { max-width: 1440px; display: flex; flex-direction: column; gap: 12px; }
.wyk-process h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 48px; line-height: 1.2; letter-spacing: -0.96px;
  color: var(--bw-black);
}
.wyk-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 60px 0; }
.wyk-process-step {
  padding: 32px;
  display: flex; flex-direction: column; gap: 24px; align-items: flex-start;
}
.wyk-process-num {
  width: 48px; height: 48px;
  background: var(--primary-600);
  display: grid; place-items: center;
  font-family: var(--font-body); font-weight: 700;
  font-size: 32px; line-height: 1;
  color: var(--bw-white); letter-spacing: -0.64px;
  border-radius: 4px;
}
.wyk-process-step h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 24px; line-height: 1.3; letter-spacing: -0.48px;
  color: var(--primary-800);
}
.wyk-process-step p { font-size: 14px; line-height: 1.5; color: var(--zinc-600); }

/* Responsive */
@media (max-width: 1200px) {
  .wyk-challenges { flex-direction: column; gap: 40px; }
  .wyk-challenges .left, .wyk-challenges .right { width: 100%; max-width: 536px; }
  .wyk-support-grid { grid-template-columns: 1fr; }
  .wyk-realizations-grid { grid-template-columns: repeat(2, 1fr); }
  .wyk-process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  /* Hero — text first, animation below */
  .wyk-hero .hero-inner { height: auto; min-height: auto; padding: 16px 20px 40px; display: flex; flex-direction: column; }
  .wyk-hero .hero-copy { position: static; top: auto; left: auto; right: auto; width: 100%; padding: 0; margin-top: 24px; gap: 24px; }
  .wyk-hero h1 { font-size: 32px; width: 100%; line-height: 1.15; }
  .wyk-hero .lead, .wyk-hero .hero-copy .lead { width: 100%; max-width: 100%; }
  .wyk-hero-bg {
    position: relative !important;
    top: auto !important; right: auto !important; left: auto !important;
    width: 100% !important; height: 220px !important;
    margin-top: 32px;
    mix-blend-mode: normal !important;
    opacity: 1 !important;
    filter: none !important;
    visibility: visible !important;
    order: 99;
  }
  .wyk-hero-bg video { width: 100%; height: 100%; object-fit: cover; }
  .wyk-hero .cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .wyk-hero .cta-row .btn { width: 100%; justify-content: center; }

  .wyk-content, .wyk-realizations, .wyk-process { padding: 60px 0; }
  .wyk-content > .container, .wyk-realizations > .container, .wyk-process > .container { padding: 0 20px; }
  .wyk-challenges .left h2, .wyk-support h2, .wyk-realizations h2, .wyk-process h2 { font-size: 32px; }
  .wyk-realizations-grid { grid-template-columns: 1fr; }
  .wyk-real-card { height: auto; }
  .wyk-process-grid { grid-template-columns: 1fr; padding: 40px 0; }
}


/* ============================================================
   PAGE: DLA DYSTRYBUTORA
   ============================================================ */

/* Hero — same pattern */
.dys-hero { width: 100%; background: var(--bw-black); position: relative; overflow: hidden; }
.dys-hero .hero-inner { width: 100%; max-width: var(--container-max); margin: 0 auto; position: relative; height: 682px; }
.dys-hero-bg {
  position: absolute; right: 60px; top: 188px;
  width: 700px; height: 380px; overflow: hidden;
  pointer-events: none; mix-blend-mode: lighten; opacity: 0.5;
  filter: grayscale(1);
}
.dys-hero-bg video { width: 100%; height: 100%; object-fit: cover; display: block; }
html.mega-open .dys-hero-bg { mix-blend-mode: normal !important; visibility: hidden !important; }
.dys-hero .hero-copy { top: 234px; }
.dys-hero h1 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 48px; line-height: 1.2; letter-spacing: -0.96px;
  color: var(--bw-white); width: 650px;
}
.dys-hero .lead { width: 555px; color: var(--bw-white); font-size: 16px; line-height: 1.6; margin-top: 24px; }
.dys-hero .extra-cta {
  /* zgodnie z Figma node 1:1894:
     - tylko border-bottom 0.7px solid #d4d4d8 (Zinc/300)
     - height 32px, padding 0 24px
     - Inter Medium 12px white (Button/s)
     - no border-radius */
  margin-top: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  height: 32px; padding: 0 24px;
  font-family: var(--font-body); font-weight: 500;
  font-size: 12px; line-height: 1; letter-spacing: 0;
  color: var(--bw-white);
  background: transparent;
  border: none;
  border-bottom: 0.7px solid var(--zinc-300);
  border-radius: 0;
  white-space: nowrap;
}

/* --- Main content wrapper (white + lots of sections) --- */
.dys-content { width: 100%; background: var(--zinc-100); padding: 80px 0; color: var(--bw-black); }
.dys-content .container { max-width: 1216px; display: flex; flex-direction: column; gap: 80px; }

/* Dlaczego warto (2 cols, 3 numbered) — reuses arch-challenge styles */
.dys-challenges { display: flex; justify-content: space-between; align-items: flex-start; width: 100%; }
.dys-challenges .left { width: 536px; display: flex; flex-direction: column; gap: 16px; }
.dys-challenges .left h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 42px; line-height: 1.2; letter-spacing: -0.84px;
  color: var(--bw-black);
}
.dys-challenges .left p { font-size: 18px; line-height: 1.5; color: var(--bw-black); }
.dys-challenges .right { width: 426px; display: flex; flex-direction: column; gap: 40px; }

/* Co oferujemy partnerom — 4 cards 2x2 with borders */
.dys-offer h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 42px; line-height: 1.2; letter-spacing: -0.84px;
  color: var(--bw-black);
}
.dys-offer h2 .accent { color: var(--secondary-600); }
.dys-offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 48px; }
.dys-offer-card {
  background: var(--bw-white);
  border: 0.7px solid var(--zinc-200);
  padding: 32px;
  border-radius: 4px;
  display: flex; gap: 24px; align-items: flex-start;
}
.dys-offer-icon { flex-shrink: 0; width: 54px; height: 54px; }
.dys-offer-icon img { width: 100%; height: 100%; }
.dys-offer-card .body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 12px; }
.dys-offer-card h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 24px; line-height: 1.3; letter-spacing: -0.48px;
  color: var(--bw-black);
}
.dys-offer-card p { font-size: 14px; line-height: 1.5; color: var(--bw-black); }

/* Zostań partnerem — 2 col with form */
.dys-form { display: flex; gap: 20px; align-items: flex-start; }
.dys-form .left { width: 426px; display: flex; flex-direction: column; gap: 18px; justify-content: center; padding-top: 60px; }
.dys-form .left h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 42px; line-height: 1.2; letter-spacing: -0.84px;
  color: var(--bw-black);
}
.dys-form .left h2 .accent { color: var(--secondary-600); }
.dys-form .left p { font-size: 16px; line-height: 1.6; color: var(--bw-black); }
.dys-form form {
  background: var(--bw-white);
  padding: 42px;
  border-radius: 4px;
  border: 1px solid var(--zinc-200);
  width: 650px;
  display: flex; flex-direction: column; gap: 24px;
}
.dys-form .form-row { display: flex; gap: 20px; }
.dys-form .field { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.dys-form .field label { font-size: 14px; font-weight: 600; color: var(--bw-black); }
.dys-form .field input, .dys-form .field select, .dys-form .field textarea {
  height: 42px; padding: 0 12px;
  border: 1px solid var(--zinc-300); border-radius: 6px;
  background: var(--bw-white);
  font-size: 14px; font-family: var(--font-body); color: var(--bw-black);
  outline: none;
}
.dys-form .field textarea { height: 130px; padding: 10px 12px; resize: vertical; line-height: 1.5; }
.dys-form .field input::placeholder, .dys-form .field textarea::placeholder { color: var(--zinc-500); }
.dys-form .field-tags { display: flex; flex-direction: column; gap: 12px; }
.dys-form .field-tags label { font-size: 14px; font-weight: 500; color: var(--bw-black); }
.dys-form .tag-list { display: flex; flex-wrap: wrap; gap: 12px; }
.dys-form .tag-chip {
  height: 32px; padding: 0 12px;
  display: inline-flex; align-items: center;
  font-size: 14px; line-height: 1.2;
  border-radius: 4px;
  border: 0.7px solid var(--zinc-300);
  background: transparent; color: var(--zinc-600);
  cursor: pointer;
}
.dys-form .tag-chip.selected { background: var(--zinc-700); border-color: var(--zinc-700); color: var(--bw-white); }
.dys-form .tag-chip.disabled { background: var(--zinc-200); border-color: var(--zinc-200); color: var(--zinc-400); cursor: not-allowed; }
.dys-form button[type="submit"] {
  align-self: flex-start;
  background: var(--primary-600);
  color: var(--bw-white);
  height: 48px; padding: 0 24px;
  font-size: 16px; font-weight: 500;
  border: 0; cursor: pointer;
}

/* Materiały do pobrania — list of cards with file icon */
.dys-downloads h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 36px; line-height: 1.25; letter-spacing: -0.72px;
  color: var(--bw-black);
}
.dys-downloads .list {
  display: flex; flex-direction: column; gap: 20px; align-items: center;
  padding: 60px 0;
}
.dys-download-item {
  width: 722px;
  background: var(--bw-white);
  border: 1px solid var(--zinc-200);
  border-radius: 4px;
  padding: 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.dys-download-item .meta { display: flex; gap: 24px; align-items: flex-start; }
.dys-download-item .file-icon { width: 36px; height: 36px; flex-shrink: 0; }
.dys-download-item .file-icon img { width: 100%; height: 100%; }
.dys-download-item .text { display: flex; flex-direction: column; gap: 6px; }
.dys-download-item .name { font-weight: 600; font-size: 18px; line-height: 1.5; color: var(--bw-black); }
.dys-download-item .sub { font-size: 14px; line-height: 1.5; color: var(--zinc-600); }
.dys-download-item .btn-underline { height: 42px; font-size: 14px; padding: 0 24px; color: var(--bw-black); }

/* Responsive */
@media (max-width: 1200px) {
  .dys-challenges { flex-direction: column; gap: 40px; }
  .dys-challenges .left, .dys-challenges .right { width: 100%; max-width: 536px; }
  .dys-offer-grid { grid-template-columns: 1fr; }
  .dys-form { flex-direction: column; }
  .dys-form .left, .dys-form form { width: 100%; max-width: 650px; }
  .dys-download-item { width: 100%; max-width: 722px; }
}
@media (max-width: 768px) {
  /* Hero — text first, animation below */
  .dys-hero .hero-inner { height: auto; min-height: auto; padding: 16px 20px 40px; display: flex; flex-direction: column; }
  .dys-hero .hero-copy { position: static; top: auto; left: auto; right: auto; width: 100%; padding: 0; margin-top: 24px; gap: 24px; }
  .dys-hero h1 { font-size: 32px; width: 100%; line-height: 1.15; }
  .dys-hero .lead, .dys-hero .hero-copy .lead { width: 100%; max-width: 100%; }
  .dys-hero-bg {
    position: relative !important;
    top: auto !important; right: auto !important; left: auto !important;
    width: 100% !important; height: 220px !important;
    margin-top: 32px;
    mix-blend-mode: normal !important;
    opacity: 1 !important;
    filter: none !important;
    visibility: visible !important;
    order: 99;
  }
  .dys-hero-bg video { width: 100%; height: 100%; object-fit: cover; }
  .dys-hero .cta-row { flex-direction: column; align-items: stretch !important; gap: 12px !important; }
  .dys-hero .cta-row > div { flex-direction: column !important; align-items: stretch !important; width: 100%; gap: 12px !important; }
  .dys-hero .cta-row .btn { width: 100%; justify-content: center; }
  .dys-hero .extra-cta { align-self: flex-start; }

  .dys-content { padding: 60px 0; }
  .dys-content > .container { padding: 0 20px; gap: 60px; }
  .dys-challenges .left h2, .dys-offer h2, .dys-form .left h2 { font-size: 32px; }
  .dys-form .form-row { flex-direction: column; }
  .dys-form form { padding: 24px; }
  .dys-download-item { flex-direction: column; gap: 16px; align-items: flex-start; padding: 24px; }
}


/* ============================================================
   PAGE: DLA INWESTORA
   ============================================================ */

/* Hero */
.inw-hero { width: 100%; background: var(--bw-black); position: relative; overflow: hidden; }
.inw-hero .hero-inner { width: 100%; max-width: var(--container-max); margin: 0 auto; position: relative; height: 652px; }
.inw-hero-bg { position: absolute; right: 60px; top: 188px; width: 700px; height: 380px; overflow: hidden; pointer-events: none; mix-blend-mode: lighten; opacity: 0.5; filter: grayscale(1); }
.inw-hero-bg video { width: 100%; height: 100%; object-fit: cover; display: block; }
html.mega-open .inw-hero-bg { mix-blend-mode: normal !important; visibility: hidden !important; }
.inw-hero .hero-copy { top: 234px; }
.inw-hero h1 { font-family: var(--font-heading); font-weight: 600; font-size: 48px; line-height: 1.2; letter-spacing: -0.96px; color: var(--bw-white); width: 650px; }
.inw-hero .lead { width: 555px; color: var(--bw-white); font-size: 16px; line-height: 1.6; margin-top: 24px; }

/* --- Section: "Nie jesteśmy kolejną hurtownią" intro (2-col text) --- */
.inw-intro-text { width: 100%; background: var(--zinc-100); padding: 80px 0; color: var(--bw-black); }
.inw-intro-text .container { max-width: 1440px; }
.inw-intro-text .row { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.inw-intro-text .row > p:first-child {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 36px; line-height: 1.25; letter-spacing: -0.72px;
  color: var(--bw-black); width: 650px;
}
.inw-intro-text .row > p:first-child .accent { color: var(--secondary-600); }
.inw-intro-text .row > p:last-child { width: 538px; font-size: 18px; line-height: 1.5; color: var(--zinc-700); }

/* --- Section: Photo + 5 USP cards --- */
.inw-photo-usps { width: 100%; background: var(--zinc-100); padding: 0 0 80px; }
.inw-photo-usps .container { max-width: 1440px; }
.inw-photo-usps .row { display: flex; gap: 20px; align-items: flex-start; }
.inw-photo-usps .photo { width: 650px; height: 488px; overflow: hidden; flex-shrink: 0; }
.inw-photo-usps .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.inw-photo-usps .usp-grid { display: flex; flex-wrap: wrap; gap: 20px; width: 650px; align-content: flex-end; height: 488px; }
.inw-photo-usps .usp-card {
  width: 315px; height: 149px;
  background: var(--bw-white);
  border: 0.7px solid var(--zinc-200);
  padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.inw-photo-usps .usp-card .title { font-weight: 600; font-size: 16px; line-height: 1.5; color: var(--primary-800); }
.inw-photo-usps .usp-card .desc { font-size: 12px; line-height: 1.5; color: var(--zinc-600); }

/* --- Section: "Co przyda Ci się na każdym etapie?" categories --- */
.inw-categories { width: 100%; background: var(--zinc-100); padding: 80px 0; }
.inw-categories .container { max-width: 1440px; }
.inw-categories > .container > .head { padding: 0 60px; }
.inw-categories h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 42px; line-height: 1.2; letter-spacing: -0.84px;
  color: var(--bw-black);
}
.inw-categories .head .eyebrow { color: var(--secondary-600); margin-bottom: 12px; display: block; }
.inw-categories .cat-list { margin-top: 40px; }
.inw-cat-row {
  background: var(--bw-white);
  border-bottom: 0.7px solid var(--zinc-300);
  padding: 42px;
  display: flex; align-items: center; justify-content: flex-start;
  gap: 40px;
}
.inw-cat-row:last-child { border-bottom: 0; }
.inw-cat-row .cat-head { width: 314px; display: flex; flex-direction: column; gap: 12px; }
.inw-cat-row .cat-head h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 36px; line-height: 1.25; letter-spacing: -0.72px;
  color: var(--primary-600);
}
.inw-cat-row .cat-head p { font-size: 16px; line-height: 1.6; color: var(--zinc-600); }
.inw-cat-row .products { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.inw-cat-product {
  display: flex; flex-direction: column; gap: 12px;
  text-decoration: none; color: inherit;
  cursor: pointer;
  transition: transform .2s ease;
}
.inw-cat-product:hover { transform: translateY(-3px); }
.inw-cat-product .img {
  width: 203px; height: 203px;
  background: linear-gradient(to bottom, #f0f8ff, var(--primary-100));
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.inw-cat-product:hover .img { box-shadow: 0 8px 24px rgba(7, 84, 133, 0.15); }
.inw-cat-product .img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s ease;
}
.inw-cat-product:hover .img img { transform: scale(1.04); }
.inw-cat-product .name { padding: 0 2px; }
.inw-cat-product .name .title {
  font-weight: 600; font-size: 18px; line-height: 1.5;
  color: var(--bw-black);
  transition: color .15s ease;
}
.inw-cat-product:hover .name .title { color: var(--primary-600); }
.inw-cat-product .name .sub { font-size: 14px; line-height: 1.5; color: var(--zinc-700); display: block; }

/* --- Section: Blue mini-CTA "Nie wiesz, co wybrać?" --- */
.inw-mini-cta {
  width: 100%;
  background: linear-gradient(105deg, var(--primary-500) 33%, var(--primary-600) 100%);
  padding: 80px 64px;
  display: flex; justify-content: center;
}
.inw-mini-cta .inner { display: flex; flex-direction: column; gap: 32px; align-items: center; max-width: 820px; }
.inw-mini-cta .head { display: flex; flex-direction: column; gap: 18px; text-align: center; color: var(--bw-white); align-items: center; }
.inw-mini-cta .head h2 { font-family: var(--font-heading); font-weight: 600; font-size: 42px; line-height: 1.2; letter-spacing: -0.84px; max-width: 720px; }
.inw-mini-cta .head p { font-size: 18px; line-height: 1.5; max-width: 720px; }
.inw-mini-cta .buttons { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; }
.inw-mini-cta .buttons .btn { min-width: 280px; justify-content: center; }
.inw-mini-cta .buttons .btn-underline { flex-basis: 100%; text-align: center; justify-content: center; margin-top: 8px; }

/* --- Section: Testimonials inwestorzy (light gray, 3 cards) --- */
.inw-testimonials { width: 100%; background: var(--zinc-100); padding: 60px; }
.inw-testimonials .container { max-width: 1440px; display: flex; flex-direction: column; gap: 60px; align-items: center; }
.inw-testimonials .head { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; width: 100%; }
.inw-testimonials h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 42px; line-height: 1.2; letter-spacing: -0.84px;
  color: var(--bw-black);
}
.inw-testimonials-grid { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.inw-t-card {
  width: 315px; height: 315px;
  background: var(--zinc-50);
  padding: 28px; border-radius: 4px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.inw-t-card .role-tag {
  align-self: flex-end;
  height: 24px; padding: 0 10px;
  display: inline-flex; align-items: center;
  background: var(--zinc-100); color: var(--zinc-700);
  font-size: 12px; font-weight: 500; line-height: 1.2;
  border-radius: 4px;
}
.inw-t-card .body { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; width: 100%; }
.inw-t-card .stars { display: flex; gap: 0; color: #f59e0b; width: 120px; height: 24px; }
.inw-t-card .stars svg { width: 24px; height: 24px; flex-shrink: 0; }
.inw-t-card .quote { font-family: var(--font-body); font-style: italic; font-weight: 400; font-size: 14px; line-height: 1.5; color: var(--bw-black); width: 100%; }
.inw-t-card .author { display: flex; gap: 12px; align-items: center; }
.inw-t-card .avatar { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: #737373; }
.inw-t-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.inw-t-card .meta { display: flex; flex-direction: column; gap: 2px; }
.inw-t-card .name { font-weight: 600; font-size: 14px; color: var(--bw-black); }
.inw-t-card .role { font-size: 12px; color: var(--zinc-700); }

/* --- Section: "Zobacz, jak to wygląda na żywo" dark realizations --- */
.inw-realizations { width: 100%; background: var(--bw-black); padding: 80px 0; }
.inw-realizations .container { display: flex; flex-direction: column; gap: 80px; align-items: center; max-width: 1440px; }
.inw-realizations .head { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.inw-realizations .eyebrow { color: var(--secondary-300); }
.inw-realizations h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 48px; line-height: 1.2; letter-spacing: -0.96px;
  color: var(--bw-white);
}
.inw-realizations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1318px; width: 100%; }
.inw-real-card {
  background: var(--zinc-800);
  border: 1px solid var(--zinc-700);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 24px;
  height: 443px;
}
.inw-real-card .img-wrap { height: 256px; }
.inw-real-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.inw-real-card .body { padding: 0 32px 32px; display: flex; flex-direction: column; flex: 1; justify-content: space-between; gap: 12px; }
.inw-real-card h3 { font-family: var(--font-heading); font-weight: 600; font-size: 24px; line-height: 1.3; letter-spacing: -0.48px; color: var(--bw-white); }
.inw-real-card .meta { font-size: 14px; line-height: 1.5; color: var(--bw-white); }
.inw-real-card .tags { display: flex; gap: 8px; }
.inw-real-card .tag {
  height: 24px; padding: 0 10px;
  display: inline-flex; align-items: center;
  background: var(--zinc-700); color: var(--zinc-300);
  font-size: 12px; font-weight: 500; line-height: 1.2;
  border-radius: 4px;
}

/* --- Section: Inspirations + Experts (light gray) --- */
.inw-inspirations { width: 100%; background: var(--zinc-100); padding: 80px 0; }
.inw-inspirations .container { display: flex; flex-direction: column; gap: 120px; align-items: center; max-width: 1440px; }
.inw-inspirations .section { display: flex; flex-direction: column; gap: 60px; align-items: flex-start; width: 100%; }
.inw-inspirations .head { display: flex; flex-direction: column; gap: 12px; }
.inw-inspirations .head .eyebrow { color: var(--secondary-600); }
.inw-inspirations h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 42px; line-height: 1.2; letter-spacing: -0.84px;
  color: var(--bw-black);
}
.inw-inspirations .head p { font-size: 18px; line-height: 1.5; color: var(--bw-black); }
.inw-inspirations-grid { display: flex; gap: 20px; flex-wrap: wrap; }
.inw-inspiration-card {
  width: 426px; height: 389px;
  background: var(--zinc-50);
  border: 1px solid var(--zinc-300); border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 18px;
}
.inw-inspiration-card .img-wrap { position: relative; height: 256px; }
.inw-inspiration-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.inw-inspiration-card .tag-corner {
  position: absolute; top: 16px; right: 16px;
  height: 24px; padding: 0 10px;
  display: inline-flex; align-items: center;
  background: var(--primary-200); color: var(--primary-950);
  font-size: 12px; font-weight: 500; line-height: 1.2;
  border-radius: 4px;
}
.inw-inspiration-card .body { padding: 0 32px 32px; display: flex; flex-direction: column; gap: 12px; }
.inw-inspiration-card h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 24px; line-height: 1.3; letter-spacing: -0.48px;
  color: var(--bw-black);
}
.inw-inspiration-card p { font-size: 14px; line-height: 1.5; color: var(--bw-black); }

/* Experts 2-col */
.inw-experts { max-width: 874px; }
.inw-experts-grid { display: flex; gap: 20px; flex-wrap: wrap; }
.inw-expert-card {
  background: var(--bw-white);
  padding: 24px;
  width: 427px;
  display: flex; flex-direction: column; gap: 16px;
  border-radius: 4px;
}
.inw-expert-card.with-photo .row { display: flex; gap: 14px; align-items: center; padding: 12px 0; }
.inw-expert-card .photo {
  width: 100px; height: 100px; flex-shrink: 0;
  border-radius: 50%; overflow: hidden;
  background: linear-gradient(to bottom, #f0f8ff, var(--primary-100));
  display: grid; place-items: center;
}
.inw-expert-card .photo img { width: 116px; height: 137px; object-fit: cover; }
.inw-expert-card .person { display: flex; flex-direction: column; gap: 2px; }
.inw-expert-card .person .name { font-weight: 600; font-size: 14px; color: var(--bw-black); }
.inw-expert-card .person .role { font-size: 12px; color: var(--zinc-600); line-height: 1.5; }
.inw-expert-card .desc-text { font-size: 14px; line-height: 1.5; color: var(--bw-black); }
.inw-expert-card .heading { font-family: var(--font-heading); font-weight: 600; font-size: 24px; line-height: 1.5; color: var(--bw-black); }
.inw-expert-card .btn-underline { align-self: flex-start; height: 42px; padding: 0 24px; color: var(--primary-600); font-size: 14px; font-weight: 500; }

/* Responsive */
@media (max-width: 1200px) {
  .inw-intro-text .row { flex-direction: column; gap: 30px; }
  .inw-intro-text .row > p { width: 100% !important; }
  .inw-photo-usps .row { flex-direction: column; }
  .inw-photo-usps .photo, .inw-photo-usps .usp-grid { width: 100%; }
  .inw-photo-usps .usp-grid { height: auto; }
  .inw-photo-usps .usp-card { width: calc(50% - 10px); }
  .inw-cat-row { flex-direction: column; align-items: flex-start; }
  .inw-cat-row .cat-head, .inw-cat-row .products { width: 100%; }
  .inw-realizations-grid { grid-template-columns: repeat(2, 1fr); }
  .inw-experts-grid { justify-content: center; }
  .inw-expert-card { width: 100%; max-width: 427px; }
}
@media (max-width: 768px) {
  /* Hero — text first, animation below */
  .inw-hero .hero-inner { height: auto; min-height: auto; padding: 16px 20px 40px; display: flex; flex-direction: column; }
  .inw-hero .hero-copy { position: static; top: auto; left: auto; right: auto; width: 100%; padding: 0; margin-top: 24px; gap: 24px; }
  .inw-hero h1 { font-size: 32px; width: 100%; line-height: 1.15; }
  .inw-hero .lead { width: 100%; max-width: 100%; }
  .inw-hero-bg {
    position: relative !important;
    top: auto !important; right: auto !important; left: auto !important;
    width: 100% !important; height: 220px !important;
    margin-top: 32px;
    mix-blend-mode: normal !important;
    opacity: 1 !important;
    filter: none !important;
    order: 99;
  }
  .inw-hero-bg video { width: 100%; height: 100%; object-fit: cover; }
  .inw-hero .cta-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .inw-hero .cta-row .btn { width: 100%; justify-content: center; }

  /* Intro & sections */
  .inw-intro-text, .inw-photo-usps, .inw-categories, .inw-realizations, .inw-inspirations { padding: 60px 0; }
  .inw-intro-text .container { padding: 0 20px; }
  .inw-intro-text .row { flex-direction: column; gap: 24px; }
  .inw-intro-text .row > p:first-child { font-size: 28px; width: 100%; }
  .inw-intro-text .row > p:last-child { width: 100%; }
  .inw-photo-usps .container { padding: 0 20px; }
  .inw-photo-usps .row { flex-direction: column; }
  .inw-photo-usps .usp-card { width: 100%; }
  .inw-categories .container { padding: 0 20px; }
  .inw-categories h2, .inw-realizations h2, .inw-inspirations h2 { font-size: 32px; }

  /* Testimonials — single column on mobile */
  .inw-testimonials { padding: 60px 20px; }
  .inw-testimonials-grid { flex-direction: column; align-items: center; }
  .inw-t-card { width: 100%; max-width: 360px; height: auto; min-height: 280px; }

  /* Categories — stack vertically */
  .inw-cat-row { flex-direction: column; align-items: flex-start; padding: 24px; gap: 20px; }
  .inw-cat-row .cat-head, .inw-cat-row .products { width: 100%; }
  .inw-cat-row .products { justify-content: center; }
  .inw-cat-product { width: calc(50% - 10px); max-width: 200px; }
  .inw-cat-product .img { width: 100%; height: auto; aspect-ratio: 1; }

  .inw-realizations-grid { grid-template-columns: 1fr; }
  .inw-mini-cta { padding: 60px 20px; }
  .inw-mini-cta .head h2 { font-size: 32px; }
  .inw-mini-cta .buttons { flex-direction: column; align-items: stretch; gap: 12px; }
  .inw-mini-cta .buttons .btn { width: 100%; }

  /* Inspirations — single column */
  .inw-inspirations { padding: 60px 20px; }
  .inw-inspirations .container { gap: 60px; }
  .inw-inspirations-grid { flex-direction: column; align-items: center; gap: 20px; }
  .inw-inspiration-card { width: 100%; max-width: 426px; height: auto; }
}


/* ============================================================
   PAGE: PRODUKT
   ============================================================ */

/* Topbar wrapper: when not on hero (other pages), use simpler dark bar */
.prod-topbar { width: 100%; background: var(--bw-black); padding: 0; }
.prod-topbar .container { max-width: var(--container-max); padding: 0 60px; }
.prod-topbar .row {
  display: flex; align-items: center; justify-content: space-between;
  height: 154px;
}

/* Breadcrumbs */
.breadcrumbs { width: 100%; background: var(--bw-black); padding: 24px 60px; }
.breadcrumbs .row { display: flex; align-items: center; height: 32px; }
.breadcrumbs a, .breadcrumbs span { font-size: 14px; line-height: 1.5; color: var(--zinc-400); padding: 4px 8px; }
.breadcrumbs .sep { color: var(--zinc-400); }
.breadcrumbs .current { color: var(--bw-white); }

/* --- Hero: Gallery + Info --- */
.prod-hero { width: 100%; background: var(--bw-white); padding: 60px; color: var(--bw-black); }
.prod-hero .row { display: flex; gap: 20px; align-items: flex-start; justify-content: center; max-width: 1320px; margin: 0 auto; }
.prod-gallery { width: 538px; display: flex; flex-direction: column; gap: 12px; padding-right: 20px; }
.prod-gallery .main {
  aspect-ratio: 538/405;
  background: #d9d9d9;
  width: 100%;
  border: 0; padding: 0; cursor: pointer;
  transition: opacity .2s ease;
  border-radius: 4px;
}
.prod-gallery .main:hover { opacity: .92; }
.prod-gallery .thumbs { display: flex; gap: 12px; }
.prod-gallery .thumbs > * {
  width: 80px; height: 80px;
  background: #f4f4f5;
  border: 1px solid var(--zinc-200); padding: 0; cursor: pointer;
  transition: opacity .2s ease, transform .2s ease, border-color .15s;
  border-radius: 4px;
  flex: 0 0 auto;
}
.prod-gallery .thumbs > *:hover { opacity: .85; transform: translateY(-2px); border-color: var(--primary-500); }

.prod-info { width: 538px; display: flex; flex-direction: column; gap: 20px; }
.prod-info .brand-logo { height: 28px; }
.prod-info .brand-logo img { height: 22px; width: auto; object-fit: contain; }
.prod-info h1 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 28px; line-height: 1.2; letter-spacing: -0.56px;
  color: var(--bw-black);
  margin-top: 12px;
}
.prod-info .desc { font-size: 14px; line-height: 1.5; color: var(--bw-black); }
.prod-info .tag-list { display: flex; gap: 8px; }
.prod-info .tag {
  height: 24px; padding: 0 10px;
  display: inline-flex; align-items: center;
  background: var(--zinc-100); color: var(--zinc-700);
  font-size: 12px; font-weight: 500; line-height: 1.2;
  border-radius: 4px;
}
.prod-info .stats { display: flex; gap: 20px; flex-wrap: wrap; }
.prod-info .stat {
  width: 160px;
  border: 0.7px solid var(--zinc-400);
  padding: 12px;
  display: flex; flex-direction: column; gap: 16px;
}
.prod-info .stat .v { font-family: var(--font-heading); font-weight: 600; font-size: 24px; line-height: 1.3; letter-spacing: -0.48px; color: var(--primary-800); }
.prod-info .stat .l { font-size: 14px; line-height: 1.5; color: var(--zinc-600); }
/* Wybierz grubość — chips (Figma nowe) */
.prod-info .prod-thickness { display: flex; flex-direction: column; gap: 12px; }
.prod-info .prod-thickness label { font-size: 14px; font-weight: 600; color: var(--bw-black); }
.prod-info .thickness-chips { display: flex; gap: 12px; flex-wrap: wrap; }
.prod-info .thick-chip {
  height: 42px; padding: 0 24px;
  background: transparent;
  border: 0.7px solid var(--zinc-300);
  border-radius: 4px;
  font-family: var(--font-body); font-weight: 400;
  font-size: 14px; line-height: 1.2;
  color: var(--bw-black);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.prod-info .thick-chip:hover { border-color: var(--zinc-400); }
.prod-info .thick-chip.active {
  background: var(--zinc-700);
  border-color: var(--zinc-700);
  color: var(--bw-white);
}

/* Actions row (2 buttony obok siebie) */
.prod-info .actions-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.prod-info .actions-row .btn-primary { height: 42px; }
.prod-info .actions-row .btn-outlined {
  height: 42px; padding: 0 24px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 0.7px solid var(--zinc-700);
  border-radius: 0;
  color: var(--bw-black);
  font-family: var(--font-body); font-weight: 500;
  font-size: 14px; line-height: 1;
  white-space: nowrap;
  transition: background .15s;
}
.prod-info .actions-row .btn-outlined:hover { background: var(--zinc-100); }

/* Pobierz certyfikaty — link */
.prod-info .btn-underline-dark {
  align-self: flex-start;
  height: auto;
  padding: 0;
  border: 0;
  border-bottom: 0.7px solid var(--zinc-300);
  padding-bottom: 4px;
  color: var(--bw-black);
}

.prod-info .btn-archispace {
  height: 32px; padding: 0 24px;
  display: inline-flex; align-items: center; justify-content: center;
  border-bottom: 0.7px solid var(--zinc-300);
  font-size: 12px; font-weight: 500; color: var(--bw-black);
  align-self: flex-start;
}

/* --- Section wrapper for content blocks --- */
.prod-section { width: 100%; padding: 60px; color: var(--bw-black); }
.prod-section.bg-gray { background: var(--zinc-100); }
.prod-section.bg-white { background: var(--bw-white); }
.prod-section.bg-dark { background: var(--bw-black); color: var(--bw-white); }
.prod-section .container { max-width: 1320px; margin: 0 auto; display: flex; flex-direction: column; gap: 40px; }
.prod-section h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 42px; line-height: 1.2; letter-spacing: -0.84px;
}
.prod-section.bg-dark h2 { color: var(--bw-white); }
.prod-section .eyebrow { display: block; margin-bottom: 12px; }

/* Spec table — clean Figma style: no card wrapper, subtle bottom borders, bold labels */
.spec-table {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 0; background: transparent; border: 0;
  max-width: 880px; margin: 0 auto;
}
.spec-table .cell {
  padding: 18px 8px;
  border-bottom: 1px solid var(--zinc-200);
  border-right: 0;
  font-size: 14px; line-height: 1.5;
}
.spec-table .cell:nth-last-child(-n+2) { border-bottom: 0; }
.spec-table .cell.label { color: var(--bw-black); font-weight: 600; }
.spec-table .cell.value { color: var(--zinc-700); font-weight: 400; }

/* Dostępne grubości — table */
.thick-table { background: var(--bw-white); border: 1px solid var(--zinc-300); }
.thick-table .row {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 16px 20px;
  border-bottom: 1px solid var(--zinc-300);
  font-size: 14px; color: var(--bw-black);
}
.thick-table .row > div { color: var(--bw-black); }
.thick-table .row:last-child { border-bottom: 0; }
.thick-table .row.head { background: var(--zinc-100); font-weight: 600; color: var(--bw-black); }
.thick-table .row.head > div { color: var(--bw-black); }

/* Dokumentacja */
.docs-list { display: flex; flex-direction: column; gap: 20px; max-width: 722px; margin: 0 auto; }

/* Zastosowania — 4 photo cards (square) */
.applic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.applic-card {
  background: transparent;
  border: 0; border-radius: 0;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 12px;
}
.applic-card .img {
  width: 100%; aspect-ratio: 1; height: auto;
  background: linear-gradient(135deg, var(--zinc-300), var(--zinc-100));
  border-radius: 4px; overflow: hidden;
}
.applic-card .img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.applic-card .body { padding: 0; }
.applic-card h3 {
  font-family: var(--font-body); font-weight: 500;
  font-size: 14px; line-height: 1.4;
  color: var(--bw-black);
}
.applic-card p { font-size: 13px; line-height: 1.5; color: var(--zinc-600); margin-top: 6px; }

/* Comparison table */
.compare-table { background: var(--bw-white); border: 1px solid var(--zinc-300); }
.compare-table .row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  padding: 12px 20px;
  border-bottom: 1px solid var(--zinc-300);
  font-size: 14px; line-height: 1.5;
  align-items: center;
  color: var(--bw-black);
}
.compare-table .row:last-child { border-bottom: 0; }
.compare-table .row.head { background: var(--zinc-100); font-weight: 600; color: var(--bw-black); }
.compare-table .row.head .val { color: var(--bw-black); }
.compare-table .row .cell-feat { color: var(--zinc-700); }
.compare-table .row .val { text-align: center; color: var(--bw-black); }
.compare-table .row .val.yes { color: var(--secondary-600); font-weight: 600; }
.compare-table .row .val.no { color: var(--zinc-400); }

/* Realizacje (dark) -- reuse pattern from inwestor */

/* Articles — 2 cards */
.articles-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Inspiracje (powiązane) — 3 cards */

/* Powiązane produkty (grid 4 / 5 / 6) */
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.related-grid--5 { grid-template-columns: repeat(5, 1fr); gap: 16px; }
.related-grid--6 { grid-template-columns: repeat(6, 1fr); gap: 16px; }
@media (max-width: 1280px) {
  .related-grid--6 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1200px) {
  .related-grid--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .related-grid--6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .related-grid--5 { grid-template-columns: repeat(2, 1fr); }
  .related-grid--6 { grid-template-columns: repeat(2, 1fr); }
}

/* Minimal variant — no white card, just image + text below */
.related-card.related-card--minimal {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}
.related-card.related-card--minimal:hover { box-shadow: none; border: 0; }
.related-card.related-card--minimal .img {
  aspect-ratio: 1; height: auto;
  background: var(--primary-100);
  border-radius: 4px; overflow: hidden;
  transition: transform .2s ease;
}
.related-card.related-card--minimal:hover .img { transform: translateY(-2px); }
.related-card.related-card--minimal .img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.related-card.related-card--minimal .body { padding: 12px 0 0; background: transparent; }
.related-card.related-card--minimal h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 15px; line-height: 1.3;
  color: var(--bw-black);
}
.related-card.related-card--minimal p {
  font-size: 12px; line-height: 1.4; color: var(--zinc-600);
  margin-top: 2px;
}
.related-card {
  background: var(--bw-white);
  border: 1px solid var(--zinc-200); border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .15s, box-shadow .15s;
}
.related-card:hover { border-color: var(--primary-500); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.related-card .img { aspect-ratio: 1; height: auto; background: var(--zinc-100); }
.related-card .img img { width: 100%; height: 100%; object-fit: cover; }
.related-card .body { padding: 12px 16px 16px; }
.related-card .brand { font-size: 11px; color: var(--zinc-500); text-transform: uppercase; letter-spacing: 0.5px; }
.related-card h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 16px; line-height: 1.3;
  color: var(--bw-black);
}
.related-card p { font-size: 12px; line-height: 1.5; color: var(--zinc-600); margin-top: 4px; }

/* Form section — 2-col layout: intro left, form card right */
.prod-form-section { width: 100%; background: var(--bw-white); padding: 80px 60px; }
.prod-form-section .container { max-width: 1320px; margin: 0 auto; padding: 0; }
.prod-form-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px;
  align-items: start;
}
.prod-form-intro {
  position: sticky; top: 120px;
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 8px;
}
.prod-form-intro h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 42px; line-height: 1.15; letter-spacing: -0.84px;
  color: var(--bw-black);
}
.prod-form-intro h2 .accent { color: var(--primary-600); }
.prod-form-intro p { font-size: 16px; line-height: 1.5; color: var(--zinc-700); }

.prod-form-card {
  background: var(--bw-white);
  padding: 36px;
  border-radius: 8px;
  border: 1px solid var(--zinc-200);
  display: flex; flex-direction: column; gap: 18px;
}
.prod-form-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.prod-form-card .field { display: flex; flex-direction: column; gap: 6px; }
.prod-form-card label { font-size: 13px; font-weight: 600; color: var(--zinc-700); }
.prod-form-card .req { color: var(--primary-600); }
.prod-form-card input,
.prod-form-card select,
.prod-form-card textarea {
  height: 42px; padding: 0 12px;
  border: 1px solid var(--zinc-300); border-radius: 4px;
  background: var(--bw-white); font-size: 14px; font-family: var(--font-body); color: var(--bw-black);
  outline: none;
  transition: border-color .15s;
}
.prod-form-card input:focus, .prod-form-card select:focus, .prod-form-card textarea:focus { border-color: var(--primary-600); }
.prod-form-card textarea { height: auto; min-height: 100px; padding: 10px 12px; resize: vertical; line-height: 1.5; }
.prod-form-card .need-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 2px; }
.prod-form-card .need-chip {
  height: 32px; padding: 0 14px;
  background: var(--bw-white); color: var(--bw-black);
  border: 1px solid var(--zinc-300); border-radius: 4px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all .15s;
}
.prod-form-card .need-chip:hover { border-color: var(--zinc-500); }
.prod-form-card .need-chip.active { background: var(--bw-black); color: var(--bw-white); border-color: var(--bw-black); }
.prod-form-card .checkbox-field {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; line-height: 1.4; color: var(--zinc-700);
  cursor: pointer; font-weight: 400;
}
.prod-form-card .checkbox-field input[type="checkbox"] {
  margin-top: 2px; accent-color: var(--primary-600);
  width: 16px; height: 16px;
}
.prod-form-card .btn-primary {
  align-self: stretch;
  height: 48px; padding: 0 24px;
  background: var(--primary-600); color: var(--bw-white);
  border: 0; border-radius: 4px;
  font-size: 16px; font-weight: 600;
  cursor: pointer; margin-top: 8px;
  transition: background .15s;
}
.prod-form-card .btn-primary:hover { background: var(--primary-500); }

@media (max-width: 1024px) {
  .prod-form-section { padding: 60px 24px; }
  .prod-form-grid { grid-template-columns: 1fr; gap: 32px; }
  .prod-form-intro { position: static; }
  .prod-form-intro h2 { font-size: 32px; }
  .prod-form-card { padding: 24px; }
  .prod-form-card .form-row { grid-template-columns: 1fr; }
}

/* Responsive */
@media (max-width: 1200px) {
  .prod-hero .row { flex-direction: column; }
  .prod-gallery, .prod-info { width: 100%; max-width: 538px; margin: 0 auto; padding-right: 0; }
  .spec-table { grid-template-columns: 1fr; }
  .spec-table .cell { border-right: 0; }
  .thick-table .row { grid-template-columns: 1fr 1fr; }
  .applic-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-table { overflow-x: auto; }
  .compare-table .row { min-width: 800px; }
  .articles-2 { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .prod-hero { padding: 32px 20px; }
  .prod-info h1 { font-size: 24px; }
  .prod-section { padding: 60px 20px; }
  .prod-section h2 { font-size: 32px; }
  .applic-grid, .related-grid { grid-template-columns: 1fr; }
  .prod-form-section { padding: 60px 20px; }
  .prod-form-section .form-row { flex-direction: column; }
}


/* Override: topbar in product page is in normal flow, not absolute */
.prod-topbar .topbar { position: static; padding: 10px 0; height: 72px; }
.prod-topbar .row { height: auto; }


/* ============================================================
   PAGE: KATEGORIA PRODUKTÓW
   ============================================================ */

/* Small dark hero with breadcrumbs + title */
.cat-hero { width: 100%; background: var(--bw-black); padding: 60px; color: var(--bw-white); }
.cat-hero .container { max-width: 1320px; margin: 0 auto; }
.cat-hero .breadcrumbs-inline { display: flex; align-items: center; margin-bottom: 24px; }
.cat-hero .breadcrumbs-inline a, .cat-hero .breadcrumbs-inline span { font-size: 14px; line-height: 1.5; color: var(--zinc-400); padding: 4px 8px; }
.cat-hero .breadcrumbs-inline .current { color: var(--bw-white); }
.cat-hero h1 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 48px; line-height: 1.2; letter-spacing: -0.96px;
  margin-bottom: 16px;
}
.cat-hero p { font-size: 16px; line-height: 1.5; max-width: 805px; }

/* Main content layout */
.cat-content { width: 100%; background: var(--zinc-100); padding: 60px; color: var(--bw-black); }
.cat-content .container { max-width: 1320px; margin: 0 auto; display: flex; gap: 40px; align-items: flex-start; }

/* Filters sidebar */
.cat-filters { width: 240px; flex-shrink: 0; display: flex; flex-direction: column; gap: 24px; }
.cat-filter-group { display: flex; flex-direction: column; gap: 12px; }
.cat-filter-group .filter-range { display: flex; flex-direction: column; gap: 12px; }
.cat-filter-group .range-values {
  font-family: var(--font-body); font-weight: 400;
  font-size: 14px; line-height: 1.5;
  color: var(--bw-black);
}
.cat-filter-group .range-slider {
  position: relative;
  height: 24px;
  display: flex; align-items: center;
}
.cat-filter-group .range-slider input[type="range"] {
  position: absolute; left: 0; right: 0;
  width: 100%; height: 4px;
  margin: 0; padding: 0;
  background: transparent;
  appearance: none;
  pointer-events: none;
  z-index: 1;
}
.cat-filter-group .range-slider::before {
  content: ""; position: absolute; left: 0; right: 0;
  height: 4px;
  background: var(--zinc-200);
  border-radius: 2px;
}
.cat-filter-group .range-slider input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 18px; height: 18px;
  background: var(--primary-600);
  border-radius: 50%;
  border: 2px solid var(--bw-white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  pointer-events: auto;
  cursor: pointer;
}
.cat-filter-group .range-slider input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  background: var(--primary-600);
  border-radius: 50%;
  border: 2px solid var(--bw-white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  pointer-events: auto;
  cursor: pointer;
}
.cat-filter-group .filter-title {
  font-family: var(--font-body); font-weight: 600;
  font-size: 12px; letter-spacing: 1px;
  color: var(--bw-black); text-transform: uppercase;
}
.cat-filter-group label {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--zinc-700);
  cursor: pointer;
}
.cat-filter-group input[type="checkbox"] {
  width: 16px; height: 16px;
  border: 1px solid var(--zinc-400);
  border-radius: 2px;
  accent-color: var(--primary-600);
  cursor: pointer;
}

/* Products grid */
.cat-products { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
/* Catalog variant: with empty-state + nested grid */
.cat-products:has(.cat-products-grid) { display: flex; flex-direction: column; gap: 12px; }
.cat-products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cat-empty { color: var(--zinc-600); font-size: 14px; padding: 24px 0; margin: 0; text-align: center; background: var(--zinc-100); border-radius: 4px; }
.filter-reset {
  margin-top: 4px; padding: 10px 14px;
  background: var(--bw-white); color: var(--bw-black);
  border: 1px solid var(--zinc-300); border-radius: 4px;
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}
.filter-reset:hover { background: var(--zinc-100); border-color: var(--zinc-500); }
.cat-product-card {
  background: var(--bw-white);
  border: 1px solid var(--zinc-200);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.cat-product-card .img { width: 100%; height: 220px; background: var(--zinc-200); overflow: hidden; }
.cat-product-card .img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-product-card .body { padding: 16px 20px 20px; display: flex; flex-direction: column; gap: 8px; }
.cat-product-card .brand-row { height: 24px; display: flex; align-items: center; }
.cat-product-card .brand-row img { height: 20px; width: auto; object-fit: contain; }
.cat-product-card h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 20px; line-height: 1.3; letter-spacing: -0.4px;
  color: var(--bw-black);
}
.cat-product-card .desc { font-size: 14px; line-height: 1.5; color: var(--zinc-700); }
.cat-product-card .tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.cat-product-card .tag {
  height: 22px; padding: 0 8px;
  display: inline-flex; align-items: center;
  background: var(--zinc-100); color: var(--zinc-700);
  font-size: 11px; font-weight: 500;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 1200px) {
  .cat-products { grid-template-columns: 1fr 1fr; }
  .cat-products-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .cat-content .container { flex-direction: column; }
  .cat-filters { width: 100%; flex-direction: row; flex-wrap: wrap; }
  .cat-filter-group { width: calc(50% - 12px); }
  .cat-products { grid-template-columns: 1fr 1fr; width: 100%; }
  .cat-products-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .cat-hero { padding: 40px 20px; }
  .cat-hero h1 { font-size: 36px; }
  .cat-content { padding: 40px 20px; }
  .cat-filter-group { width: 100%; }
  .cat-products { grid-template-columns: 1fr; }
  .cat-products-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   PAGE: O FIRMIE
   ============================================================ */
.of-content { width: 100%; background: var(--zinc-100); padding: 80px 60px; color: var(--bw-black); }
.of-content .container { max-width: 1320px; margin: 0 auto; display: flex; flex-direction: column; gap: 60px; }

.of-intro { display: flex; gap: 60px; align-items: flex-start; }
.of-intro .left { flex: 1; display: flex; flex-direction: column; gap: 24px; max-width: 540px; }
.of-intro .left h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 36px; line-height: 1.25; letter-spacing: -0.72px;
  color: var(--secondary-600);
}
.of-intro .left p { font-size: 16px; line-height: 1.6; color: var(--zinc-700); }
.of-intro .left p + p { margin-top: 16px; }
.of-intro .right { flex: 1; aspect-ratio: 4/3; background: var(--zinc-300); overflow: hidden; border-radius: 4px; }
.of-intro .right img { width: 100%; height: 100%; object-fit: cover; }

.of-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.of-stat {
  background: var(--bw-white);
  border: 1px solid var(--zinc-200);
  padding: 28px 32px;
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 20px;
}
.of-stat .v {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 48px; line-height: 1; letter-spacing: -0.96px;
  color: var(--primary-600);
}
.of-stat .l { font-size: 14px; line-height: 1.5; color: var(--zinc-600); }

.of-team { display: flex; flex-direction: column; gap: 32px; }
.of-team h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 42px; line-height: 1.2; letter-spacing: -0.84px;
  color: var(--bw-black);
}
.of-team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.of-team-card { display: flex; flex-direction: column; gap: 8px; }
.of-team-card .photo {
  width: 100%; height: 272px;
  background: linear-gradient(to bottom, #f0f8ff, var(--primary-100));
  overflow: hidden;
  position: relative;
}
.of-team-card .photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.of-team-card .name { font-weight: 600; font-size: 16px; line-height: 1.5; color: var(--bw-black); margin-top: 8px; }
.of-team-card .role { font-size: 14px; line-height: 1.5; color: var(--zinc-600); }

/* "Chcesz zostać partnerem" section — full-width with bg image */
.of-cta-partner {
  width: 100%; position: relative; overflow: hidden;
  padding: 80px 64px;
  display: flex; justify-content: center;
  background: var(--bw-black);
}
.of-cta-partner::before {
  content: ""; position: absolute; inset: 0;
  background-image: url('../img/partner-cta-bg.webp');
  background-size: cover; background-position: center;
  z-index: 0;
}
.of-cta-partner::after {
  content: ""; position: absolute; inset: 0;
  background: rgba(26, 26, 26, 0.6);
  z-index: 0;
}
.of-cta-partner > * { position: relative; z-index: 1; }
.of-cta-partner .inner { display: flex; flex-direction: column; gap: 32px; align-items: center; text-align: center; color: var(--bw-white); }
.of-cta-partner h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 42px; line-height: 1.2; letter-spacing: -0.84px;
}
.of-cta-partner p { font-size: 18px; line-height: 1.5; }
.of-cta-partner .buttons { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }

@media (max-width: 1200px) {
  .of-intro { flex-direction: column; }
  .of-intro .left, .of-intro .right { max-width: 100%; width: 100%; }
  .of-stats { grid-template-columns: repeat(2, 1fr); }
  .of-team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .of-content { padding: 60px 20px; }
  .of-stats { grid-template-columns: 1fr 1fr; }
  .of-team-grid { grid-template-columns: 1fr 1fr; }
  .of-cta-partner { padding: 60px 20px; }
  .of-cta-partner h2 { font-size: 32px; }
}


/* ============================================================
   PAGE: REALIZACJE (listing)
   ============================================================ */
.real-list-content { width: 100%; background: var(--bw-black); padding: 60px; color: var(--bw-white); }
.real-list-content .container { max-width: 1320px; margin: 0 auto; }
.real-list-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.real-list-filter .chip { color: var(--zinc-300); border-color: var(--zinc-700); background: transparent; }
.real-list-filter .chip.active { background: var(--bw-white); color: var(--bw-black); border-color: var(--bw-white); }
.real-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.real-list-card {
  background: var(--zinc-800);
  border: 1px solid var(--zinc-700); border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  position: relative;
}
.real-list-card .img { width: 100%; height: 220px; background: var(--zinc-700); overflow: hidden; }
.real-list-card .img img { width: 100%; height: 100%; object-fit: cover; }
.real-list-card .img-tag {
  position: absolute; top: 16px; right: 16px;
  height: 24px; padding: 0 10px;
  display: inline-flex; align-items: center;
  background: var(--primary-200); color: var(--primary-950);
  font-size: 12px; font-weight: 500; border-radius: 4px;
}
.real-list-card .body { padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.real-list-card h3 { font-family: var(--font-heading); font-weight: 600; font-size: 18px; color: var(--bw-white); }
.real-list-card p { font-size: 14px; line-height: 1.5; color: var(--zinc-400); flex: 1; }
.real-list-card .tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; }
.real-list-card .tag { height: 22px; padding: 0 8px; display: inline-flex; align-items: center; background: var(--zinc-700); color: var(--zinc-300); font-size: 11px; font-weight: 500; border-radius: 4px; }

@media (max-width:1024px){.real-list-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:640px){.real-list-grid{grid-template-columns:1fr;}}

/* ============================================================
   PAGE: REALIZACJA (single)
   ============================================================ */
.real-single { width: 100%; background: var(--bw-black); color: var(--bw-white); padding: 40px 60px 60px; }
.real-single .container { max-width: 1320px; margin: 0 auto; }
.real-gallery { display: flex; gap: 32px; }
.real-gallery > [data-lightbox-extra] { display: none !important; }
.real-gallery .main {
  flex: 1; aspect-ratio: 16/9;
  background: var(--zinc-700);
  overflow: hidden; border-radius: 4px;
  position: relative;
  padding: 0; border: 0; cursor: pointer;
  display: block;
}
.real-gallery .main img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; display: block; }
.real-gallery .main:hover img { transform: scale(1.02); }
.real-gallery .side { width: 280px; flex-shrink: 0; display: flex; flex-direction: column; gap: 16px; }
.real-gallery .side > button {
  aspect-ratio: 1;
  background: var(--zinc-700);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  padding: 0; border: 0; cursor: pointer;
  display: block;
}
.real-gallery .side > button img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; display: block; }
.real-gallery .side > button:hover img { transform: scale(1.04); }
.real-gallery .side > button .more {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(0,0,0,0.5);
  color: white; font-size: 18px; font-weight: 500;
  pointer-events: none;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center; justify-content: center;
  padding: 60px;
}
.lightbox.open { display: flex; }
.lightbox .lb-stage {
  position: relative;
  max-width: 100%; max-height: 100%;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.lightbox img {
  max-width: min(90vw, 1280px);
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}
.lightbox .lb-counter {
  color: var(--bw-white);
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.5px;
}
.lightbox .lb-close,
.lightbox .lb-prev,
.lightbox .lb-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  color: var(--bw-white);
  border: 0; padding: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 24px; line-height: 1;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .15s, transform .15s;
}
.lightbox .lb-close:hover,
.lightbox .lb-prev:hover,
.lightbox .lb-next:hover { background: rgba(255,255,255,0.2); }
.lightbox .lb-close { top: 24px; right: 24px; font-size: 28px; }
.lightbox .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-prev:hover, .lightbox .lb-next:hover { transform: translateY(-50%) scale(1.05); }
@media (max-width: 768px){
  .lightbox { padding: 16px; }
  .lightbox .lb-close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .lightbox .lb-prev { left: 12px; width: 40px; height: 40px; }
  .lightbox .lb-next { right: 12px; width: 40px; height: 40px; }
  .lightbox img { max-height: 70vh; }
}

.real-single .info-row { display: flex; gap: 32px; margin-top: 40px; align-items: flex-start; }
.real-single .info-main { flex: 1; }
.real-single h1 { font-family: var(--font-heading); font-weight: 600; font-size: 36px; line-height: 1.25; letter-spacing: -0.72px; color: var(--bw-white); }
.real-single .lead { font-size: 14px; line-height: 1.5; color: var(--zinc-300); margin-top: 16px; }
.real-single .meta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px; }
.real-single .meta-item { display: flex; flex-direction: column; gap: 4px; }
.real-single .meta-item .label { display: block; font-size: 12px; color: var(--secondary-300); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.real-single .meta-item .value { display: block; font-size: 14px; color: var(--bw-white); }
.real-single h2.sub { font-family: var(--font-heading); font-weight: 600; font-size: 20px; color: var(--bw-white); margin-top: 32px; }
.real-single .used-products { display: flex; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.real-single .used-product { display: flex; gap: 12px; align-items: center; padding: 8px 16px 8px 8px; background: var(--zinc-800); border-radius: 4px; }
.real-single .used-product .thumb { width: 48px; height: 48px; background: var(--zinc-700); border-radius: 2px; overflow: hidden; }
.real-single .used-product .thumb img { width: 100%; height: 100%; object-fit: cover; }
.real-single .used-product .text { display: flex; flex-direction: column; }
.real-single .used-product .name { font-weight: 600; font-size: 14px; color: var(--bw-white); }
.real-single .used-product .desc { font-size: 12px; color: var(--zinc-400); }

.real-single .info-side { width: 280px; display: flex; flex-direction: column; gap: 16px; }
.real-single .blue-box { background: var(--primary-600); color: var(--bw-white); padding: 24px; border-radius: 4px; }
.real-single .blue-box h3 { font-family: var(--font-heading); font-weight: 600; font-size: 18px; }
.real-single .blue-box p { font-size: 13px; margin-top: 8px; }
.real-single .blue-box .btn { background: var(--bw-white); color: var(--bw-black); margin-top: 16px; width: 100%; }
.real-single .film-box { background: var(--zinc-800); padding: 16px; border-radius: 4px; }
.real-single .film-box .label { font-size: 12px; color: var(--secondary-300); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.real-single .film-box .video { aspect-ratio: 16/9; background: var(--bw-black); margin-top: 12px; border-radius: 2px; }

@media (max-width:1024px){.real-single .info-row{flex-direction:column;}.real-single .info-side{width:100%;}.real-gallery{flex-direction:column;}.real-gallery .side{width:100%;flex-direction:row;}.real-single .meta-grid{grid-template-columns:1fr 1fr;}}

/* ============================================================
   PAGE: WPIS (blog post)
   ============================================================ */
.wp-content { width: 100%; background: var(--zinc-100); padding: 60px; }
.wp-content .container { max-width: 1320px; margin: 0 auto; display: flex; gap: 40px; }
.wp-main { flex: 1; max-width: 740px; }
.wp-main .meta-row { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.wp-main .meta-row .badge { background: var(--primary-200); color: var(--primary-950); padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: 500; }
.wp-main .meta-row .small { font-size: 14px; color: var(--zinc-600); }
.wp-main h1 { font-family: var(--font-heading); font-weight: 600; font-size: 36px; line-height: 1.25; letter-spacing: -0.72px; color: var(--bw-black); }
.wp-main .author-row { display: flex; gap: 12px; align-items: center; margin: 24px 0; padding: 16px 0; border-bottom: 1px solid var(--zinc-300); }
.wp-main .author-row .avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; background: var(--zinc-300); }
.wp-main .author-row .avatar img { width: 100%; height: 100%; object-fit: cover; }
.wp-main .author-row .meta { display: flex; flex-direction: column; gap: 2px; }
.wp-main .author-row .name { font-size: 14px; font-weight: 600; color: var(--bw-black); }
.wp-main .author-row .role { font-size: 12px; color: var(--zinc-600); }
.wp-main .hero-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; border-radius: 4px; margin-bottom: 24px; }
.wp-main .hero-img img { width: 100%; height: 100%; object-fit: cover; }
.wp-main .summary { background: var(--primary-100); border-left: 3px solid var(--primary-600); padding: 16px 20px; font-size: 14px; line-height: 1.6; color: var(--primary-900); margin-bottom: 24px; }
.wp-main h2 { font-family: var(--font-heading); font-weight: 600; font-size: 22px; color: var(--bw-black); margin: 32px 0 12px; }
.wp-main p { font-size: 15px; line-height: 1.7; color: var(--bw-black); margin-bottom: 16px; }
.wp-main .cta-block { background: var(--bw-white); border-radius: 4px; padding: 24px; margin: 32px 0; text-align: center; }
.wp-main .cta-block .title { font-weight: 600; color: var(--primary-600); margin-bottom: 8px; font-size: 16px; }
.wp-main .cta-block p { font-size: 13px; color: var(--zinc-700); margin-bottom: 16px; }
.wp-main .tags { display: flex; gap: 8px; margin-top: 32px; flex-wrap: wrap; }
.wp-main .tag { background: var(--zinc-100); color: var(--zinc-700); padding: 4px 10px; border-radius: 4px; font-size: 12px; }

.wp-sidebar { width: 280px; display: flex; flex-direction: column; gap: 20px; flex-shrink: 0; }
.wp-sidebar .card { background: var(--bw-white); border: 1px solid var(--zinc-200); border-radius: 4px; padding: 20px; }
.wp-sidebar .card .title { font-size: 12px; color: var(--secondary-600); text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 12px; }
.wp-sidebar .author-card .row { display: flex; gap: 12px; align-items: center; }
.wp-sidebar .author-card .avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; background: var(--zinc-300); }
.wp-sidebar .author-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.wp-sidebar .author-card .name { font-weight: 600; font-size: 14px; color: var(--bw-black); }
.wp-sidebar .author-card .role { font-size: 12px; color: var(--zinc-600); }
.wp-sidebar .author-card a { color: var(--primary-600); font-size: 13px; margin-top: 12px; display: inline-block; }
.wp-sidebar .toc ul { list-style: none; padding: 0; }
.wp-sidebar .toc li { padding: 6px 0; border-bottom: 1px solid var(--zinc-100); }
.wp-sidebar .toc li:last-child { border-bottom: 0; }
.wp-sidebar .toc a { font-size: 13px; color: var(--bw-black); }
.wp-sidebar .toc a:hover { color: var(--primary-600); }
.wp-sidebar .related-prod { display: flex; gap: 12px; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--zinc-100); }
.wp-sidebar .related-prod:last-child { border-bottom: 0; }
.wp-sidebar .related-prod .thumb { width: 56px; height: 56px; background: var(--zinc-200); border-radius: 2px; overflow: hidden; }
.wp-sidebar .related-prod .thumb img { width: 100%; height: 100%; object-fit: cover; }
.wp-sidebar .related-prod .meta { display: flex; flex-direction: column; }
.wp-sidebar .related-prod .brand { font-size: 11px; color: var(--zinc-500); }
.wp-sidebar .related-prod .name { font-weight: 600; font-size: 13px; color: var(--bw-black); }
/* Dokumentacja card — białe tło, Figma node 1:8628 */
.wp-sidebar .docs-card {
  background: var(--bw-white);
  border: 1px solid var(--zinc-200);
  border-radius: 4px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.wp-sidebar .docs-card .title {
  font-family: var(--font-body); font-weight: 600;
  font-size: 16px; line-height: 1.5; letter-spacing: 0.48px;
  text-transform: uppercase;
  color: var(--secondary-600);
  margin: 0;
}
.wp-sidebar .docs-item {
  display: flex; align-items: center; gap: 12px;
  padding: 8px;
  background: var(--bw-white);
  border: 1px solid var(--zinc-200);
  border-radius: 4px;
  transition: border-color .15s;
}
.wp-sidebar .docs-item:hover { border-color: var(--primary-500); }
.wp-sidebar .docs-item .icon {
  width: 32px; height: 32px; flex-shrink: 0;
  display: grid; place-items: center;
  overflow: hidden;
}
.wp-sidebar .docs-item .icon img {
  width: 28px; height: 28px;
  max-width: 100%; max-height: 100%;
  object-fit: contain; display: block;
  color: var(--zinc-700);
}
.wp-sidebar .docs-item .meta {
  display: flex; flex-direction: column; gap: 2px;
  flex: 1; min-width: 0;
}
.wp-sidebar .docs-item .name {
  font-family: var(--font-body); font-weight: 600;
  font-size: 14px; line-height: 1.5;
  color: var(--bw-black);
}
.wp-sidebar .docs-item .size {
  font-family: var(--font-body); font-weight: 400;
  font-size: 12px; line-height: 1.5;
  color: var(--bw-black);
}

/* Zamów próbkę card — niebieskie tło, Figma node 1:8645 */
.wp-sidebar .sample-card {
  background: var(--primary-600);
  color: var(--bw-white);
  padding: 24px;
  display: flex; flex-direction: column; gap: 24px;
  border: 0;
  border-radius: 0;
}
.wp-sidebar .sample-card .head {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 24px; line-height: 1.3; letter-spacing: -0.48px;
  color: var(--bw-white);
  margin: 0;
}
.wp-sidebar .sample-card p {
  font-family: var(--font-body); font-weight: 400;
  font-size: 14px; line-height: 1.5;
  color: var(--bw-white);
  margin: -16px 0 0;  /* gap-8 between head and p (24 gap - 8 = nudge p up 16) */
}
.wp-sidebar .sample-card .btn {
  height: 42px;
  padding: 0 24px;
  background: var(--bw-white);
  color: var(--bw-black);
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 500;
  font-size: 14px; line-height: 1;
  border-radius: 0;
  transition: background .15s;
}
.wp-sidebar .sample-card .btn:hover { background: var(--zinc-100); }

@media (max-width:1024px){.wp-content .container{flex-direction:column;}.wp-sidebar{width:100%;}}

/* ============================================================
   PAGE: EKSPERT
   ============================================================ */
.ek-content { width: 100%; background: var(--bw-white); padding: 60px; color: var(--bw-black); }
.ek-content .container { max-width: 1320px; margin: 0 auto; display: flex; flex-direction: column; gap: 60px; }
/* Ekspert hero — Figma node 1:9004, width 875px centered */
.ek-hero-card {
  display: flex; gap: 20px;
  align-items: stretch;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  max-width: 875px;
  width: 100%;
  margin: 0 auto;
}
.ek-hero-card .photo {
  width: 315px; height: 421px;
  background: linear-gradient(to bottom, #f0f8ff, var(--primary-100));
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 0;
  position: relative;
}
.ek-hero-card .photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
}
.ek-hero-card .info {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; justify-content: center;
  gap: 32px;
  height: 421px;
  padding-left: 20px;
}
.ek-hero-card .info > .head {
  display: flex; flex-direction: column; gap: 6px;
}
.ek-hero-card .info h1 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 36px; line-height: 1.25; letter-spacing: -0.72px;
  color: var(--bw-black);
}
.ek-hero-card .info .role {
  font-family: var(--font-body); font-weight: 400;
  font-size: 16px; line-height: 1.6;
  color: var(--zinc-600);
}
.ek-hero-card .info .desc {
  font-family: var(--font-body); font-weight: 400;
  font-size: 14px; line-height: 1.5;
  color: var(--bw-black);
  margin: 0;
}
.ek-hero-card .stats {
  display: flex; gap: 20px;
  align-items: stretch;
}
.ek-hero-card .stats .stat {
  flex: 1; min-width: 0;
  padding: 16px;
  border: 0.7px solid var(--zinc-400);
  border-radius: 0;
  background: transparent;
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start;
}
.ek-hero-card .stats .v {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 36px; line-height: 1.25; letter-spacing: -0.72px;
  color: var(--primary-800);
}
.ek-hero-card .stats .l {
  font-family: var(--font-body); font-weight: 400;
  font-size: 14px; line-height: 1.5;
  color: var(--zinc-600);
}
.ek-hero-card .actions {
  display: flex; gap: 16px;
  margin-top: 0;
  flex-wrap: wrap;
  align-items: stretch;
}
.ek-hero-card .actions .btn-primary-md {
  display: inline-flex; align-items: center; justify-content: center;
  height: 42px; padding: 0 24px;
  background: var(--primary-600);
  color: var(--bw-white);
  font-family: var(--font-body); font-weight: 500;
  font-size: 14px; line-height: 1;
  border: 0; border-radius: 0;
  white-space: nowrap;
  transition: background .15s;
}
.ek-hero-card .actions .btn-primary-md:hover { background: var(--primary-500); }
/* "Underline" button — czarny tekst z dolną linią (Figma: zinc-300 border-b) */
.btn-underline-dark {
  display: inline-flex; align-items: center; justify-content: center;
  height: 42px; padding: 0 24px;
  background: transparent;
  color: var(--bw-black);
  font-family: var(--font-body); font-weight: 500;
  font-size: 14px; line-height: 1;
  border: 0;
  border-bottom: 0.7px solid var(--zinc-300);
  border-radius: 0;
  white-space: nowrap;
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.btn-underline-dark::after { content: none; }  /* override potential global arrow */
.btn-underline-dark:hover {
  color: var(--primary-600);
  border-bottom-color: var(--primary-600);
}
.ek-section h2 { font-family: var(--font-heading); font-weight: 600; font-size: 28px; margin-bottom: 24px; }
.ek-articles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.ek-card {
  background: var(--zinc-50);
  border: 1px solid var(--zinc-300);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  color: var(--bw-black);
  height: 100%;
}
.ek-card .img-wrap {
  position: relative; width: 100%; height: 220px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--zinc-300), var(--zinc-200));
  overflow: hidden;
}
.ek-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ek-card .article-tag {
  position: absolute; top: 16px; right: 16px;
  height: 24px; padding: 0 10px;
  display: inline-flex; align-items: center;
  background: var(--primary-200); color: var(--primary-950);
  font-size: 12px; font-weight: 500; line-height: 1.2;
  border-radius: 4px;
}
.ek-card .body { padding: 20px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.ek-card h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 20px; line-height: 1.3; letter-spacing: -0.4px;
  color: var(--bw-black);
}
.ek-card p { font-size: 14px; line-height: 1.5; color: var(--bw-black); margin-top: 12px; }
.ek-card .meta-row { display: flex; gap: 12px; margin-top: auto; padding-top: 18px; }
.ek-card .meta-row .meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--zinc-600);
}
.ek-card .meta-row .meta-item svg { width: 16px; height: 16px; }
.ek-videos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ek-video { aspect-ratio: 9/16; background: var(--zinc-200); border-radius: 4px; }

@media (max-width:1024px){
  .ek-hero-card{flex-direction:column;align-items:stretch;gap:24px;}
  .ek-hero-card .photo{width:100%;height:380px;}
  .ek-hero-card .info{height:auto;padding-left:0;gap:24px;}
  .ek-hero-card .stats{flex-wrap:wrap;}
  .ek-hero-card .stats .stat{min-width:140px;}
  .ek-articles{grid-template-columns:repeat(2,1fr);}
  .ek-videos{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:640px){
  .ek-hero-card .photo{height:320px;}
  .ek-hero-card .info h1{font-size:28px;}
  .ek-hero-card .stats{flex-direction:column;}
  .ek-hero-card .stats .stat{width:100%;}
  .ek-hero-card .actions{flex-direction:column;}
  .ek-hero-card .actions .btn-primary-md,.ek-hero-card .actions .btn-link{width:100%;}
}

/* ---------- Karty techniczne (kt-*) — Figma node 1:5824 ---------- */
.kt-content {
  width: 100%; background: var(--zinc-100);
  padding: 80px 60px;
  color: var(--bw-black);
}
.kt-content > .container { max-width: 1320px; margin: 0 auto; }

/* Tabs (chipsy) — Figma 1:6175 */
.kt-tabs {
  display: flex; gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.kt-tab {
  background: transparent;
  border: 0.7px solid var(--zinc-300);
  border-radius: 4px;
  height: 42px;
  padding: 0 16px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 400;
  font-size: 16px; line-height: 1.2;
  color: var(--zinc-600);
  white-space: nowrap;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.kt-tab:hover { color: var(--bw-black); border-color: var(--zinc-400); }
.kt-tab.active {
  background: var(--zinc-700);
  border-color: var(--zinc-700);
  color: var(--bw-white);
}

/* Grid 3-kol */
.kt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* Karta */
.kt-card {
  background: var(--bw-white);
  border-radius: 4px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 24px;
  color: var(--bw-black);
  border: 1px solid var(--zinc-200);
  transition: border-color .15s, box-shadow .15s;
}
.kt-card:hover { border-color: var(--primary-500); box-shadow: 0 8px 24px rgba(7,84,133,0.08); }
.kt-card-head { display: flex; gap: 24px; align-items: flex-start; }
.kt-card .kt-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--bw-black);
  background: transparent;
}
.kt-card .kt-icon svg { width: 36px; height: 36px; }
.kt-card-title { display: flex; flex-direction: column; gap: 6px; }
.kt-card-title h3 {
  font-family: var(--font-body); font-weight: 600;
  font-size: 16px; line-height: 1.5; letter-spacing: 0;
  color: var(--bw-black);
}
.kt-card-title p {
  font-family: var(--font-body); font-weight: 400;
  font-size: 12px; line-height: 1.5;
  color: var(--zinc-600);
}
.kt-card-desc {
  font-family: var(--font-body); font-weight: 400;
  font-size: 14px; line-height: 1.5;
  color: var(--zinc-600);
  flex: 1;
}
.kt-card-btn {
  height: 42px; padding: 0 24px;
  background: var(--primary-600);
  color: var(--bw-white);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 500;
  font-size: 14px; line-height: 1;
  border-radius: 0;
  white-space: nowrap;
  width: 100%;
  text-decoration: none;
  transition: background .15s;
}
.kt-card-btn:hover { background: var(--primary-500); }

/* CTA "Potrzebujesz szerszej dokumentacji" — Figma 1:6242 */
.kt-extra-cta {
  margin-top: 60px;
  background: #f0f8ff;  /* Primary/50 */
  padding: 60px 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px;
  text-align: center;
}
.kt-extra-cta-title {
  font-family: var(--font-body); font-weight: 600;
  font-size: 18px; line-height: 1.5;
  color: var(--primary-900);
  max-width: 100%;
}
.kt-extra-cta-link {
  height: 42px; padding: 0 24px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-bottom: 0.7px solid var(--zinc-300);
  background: transparent;
  color: var(--primary-600);
  font-family: var(--font-body); font-weight: 500;
  font-size: 14px; line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.kt-extra-cta-link:hover {
  color: var(--primary-800);
  border-bottom-color: var(--primary-600);
}
.kt-extra-cta-link::after { content: none; }

@media (max-width:1024px){
  .kt-content { padding: 60px 24px; }
  .kt-grid { grid-template-columns: repeat(2, 1fr); }
  .kt-tabs { gap: 8px; }
}
@media (max-width:640px){
  .kt-grid { grid-template-columns: 1fr; }
  .kt-tab { font-size: 14px; height: 38px; padding: 0 12px; }
  .kt-extra-cta { padding: 40px 20px; }
  .kt-extra-cta-title { font-size: 16px; white-space: normal; }
  .kt-extra-cta-link { white-space: normal; height: auto; padding: 12px 24px; text-align: center; }
}

/* ---------- Dragonwood (dw-*) — Figma node 56:7429 ---------- */
/* HERO — dark, 2 columns text + image */
.dw-hero {
  width: 100%;
  background: var(--bw-black);
  color: var(--bw-white);
  padding: 60px;
}
.dw-hero .container { max-width: 1320px; margin: 0 auto; }
.dw-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
.dw-hero-text { display: flex; flex-direction: column; gap: 24px; }
.dw-hero-text h1 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 56px; line-height: 1.1; letter-spacing: -1.12px;
  color: var(--bw-white);
}
.dw-hero-text .lead {
  font-family: var(--font-body); font-weight: 400;
  font-size: 18px; line-height: 1.5;
  color: var(--zinc-300);
  max-width: 540px;
}
.dw-hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.dw-hero-cta .btn-primary { height: 48px; padding: 0 24px; }
.dw-hero-cta .btn-outlined-light {
  height: 48px; padding: 0 24px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 0.7px solid var(--zinc-300);
  border-radius: 4px;
  color: var(--bw-white);
  font-family: var(--font-body); font-weight: 500;
  font-size: 16px; line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: background .15s;
}
.dw-hero-cta .btn-outlined-light:hover { background: rgba(255,255,255,0.1); }
.dw-hero-image {
  width: 100%; aspect-ratio: 16/12;
  background: var(--zinc-700); border-radius: 4px;
  overflow: hidden;
}
.dw-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ZASTOSOWANIA — dark bg, 2x2 grid */
.dw-applications {
  width: 100%;
  background: var(--bw-black);
  color: var(--bw-white);
  padding: 80px 60px;
}
.dw-applications .container { max-width: 1320px; margin: 0 auto; }
.dw-applications h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 36px; line-height: 1.15; letter-spacing: -0.72px;
  color: var(--bw-white);
  margin-bottom: 32px;
}
.dw-app-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.dw-app-tile {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 4px;
  display: block;
  background: var(--zinc-800);
}
.dw-app-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.dw-app-tile:hover img { transform: scale(1.04); }
.dw-app-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.dw-app-label {
  position: absolute;
  left: 50%; bottom: 50%;
  transform: translate(-50%, 50%);
  z-index: 1;
  font-family: var(--font-heading); font-weight: 600;
  font-size: 32px; line-height: 1.2; letter-spacing: -0.64px;
  color: var(--bw-white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  pointer-events: none;
}

/* RODZAJE DREWNA — white bg, list of rows */
.dw-types {
  width: 100%;
  background: var(--bw-white);
  color: var(--bw-black);
  padding: 80px 60px;
}
.dw-types .container { max-width: 1320px; margin: 0 auto; }
.dw-types h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 36px; line-height: 1.15; letter-spacing: -0.72px;
  color: var(--bw-black);
  margin-bottom: 40px;
}
.dw-types-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--zinc-200);
}
.dw-type-row {
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 72px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--zinc-200);
}
.dw-type-info { display: flex; flex-direction: column; gap: 4px; }
.dw-type-info h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 24px; line-height: 1.3; letter-spacing: -0.48px;
  color: var(--secondary-600);
}
.dw-type-info p {
  font-family: var(--font-body); font-weight: 400;
  font-size: 13px; line-height: 1.5;
  color: var(--zinc-600);
}
.dw-type-swatches {
  display: flex; gap: 20px;
  flex-wrap: wrap;
}
.dw-swatch-chip {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.dw-swatch-color {
  width: 72px; height: 72px;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}
.dw-swatch-img {
  width: 72px; height: 72px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
  display: block;
}
.dw-type-swatches--full .dw-swatch-img { width: 64px; height: 64px; }
.dw-swatch-chip span {
  font-family: var(--font-body); font-weight: 400;
  font-size: 11px; line-height: 1.4;
  color: var(--zinc-600);
}
.dw-swatch-more {
  width: 72px; height: 72px;
  border-radius: 4px;
  background: var(--zinc-100);
  display: grid; place-items: center;
}
.dw-swatch-more .more-count {
  font-family: var(--font-body); font-weight: 500;
  font-size: 14px;
  color: var(--zinc-600);
}
.dw-type-link {
  font-family: var(--font-body); font-weight: 400;
  font-size: 13px; line-height: 1.5;
  color: var(--zinc-500);
  white-space: nowrap;
}
.dw-type-link:hover { color: var(--primary-600); }

.dw-types-cta {
  display: flex; justify-content: center;
  margin-top: 48px;
}
.dw-types-cta .btn-primary-md {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 32px;
  background: var(--primary-600);
  color: var(--bw-white);
  border: 0; border-radius: 4px;
  font-family: var(--font-body); font-weight: 500;
  font-size: 15px; line-height: 1;
  text-decoration: none;
  transition: background .15s;
}
.dw-types-cta .btn-primary-md:hover { background: var(--primary-500); }

/* BLUE CTA */
.dw-cta-blue {
  width: 100%;
  background: linear-gradient(109deg, var(--primary-500) 33%, var(--primary-600) 100%);
  color: var(--bw-white);
  padding: 80px 60px;
}
.dw-cta-blue .container { max-width: 1320px; margin: 0 auto; }
.dw-cta-content {
  display: flex; flex-direction: column; align-items: center;
  gap: 24px; text-align: center;
  max-width: 720px; margin: 0 auto;
}
.dw-cta-content h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 36px; line-height: 1.15; letter-spacing: -0.72px;
  color: var(--bw-white);
}
.dw-cta-content p {
  font-family: var(--font-body); font-weight: 400;
  font-size: 16px; line-height: 1.5;
  color: rgba(255,255,255,0.9);
}
.dw-cta-blue .dw-cta-actions {
  display: flex; gap: 16px;
  flex-wrap: wrap; justify-content: center;
  margin-top: 16px;
}
.dw-cta-blue .btn-outlined-light {
  height: 48px; padding: 0 24px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 0.7px solid rgba(255,255,255,0.6);
  border-radius: 4px;
  color: var(--bw-white);
  font-family: var(--font-body); font-weight: 500;
  font-size: 16px; line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: background .15s;
}
.dw-cta-blue .btn-outlined-light:hover { background: rgba(255,255,255,0.1); }

@media (max-width: 1024px) {
  .dw-hero { padding: 40px 24px; }
  .dw-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .dw-hero-text h1 { font-size: 40px; }
  .dw-applications { padding: 60px 24px; }
  .dw-app-grid { grid-template-columns: 1fr; }
  .dw-app-label { font-size: 28px; }
  .dw-types { padding: 60px 24px; }
  .dw-type-row { grid-template-columns: 1fr; gap: 16px; }
  .dw-cta-blue { padding: 60px 24px; }
}
@media (max-width: 640px) {
  .dw-hero-text h1 { font-size: 32px; }
  .dw-swatch-color, .dw-swatch-more, .dw-swatch-img { width: 56px; height: 56px; }
  .dw-type-swatches--full .dw-swatch-img { width: 52px; height: 52px; }
}

/* ---------- Kontakt (kt-depts) ---------- */
.kt-depts {
  width: 100%; background: var(--bw-white);
  padding: 80px 60px;
}
.kt-depts .container { max-width: 1320px; margin: 0 auto; }
.kt-depts-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.kt-depts-head h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 36px; line-height: 1.15; letter-spacing: -0.5px;
  color: var(--bw-black); margin-top: 12px;
}
.kt-depts-head p {
  font-size: 16px; line-height: 1.6;
  color: var(--zinc-600); margin-top: 16px;
}
.kt-depts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.kt-dept {
  background: var(--zinc-50);
  border: 1px solid var(--zinc-200);
  border-radius: 4px;
  padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.kt-dept:hover { border-color: var(--primary-500); box-shadow: 0 8px 24px rgba(7,84,133,0.08); transform: translateY(-2px); }
.kt-dept-icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary-100); color: var(--primary-600);
  border-radius: 4px;
  margin-bottom: 8px;
}
.kt-dept-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--secondary-600);
}
.kt-dept h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 20px; line-height: 1.3; letter-spacing: -0.3px;
  color: var(--bw-black);
}
.kt-dept > p {
  font-size: 14px; line-height: 1.55;
  color: var(--zinc-600);
}
.kt-dept-contact {
  margin-top: auto; padding-top: 20px;
  border-top: 1px solid var(--zinc-200);
  display: flex; flex-direction: column; gap: 6px;
}
.kt-dept-phone {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 18px; color: var(--bw-black);
}
.kt-dept-mail {
  font-size: 13px; color: var(--primary-600);
  word-break: break-all;
}
@media (max-width:1024px){.kt-depts-grid{grid-template-columns:1fr;}}
@media (max-width:640px){.kt-depts{padding:60px 24px;}.kt-dept{padding:24px;}}

/* ============================================================
   KONTAKT page (Figma node 56:10117) — przebudowa 1:1
   ============================================================ */
.kontakt-content {
  width: 100%; background: var(--zinc-100);
  padding: 80px 60px;
  color: var(--bw-black);
}
.kontakt-content > .container { max-width: 1320px; margin: 0 auto; }
.kontakt-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 425px;
  gap: 80px;
  align-items: start;
}

/* LEFT — Formularz kontaktowy w białej karcie */
.kontakt-form-card {
  background: var(--bw-white);
  padding: 40px;
  border-radius: 4px;
  border: 1px solid var(--zinc-200);
}
.kontakt-form-card h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 28px; line-height: 1.25; letter-spacing: -0.56px;
  color: var(--bw-black);
}
.kontakt-form-card .form-intro {
  font-family: var(--font-body); font-weight: 400;
  font-size: 14px; line-height: 1.5;
  color: var(--zinc-600);
  margin-top: 8px;
}
.kontakt-form-card form { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.kontakt-form-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kontakt-form-card .field { display: flex; flex-direction: column; gap: 6px; }
.kontakt-form-card .field label {
  font-family: var(--font-body); font-weight: 500;
  font-size: 13px; line-height: 1.4;
  color: var(--bw-black);
}
.kontakt-form-card .field label .req { color: var(--primary-600); }
.kontakt-form-card .field input,
.kontakt-form-card .field select,
.kontakt-form-card .field textarea {
  height: 42px; padding: 0 14px;
  background: var(--bw-white);
  border: 1px solid var(--zinc-300);
  border-radius: 4px;
  font-family: var(--font-body); font-size: 14px; line-height: 1.5;
  color: var(--bw-black);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.kontakt-form-card .field input::placeholder,
.kontakt-form-card .field textarea::placeholder { color: var(--zinc-500); }
.kontakt-form-card .field input:focus,
.kontakt-form-card .field select:focus,
.kontakt-form-card .field textarea:focus {
  border-color: var(--primary-600);
  box-shadow: 0 0 0 3px rgba(2,125,199,0.1);
}
.kontakt-form-card .field textarea {
  height: auto; min-height: 100px; padding: 12px 14px;
  resize: vertical;
}
.kontakt-form-card .field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}
.kontakt-form-card .checkbox-field {
  display: flex; align-items: flex-start; gap: 8px;
  font-family: var(--font-body); font-weight: 400;
  font-size: 13px; line-height: 1.5;
  color: var(--zinc-700);
  cursor: pointer;
}
.kontakt-form-card .checkbox-field input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--primary-600);
  cursor: pointer;
}
.kontakt-form-card .btn-submit {
  height: 48px; padding: 0 24px;
  background: var(--primary-600); color: var(--bw-white);
  border: 0; border-radius: 4px;
  font-family: var(--font-body); font-weight: 500;
  font-size: 15px; line-height: 1;
  cursor: pointer;
  transition: background .15s;
  margin-top: 8px;
  width: 100%;
}
.kontakt-form-card .btn-submit:hover { background: var(--primary-500); }

/* Callback section */
.kontakt-form-card .callback-section {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid var(--zinc-200);
  display: flex; flex-direction: column; gap: 16px;
}
.kontakt-form-card .callback-section h3 {
  font-family: var(--font-body); font-weight: 600;
  font-size: 16px; line-height: 1.5;
  color: var(--bw-black);
}
.kontakt-form-card .callback-form { display: flex; flex-direction: row; gap: 12px; margin: 0; }
.kontakt-form-card .callback-form input {
  flex: 1; height: 42px; padding: 0 14px;
  background: var(--primary-100);
  border: 1px solid var(--primary-100);
  border-radius: 4px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--primary-900);
  outline: none;
  transition: border-color .15s;
}
.kontakt-form-card .callback-form input::placeholder { color: var(--primary-900); opacity: .7; }
.kontakt-form-card .callback-form input:focus { border-color: var(--primary-600); background: var(--bw-white); }
.kontakt-form-card .callback-form button {
  height: 42px; padding: 0 24px;
  background: var(--primary-600); color: var(--bw-white);
  border: 0; border-radius: 4px;
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  cursor: pointer;
}
.kontakt-form-card .callback-hint {
  font-family: var(--font-body); font-weight: 400;
  font-size: 12px; line-height: 1.5;
  color: var(--zinc-500);
}

/* RIGHT — Dane kontaktowe + Działy + Social */
.kontakt-info { display: flex; flex-direction: column; gap: 40px; }
.kontakt-info .kontakt-block h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 24px; line-height: 1.3; letter-spacing: -0.48px;
  color: var(--bw-black);
  margin-bottom: 20px;
}

.kontakt-items { list-style: none; padding: 0; display: flex; flex-direction: column; }
.kontakt-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--zinc-200);
}
.kontakt-item:first-child { padding-top: 0; }
.kontakt-item:last-child { border-bottom: 0; padding-bottom: 0; }
.kontakt-item .ki-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  color: var(--bw-black);
  display: grid; place-items: center;
}
.kontakt-item .ki-text { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.kontakt-item .ki-label {
  font-family: var(--font-body); font-weight: 600;
  font-size: 14px; line-height: 1.4;
  color: var(--bw-black);
}
.kontakt-item .ki-value {
  font-family: var(--font-body); font-weight: 400;
  font-size: 14px; line-height: 1.5;
  color: var(--zinc-700);
}
.kontakt-item a.ki-value { color: var(--zinc-700); }
.kontakt-item a.ki-value:hover { color: var(--primary-600); text-decoration: underline; }

/* Działy list — z liniami oddzielającymi */
.dzialy-list { list-style: none; padding: 0; display: flex; flex-direction: column; }
.dzialy-list li {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--zinc-200);
}
.dzialy-list li:first-child { padding-top: 0; }
.dzialy-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.dzialy-list h4 {
  font-family: var(--font-body); font-weight: 600;
  font-size: 15px; line-height: 1.4;
  color: var(--bw-black);
}
.dzialy-list p {
  font-family: var(--font-body); font-weight: 400;
  font-size: 13px; line-height: 1.5;
  color: var(--zinc-600);
}

/* Social — Figma flat blue brand icons (28×28) */
.kontakt-social { display: flex; gap: 20px; }
.kontakt-social a {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  transition: transform .15s, opacity .15s;
}
.kontakt-social a img { width: 28px; height: 28px; display: block; }
.kontakt-social a:hover { transform: translateY(-2px); opacity: .85; }

@media (max-width: 1024px) {
  .kontakt-content { padding: 60px 24px; }
  .kontakt-row { grid-template-columns: 1fr; gap: 40px; }
  .kontakt-form-card { padding: 24px; }
  .kontakt-form-card .form-row { grid-template-columns: 1fr; }
}
/* Callback form — always horizontal (input + button) */
.kontakt-form-card .callback-form input { min-width: 0; }
.kontakt-form-card .callback-form button { flex-shrink: 0; }

/* ---------- Instagram feed (ig-*) ---------- */
.ig-feed {
  width: 100%; background: var(--bw-white);
  padding: 80px 60px;
}
.ig-feed .container { max-width: 1320px; margin: 0 auto; }
.ig-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.ig-head-left h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 36px; line-height: 1.15; letter-spacing: -0.5px;
  color: var(--bw-black);
  margin-top: 8px;
}
.ig-head-left h2 a {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ig-head-left p {
  font-size: 16px; line-height: 1.5; color: var(--zinc-600);
  margin-top: 12px; max-width: 560px;
}
.ig-follow-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 20px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--bw-white);
  border-radius: 4px;
  font-weight: 600; font-size: 14px;
  transition: transform .15s, box-shadow .15s;
}
.ig-follow-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(220,39,67,0.3); }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: block;
  background: var(--zinc-200);
}
.ig-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
.ig-tile:hover img { transform: scale(1.05); }
.ig-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  color: var(--bw-white);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 14px;
  opacity: 0; transition: opacity .2s;
}
.ig-tile:hover .ig-overlay { opacity: 1; }
.ig-overlay svg { fill: currentColor; }
@media (max-width:1024px){.ig-grid{grid-template-columns:repeat(3,1fr);}}
@media (max-width:640px){.ig-feed{padding:60px 24px;}.ig-grid{grid-template-columns:repeat(2,1fr);}.ig-head-left h2{font-size:28px;}}

/* ---------- Product tabs (prod-tabs) ---------- */
.prod-tabs-section {
  width: 100%; background: var(--zinc-100);
  padding: 60px;
}
.prod-tabs-section .container { max-width: 1320px; margin: 0 auto; }
.prod-tabs-nav {
  display: flex; gap: 4px; flex-wrap: wrap;
  border-bottom: 1px solid var(--zinc-300);
  margin-bottom: 32px;
}
.prod-tab {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 14px 20px;
  margin-bottom: -1px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  color: var(--zinc-600);
  cursor: pointer;
  transition: color .15s, border-color .15s;
}
.prod-tab:hover { color: var(--bw-black); }
.prod-tab.active {
  color: var(--primary-600);
  border-bottom-color: var(--primary-600);
}
.prod-tab-panel {
  display: none;
  background: var(--bw-white);
  color: var(--bw-black);
  border-radius: 4px;
  padding: 40px;
}
.prod-tab-panel h2 { color: var(--bw-black); }
.prod-tab-panel.active {
  display: block;
  animation: tabFadeIn .25s ease-out;
}
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.prod-tab-panel h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 28px; line-height: 1.2; letter-spacing: -0.4px;
  color: var(--bw-black);
  margin-bottom: 24px;
}
@media (max-width:1024px){
  .prod-tabs-section { padding: 40px 24px; }
  .prod-tabs-nav { gap: 0; overflow-x: auto; flex-wrap: nowrap; }
  .prod-tab { padding: 12px 14px; font-size: 13px; white-space: nowrap; }
  .prod-tab-panel { padding: 24px; }
}

/* ---------- INSPIRACJE PAGE (Figma node 1:6253) ---------- */
.insp-content {
  width: 100%; background: var(--zinc-100);
  padding: 80px 60px;
  color: var(--bw-black);
}
.insp-content > .container {
  max-width: 1320px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 60px;
}

/* Filtry */
.insp-filters { display: flex; flex-direction: column; gap: 32px; }
.insp-tabs {
  display: flex; gap: 12px;
  flex-wrap: wrap;
}
.insp-tab {
  background: transparent;
  border: 0.7px solid var(--zinc-300);
  border-radius: 4px;
  height: 42px;
  padding: 0 16px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 400;
  font-size: 16px; line-height: 1.2;
  color: var(--zinc-600);
  white-space: nowrap;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.insp-tab:hover { color: var(--bw-black); border-color: var(--zinc-400); }
.insp-tab.active {
  background: var(--zinc-700);
  border-color: var(--zinc-700);
  color: var(--bw-white);
}
.insp-prodfilter { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.insp-prodfilter-label {
  font-family: var(--font-body); font-weight: 400;
  font-size: 14px; line-height: 1.5;
  color: var(--bw-black);
}
.insp-prodchips { display: flex; gap: 12px; flex-wrap: wrap; flex: 1; }
.insp-prodchip {
  background: transparent;
  border: 0.7px solid var(--zinc-300);
  border-radius: 4px;
  height: 32px;
  padding: 0 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 400;
  font-size: 14px; line-height: 1.2;
  color: var(--zinc-600);
  white-space: nowrap;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.insp-prodchip:hover { color: var(--bw-black); border-color: var(--zinc-400); }
.insp-prodchip.active {
  background: var(--primary-600);
  border-color: var(--primary-600);
  color: var(--bw-white);
}

/* Grid 3x3 */
.insp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.insp-card {
  background: var(--zinc-50);
  border: 1px solid var(--zinc-300);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  color: var(--bw-black);
  height: 100%;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.insp-card:hover { border-color: var(--primary-500); box-shadow: 0 8px 24px rgba(7,84,133,0.08); transform: translateY(-2px); }
.insp-card .insp-img {
  position: relative;
  width: 100%; height: 256px;
  overflow: hidden;
  background: var(--zinc-200);
  flex-shrink: 0;
}
.insp-card .insp-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s;
}
.insp-card:hover .insp-img img { transform: scale(1.04); }
.insp-card .insp-tag {
  position: absolute; top: 16px; right: 16px;
  height: 24px; padding: 0 10px;
  display: inline-flex; align-items: center;
  background: var(--primary-200); color: var(--primary-950);
  font-family: var(--font-body); font-weight: 500;
  font-size: 12px; line-height: 1.2;
  border-radius: 4px;
}
.insp-card .insp-body {
  padding: 18px 32px 32px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.insp-card .insp-body h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 24px; line-height: 1.3; letter-spacing: -0.48px;
  color: var(--bw-black);
}
.insp-card .insp-body p {
  font-family: var(--font-body); font-weight: 400;
  font-size: 14px; line-height: 1.5;
  color: var(--bw-black);
}

/* Load more button */
.insp-loadmore-wrap { display: flex; justify-content: center; }
.insp-loadmore {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 24px;
  border: 0.7px solid var(--zinc-300);
  background: transparent;
  color: var(--bw-black);
  font-family: var(--font-body); font-weight: 500;
  font-size: 16px; line-height: 1;
  border-radius: 0;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.insp-loadmore:hover { background: var(--bw-white); border-color: var(--bw-black); }
.insp-loadmore::after { content: none; }

/* #AzzuraInspiracje na Instagramie */
.insp-ig {
  display: flex; flex-direction: column; gap: 40px;
  align-items: center;
}
.insp-ig-head {
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start; width: 100%;
}
.insp-ig-head h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 36px; line-height: 1.25; letter-spacing: -0.72px;
  color: var(--bw-black);
}
.insp-ig-head h2 .accent { color: var(--secondary-600); }
.insp-ig-head p {
  font-family: var(--font-body); font-weight: 400;
  font-size: 18px; line-height: 1.5;
  color: var(--bw-black);
}
.insp-ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  width: 100%;
}
.insp-ig-tile {
  aspect-ratio: 400/500;
  background: var(--zinc-200);
  overflow: hidden;
  display: block;
  transition: transform .25s;
}
.insp-ig-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; }
.insp-ig-tile:hover img { transform: scale(1.05); }
.insp-ig-btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 48px; padding: 0 24px;
  background: var(--primary-600);
  color: var(--bw-white);
  font-family: var(--font-body); font-weight: 500;
  font-size: 16px; line-height: 1;
  border-radius: 0;
  text-decoration: none;
  transition: background .15s;
}
.insp-ig-btn:hover { background: var(--primary-500); }

/* Blue gradient CTA */
.insp-cta {
  width: 100%;
  background: linear-gradient(109deg, var(--primary-500) 33%, var(--primary-600) 100%);
  padding: 80px 64px;
  display: flex; justify-content: center;
}
.insp-cta .inner {
  display: flex; flex-direction: column; gap: 40px;
  align-items: center;
  max-width: 874px; width: 100%;
}
.insp-cta .head {
  display: flex; flex-direction: column; gap: 18px;
  text-align: center; color: var(--bw-white);
}
.insp-cta .head h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 42px; line-height: 1.2; letter-spacing: -0.84px;
  color: var(--bw-white);
}
.insp-cta .head p {
  font-family: var(--font-body); font-weight: 400;
  font-size: 18px; line-height: 1.5;
  color: var(--bw-white);
}
.insp-cta .buttons {
  display: flex; gap: 24px;
  align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.insp-cta .buttons .btn {
  height: 48px; padding: 0 24px;
  font-family: var(--font-body); font-weight: 500;
  font-size: 16px; line-height: 1;
}

@media (max-width:1024px){
  .insp-content { padding: 60px 24px; }
  .insp-content > .container { gap: 48px; }
  .insp-grid { grid-template-columns: repeat(2, 1fr); }
  .insp-ig-grid { grid-template-columns: repeat(3, 1fr); }
  .insp-ig-head h2 { font-size: 28px; }
  .insp-cta { padding: 60px 24px; }
  .insp-cta .head h2 { font-size: 32px; }
}
@media (max-width:640px){
  .insp-grid { grid-template-columns: 1fr; }
  .insp-ig-grid { grid-template-columns: repeat(2, 1fr); }
  .insp-tab { font-size: 14px; height: 38px; padding: 0 12px; }
  .insp-prodfilter { flex-direction: column; align-items: flex-start; gap: 12px; }
  .insp-cta .buttons { flex-direction: column; align-items: stretch; width: 100%; }
  .insp-cta .buttons .btn { width: 100%; }
}

/* ============================================================
   GLOBAL: Reveal-on-scroll animation (Intersection Observer)
   Każdy element z .reveal-on-scroll startuje niewidoczny + przesunięty;
   dostaje klasę .is-visible kiedy wejdzie do viewport (przez JS).
   ============================================================ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
}
.reveal-on-scroll.is-visible,
.is-visible.reveal-on-scroll {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
/* No-JS fallback — pokaż wszystko gdy JS nie ma */
.no-js .reveal-on-scroll { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   GLOBAL: Equal-height card grids
   Every card-grid stretches its children to match the tallest
   container in the row. Body content uses flex layout so meta
   rows / tags / buttons get pushed to the bottom of each card.
   ============================================================ */

/* Card grids — let default stretch alignment win */
.bw-grid,
.ek-articles,
.real-list-grid,
.kt-grid,
.applic-grid,
.related-grid,
.articles,
.articles-2,
.inw-realizations-grid,
.wyk-realizations-grid,
.dys-offer-grid,
.inw-inspirations-grid,
.persona-grid {
  align-items: stretch;
}

/* Every card class should fill the grid cell height & stack content */
.bw-grid > *,
.ek-articles > *,
.real-list-grid > *,
.kt-grid > *,
.applic-grid > *,
.related-grid > *,
.articles > *,
.articles-2 > *,
.inw-realizations-grid > *,
.wyk-realizations-grid > *,
.dys-offer-grid > *,
.inw-inspirations-grid > *,
.persona-grid > * {
  height: 100%;
}

/* Card body uses column flex with grow */
.article-card,
.real-list-card,
.kt-card,
.applic-card,
.related-card,
.real-card,
.inw-real-card,
.inw-inspiration-card,
.dys-offer-card,
.wyk-real-card {
  display: flex;
  flex-direction: column;
}
.article-card .body,
.real-list-card .body,
.applic-card .body,
.related-card .body,
.real-card .body,
.inw-real-card .body,
.inw-inspiration-card .body,
.dys-offer-card .body,
.wyk-real-card .body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
/* Last child of body — meta-row, tags, buttons — pushed to bottom */
.article-card .body > .meta-row,
.real-list-card .tags,
.applic-card .body > .meta-row,
.related-card .body > .meta-row,
.real-card .body > .meta-row,
.inw-real-card .tags,
.inw-inspiration-card .body > .meta-row,
.dys-offer-card .body > .actions,
.dys-offer-card .body > .meta,
.wyk-real-card .tags {
  margin-top: auto;
}


/* ============================================================
   STICKY HEADER (sub-pages with .prod-topbar)
   Pinned to top on scroll. After scroll, becomes compact:
   logo scales to 40%, height shrinks, still on dark background.
   ============================================================ */
.prod-topbar {
  position: sticky; top: 0; z-index: 950;
  transition: box-shadow .45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: box-shadow;
}
.prod-topbar .row {
  transition: height .45s cubic-bezier(0.4, 0, 0.2, 1), padding .45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: height;
}
.prod-topbar .logo {
  transform-origin: left center;
  transform: scale(0.4);
  margin-right: -48px;
}

/* Compact state — only adds shadow (no height/scale jumps) */
html.is-scrolled .prod-topbar {
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}

/* Hero topbar (home + dla-*) — pinned from start, compact on scroll */
.hero .topbar {
  /* position: fixed jest dziedziczone z .topbar */
  background: transparent;
  transition: height .45s cubic-bezier(0.4, 0, 0.2, 1),
              background .35s ease,
              box-shadow .45s cubic-bezier(0.4, 0, 0.2, 1),
              padding .45s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero .logo {
  transform-origin: left center;
  transition: transform .45s cubic-bezier(0.4, 0, 0.2, 1), margin-right .45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, margin-right;
}
html.is-scrolled .hero .topbar {
  height: 72px;
  background-color: #1a1a1a;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
html.is-scrolled .hero .logo {
  transform: scale(0.4);
  margin-right: -48px;
}

@media (max-width: 768px) {
  html.is-scrolled .prod-topbar .row { height: 60px; }
  html.is-scrolled .hero .topbar { height: 60px !important; }
}


/* ============================================================
   GENERIC MODAL (used for sample-order popup)
   ============================================================ */
.modal {
  display: none; position: fixed; inset: 0;
  background: rgba(15,15,15,0.65);
  z-index: 1000; padding: 40px 20px;
  align-items: flex-start; justify-content: center;
  overflow-y: auto;
}
.modal.open { display: flex; }
.modal-card {
  position: relative;
  background: var(--bw-white); color: var(--bw-black);
  width: 100%; max-width: 560px;
  border-radius: 8px;
  padding: 40px 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.modal-close {
  position: absolute; top: 12px; right: 14px;
  width: 36px; height: 36px;
  border: 0; background: transparent;
  font-size: 28px; line-height: 1; cursor: pointer;
  color: var(--zinc-600);
  border-radius: 4px;
  transition: background .15s, color .15s;
}
.modal-close:hover { background: var(--zinc-100); color: var(--bw-black); }
.modal-card h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 24px; line-height: 1.3; letter-spacing: -0.4px;
  margin: 0;
}
.modal-sub { font-size: 14px; color: var(--zinc-600); margin: 6px 0 20px; }
.modal-card form { display: flex; flex-direction: column; gap: 14px; }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal-card label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--zinc-700);
}
.modal-card input[type="text"],
.modal-card input[type="tel"],
.modal-card input[type="email"],
.modal-card select,
.modal-card textarea {
  border: 1px solid var(--zinc-300); border-radius: 4px;
  padding: 10px 12px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--bw-black); background: var(--bw-white);
  transition: border-color .15s;
}
.modal-card input:focus,
.modal-card select:focus,
.modal-card textarea:focus {
  outline: none; border-color: var(--primary-600);
}
.modal-card textarea { resize: vertical; min-height: 70px; }
.modal-card label.check {
  flex-direction: row; align-items: flex-start; gap: 8px;
  font-size: 12px; color: var(--zinc-600); font-weight: 400;
  margin-top: 4px;
}
.modal-card label.check input[type="checkbox"] {
  margin-top: 2px; accent-color: var(--primary-600);
}
.modal-actions {
  display: flex; gap: 12px; justify-content: flex-end;
  margin-top: 12px;
}
.modal-actions .btn-ghost {
  background: transparent; border: 1px solid var(--zinc-300);
  color: var(--bw-black);
  padding: 12px 20px; border-radius: 4px;
  font-size: 14px; font-weight: 500; cursor: pointer;
  transition: background .15s;
}
.modal-actions .btn-ghost:hover { background: var(--zinc-100); }
.modal-success {
  text-align: center; padding: 16px 0;
}
.modal-success-icon {
  width: 56px; height: 56px; margin: 0 auto 14px;
  border-radius: 50%; background: var(--primary-100);
  color: var(--primary-600);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 700;
}
.modal-success h3 { font-family: var(--font-heading); font-weight: 600; font-size: 20px; }
.modal-success p { font-size: 14px; color: var(--zinc-600); margin-top: 6px; }
@media (max-width: 640px) {
  .modal-row { grid-template-columns: 1fr; }
  .modal-card { padding: 32px 20px 20px; }
}


/* ============================================================
   PRODUCT INLINE SECTIONS (replaces tabs on BoardeX product page)
   ============================================================ */
.prod-inline-section {
  width: 100%;
  background: var(--zinc-100);
  padding: 60px 0;
}
.prod-inline-section + .prod-inline-section { padding-top: 0; }
.prod-inline-section .container { max-width: 1320px; margin: 0 auto; padding: 0 60px; }
.prod-inline-section h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 32px; line-height: 1.2; letter-spacing: -0.6px;
  color: var(--bw-black);
  margin-bottom: 32px;
}

/* Dokumentacja — 2-column card grid (5th card spans full width) */
.docs-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.doc-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  background: var(--bw-white);
  border: 1px solid var(--zinc-200);
  border-radius: 4px;
  transition: border-color .15s, box-shadow .15s;
}
.doc-card:hover { border-color: var(--primary-500); box-shadow: 0 4px 12px rgba(0,0,0,.06); }
.doc-card .icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: grid; place-items: center;
  color: var(--zinc-600);
}
.doc-card .icon img { width: 32px; height: 32px; }
.doc-card .text { flex: 1; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.doc-card .text .name {
  font-family: var(--font-body); font-weight: 600;
  font-size: 15px; line-height: 1.4;
  color: var(--bw-black);
}
.doc-card .text .sub {
  font-family: var(--font-body); font-weight: 400;
  font-size: 13px; line-height: 1.4;
  color: var(--zinc-600);
}
.doc-card .btn-underline {
  flex-shrink: 0;
  font-size: 14px; font-weight: 500;
  color: var(--bw-black);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--bw-black);
}
.doc-card.doc-card--wide { grid-column: 1 / -1; }

@media (max-width: 900px) {
  .prod-inline-section .container { padding: 0 24px; }
  .prod-inline-section h2 { font-size: 26px; }
  .docs-grid { grid-template-columns: 1fr; }
  .doc-card.doc-card--wide { grid-column: 1; }
}


/* ============================================================
   HEADER "ZAPYTAJ O OFERTĘ" BUTTON
   ============================================================ */
.btn-quote {
  display: inline-flex; align-items: center; justify-content: center;
  height: 38px; padding: 0 18px;
  background: var(--primary-600); color: var(--bw-white) !important;
  border-radius: 4px;
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  white-space: nowrap;
  border: 0; cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.btn-quote:hover { background: var(--primary-500); transform: translateY(-1px); }
.btn-quote:focus-visible { outline: 2px solid var(--primary-200); outline-offset: 2px; }
.btn-quote--active { background: var(--primary-500); }

.btn-quote--mobile {
  margin-top: 16px;
  width: 100%; height: 48px; font-size: 16px;
}

/* Place button between nav and lang-switch */
.topbar .btn-quote { margin: 0 12px; }

/* When sticky compact — slightly smaller */
html.is-scrolled .topbar .btn-quote {
  height: 34px; padding: 0 14px; font-size: 13px;
}

/* Mobile: hide desktop btn-quote in topbar; show in mobile menu */
@media (max-width: 1024px) {
  .topbar > .btn-quote { display: none; }
}
@media (min-width: 1025px) {
  .mobile-menu .btn-quote--mobile { display: none; }
}

/* Mobile menu: full-width button at top */
.mobile-menu .btn-quote--mobile {
  display: flex; margin: 16px 0 0;
}

/* When mega menu nav is too crowded — shrink nav links on smaller desktops */
@media (max-width: 1280px) {
  .topbar .main-nav { gap: 8px; }
  .topbar .main-nav a { font-size: 14px; padding: 4px 6px; }
}


/* ============================================================
   PAGE: ZAPYTAJ O WYCENĘ
   ============================================================ */
.wycena-content {
  width: 100%; background: var(--zinc-100);
  padding: 60px 0 80px;
}
.wycena-content .container { max-width: 1320px; margin: 0 auto; padding: 0 60px; }
.wycena-card {
  max-width: 880px; margin: 0 auto;
  background: var(--bw-white);
  border-radius: 4px;
  padding: 48px 56px;
  box-shadow: 0 4px 12px rgba(0,0,0,.04);
}
.wycena-card form { display: flex; flex-direction: column; gap: 20px; }
.wycena-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wycena-card .field { display: flex; flex-direction: column; gap: 6px; }
.wycena-card .field label {
  font-size: 13px; font-weight: 600; color: var(--zinc-700);
}
.wycena-card .field .req { color: var(--primary-600); }
.wycena-card input[type="text"],
.wycena-card input[type="email"],
.wycena-card input[type="tel"],
.wycena-card select,
.wycena-card textarea {
  height: 42px; padding: 0 12px;
  border: 1px solid var(--zinc-300); border-radius: 4px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--bw-black); background: var(--bw-white);
  transition: border-color .15s;
}
.wycena-card textarea { height: auto; padding: 12px; resize: vertical; min-height: 120px; }
.wycena-card input:focus,
.wycena-card select:focus,
.wycena-card textarea:focus { outline: none; border-color: var(--primary-600); }

.product-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.prod-chip {
  height: 32px; padding: 0 14px;
  background: var(--bw-white); color: var(--bw-black);
  border: 1px solid var(--zinc-300); border-radius: 4px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all .15s;
}
.prod-chip:hover { border-color: var(--zinc-500); }
.prod-chip.active { background: var(--bw-black); color: var(--bw-white); border-color: var(--bw-black); }

.file-drop {
  display: block; cursor: pointer;
  padding: 24px;
  background: var(--zinc-50, #fafafa);
  border: 2px dashed var(--zinc-300); border-radius: 4px;
  text-align: center;
  transition: border-color .15s, background .15s;
}
.file-drop:hover, .file-drop.dragover {
  border-color: var(--primary-600); background: var(--primary-100);
}
.file-drop-text {
  font-size: 13px; line-height: 1.5; color: var(--zinc-600);
}
.file-drop-filename {
  font-size: 14px; font-weight: 500; color: var(--primary-600);
}

.wycena-card .checkbox-field {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; line-height: 1.4; color: var(--zinc-700);
  cursor: pointer;
}
.wycena-card .checkbox-field input[type="checkbox"] {
  margin-top: 2px; accent-color: var(--primary-600);
  width: 16px; height: 16px;
}
.wycena-card .btn-submit {
  height: 48px; padding: 0 24px;
  background: var(--primary-600); color: var(--bw-white);
  border: 0; border-radius: 4px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  cursor: pointer; margin-top: 12px;
  transition: background .15s;
}
.wycena-card .btn-submit:hover { background: var(--primary-500); }

@media (max-width: 768px) {
  .wycena-content { padding: 40px 0; }
  .wycena-content .container { padding: 0 16px; }
  .wycena-card { padding: 32px 20px; }
  .wycena-card .form-row { grid-template-columns: 1fr; }
}

/* Fibrex thickness select */
.thick-select {
  width: 100%; height: 44px; padding: 0 14px;
  background: var(--bw-white); border: 1px solid var(--zinc-300); border-radius: 4px;
  font-family: var(--font-body); font-size: 14px; color: var(--bw-black);
  cursor: pointer;
}
.thick-select:focus { outline: none; border-color: var(--primary-600); }

/* Smaller stat value (multi-line dimensions) */
.prod-info .stats .stat-v-small {
  font-size: 18px !important; line-height: 1.3 !important;
}


/* ============================================================
   NAV DROPDOWN (small submenu — Dla partnerów)
   ============================================================ */
.has-dropdown { position: relative; }
.has-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-submenu {
  position: absolute; top: 100%; left: 0;
  min-width: 200px;
  background: var(--zinc-800);
  border-radius: 4px;
  padding: 8px 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility 0s .2s linear;
  z-index: 950;
}
.nav-submenu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px; line-height: 1.4;
  color: var(--bw-white);
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-submenu a:hover { background: var(--zinc-700); color: var(--secondary-400); }

.has-dropdown:hover .nav-submenu,
.has-dropdown:focus-within .nav-submenu,
.has-dropdown.open .nav-submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .2s ease, transform .2s ease, visibility 0s 0s linear;
}
.has-dropdown:hover > a .caret,
.has-dropdown.open > a .caret { transform: rotate(180deg); }

/* Mobile: in mobile-menu, submenu becomes inline */
.mobile-menu .has-dropdown { display: contents; }
.mobile-menu .has-dropdown > a {
  font-weight: 600;
}
.mobile-menu .nav-submenu {
  position: static; opacity: 1; visibility: visible; transform: none;
  background: transparent; padding: 4px 0 12px 16px;
  box-shadow: none;
}
.mobile-menu .nav-submenu a { padding: 8px 0; font-size: 15px; color: var(--zinc-300); }


/* ============================================================
   BOARDEX: PORÓWNANIE 3-col, PRZEKRÓJ, ARTYKUŁY z autorem
   ============================================================ */

/* Comparison table — 3-col variant (Cecha | BoardeX | GK | OSB) */
.compare-table--3col .row { grid-template-columns: 2fr 1fr 1.4fr 1fr; }

/* Przekrój ściany section */
.przekroj-wrap {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 40px; align-items: start;
  background: var(--bw-white);
  border-radius: 4px;
  padding: 32px;
  border: 1px solid var(--zinc-200);
}
.przekroj-image {
  background: var(--zinc-100); border-radius: 4px;
  overflow: hidden; aspect-ratio: 4/3;
  display: grid; place-items: center;
}
.przekroj-image svg { width: 100%; height: 100%; display: block; }
.przekroj-legend { display: flex; flex-direction: column; gap: 16px; }
.przekroj-legend h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 18px; color: var(--bw-black);
  margin: 0;
}
.przekroj-legend ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.przekroj-legend li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--bw-black);
}
.przekroj-legend li .swatch {
  width: 22px; height: 22px; border-radius: 3px; flex-shrink: 0;
  border: 1px solid rgba(0,0,0,.08);
}
.przekroj-legend li strong { font-weight: 600; }
.przekroj-legend .btn-underline {
  align-self: flex-start;
  margin-top: 8px;
  color: var(--bw-black);
  border-bottom: 1px solid var(--bw-black);
  padding-bottom: 2px;
  font-size: 14px; font-weight: 500;
}

@media (max-width: 900px) {
  .przekroj-wrap { grid-template-columns: 1fr; gap: 24px; padding: 20px; }
}

/* Article card without image — Dla wykonawców style */
.article-card--noimg {
  background: var(--bw-white);
  border-radius: 8px;
  padding: 36px 40px;
  border: 1px solid var(--zinc-200);
  display: flex; flex-direction: column;
  transition: border-color .15s, box-shadow .15s;
}
.article-card--noimg:hover { border-color: var(--primary-500); box-shadow: 0 8px 20px rgba(0,0,0,.05); }
.article-card--noimg .body {
  display: flex; flex-direction: column; gap: 18px; padding: 0;
}
.article-card--noimg .article-tag {
  position: static;
  top: auto; right: auto;
  align-self: flex-start;
  display: inline-flex; align-items: center;
  height: 28px; padding: 0 12px;
  background: var(--primary-100); color: var(--primary-600);
  font-size: 12px; font-weight: 500;
  border-radius: 4px;
  line-height: 1.2;
}
.article-card--noimg h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 22px; line-height: 1.3; letter-spacing: -0.3px;
  color: var(--bw-black);
  margin: 0;
}
.article-card--noimg .meta-row {
  display: flex; gap: 18px;
  font-size: 13px; color: var(--zinc-600);
}
.article-card--noimg .meta-item {
  display: inline-flex; align-items: center; gap: 6px;
}
.article-card--noimg .meta-item svg { width: 14px; height: 14px; }
.article-author {
  display: flex; gap: 12px; align-items: center;
  margin-top: auto;
  padding-top: 4px;
}
.article-author .avatar {
  width: 36px; height: 36px; border-radius: 50%; overflow: hidden;
  background: var(--zinc-300); flex-shrink: 0;
}
.article-author .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-author .meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.article-author .meta .name { font-size: 14px; font-weight: 600; color: var(--bw-black); }
.article-author .meta .role { font-size: 12px; color: var(--zinc-600); line-height: 1.4; }

/* Prod section gray bg */
.prod-section.bg-gray { background: var(--zinc-100); padding: 60px 0; }
.prod-section.bg-white { background: var(--bw-white); padding: 60px 0; }
.prod-section .container { max-width: 1320px; margin: 0 auto; padding: 0 60px; }
.prod-section h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 32px; line-height: 1.2; letter-spacing: -0.6px;
  color: var(--bw-black);
  margin-bottom: 32px;
}

/* Inspiracje grid — fixed 3-col, max 426px per card (zgodnie z Figma) */
.inw-inspirations-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 426px));
  gap: 20px;
  justify-content: flex-start;
}
.inw-inspiration-card { width: auto !important; height: auto !important; }
.inw-inspiration-card .img-wrap { height: 240px; }
@media (max-width: 1280px) {
  .inw-inspirations-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .inw-inspirations-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .inw-inspirations-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .prod-section .container { padding: 0 24px; }
  .prod-section h2 { font-size: 26px; }
  .compare-table--3col .row { grid-template-columns: 1.5fr 1fr 1fr 1fr; font-size: 12px; padding: 12px; }
}


/* ============================================================
   BOARDEX: Compare table — clean Figma style
   ============================================================ */
.compare-clean {
  display: flex; flex-direction: column;
  position: relative;
}
/* Highlighted BoardeX column box behind cells */
.compare-clean::before {
  content: ""; position: absolute; z-index: 0;
  top: 0; bottom: 0;
  /* Position over col 2 (BoardeX). Grid: feat 2fr | val 1fr | val 1.4fr | val 1fr — col 2 starts at 2fr/5.4fr */
  left: calc((2 / 5.4) * 100%);
  width: calc((1 / 5.4) * 100%);
  background: var(--zinc-100);
  border-radius: 8px;
}
.compare-clean .row {
  display: grid; grid-template-columns: 2fr 1fr 1.4fr 1fr;
  gap: 20px;
  padding: 18px 20px;
  font-size: 14px; line-height: 1.5;
  align-items: center;
  position: relative; z-index: 1;
}
.compare-clean .feat {
  font-weight: 500; color: var(--bw-black);
}
.compare-clean .val { font-weight: 500; }
.compare-clean .v-hl { color: var(--primary-600); font-weight: 600; }
.compare-clean .v-muted { color: var(--zinc-500); }

@media (max-width: 768px) {
  .compare-clean .row { grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 12px; padding: 14px 12px; font-size: 12px; }
  .compare-clean::before { left: calc((1.4 / 4.6) * 100%); width: calc((1 / 4.6) * 100%); }
}


/* Large modal variant — wider for partner form */
.modal-card--lg { max-width: 720px; }
.modal-card .modal-field-group { display: flex; flex-direction: column; gap: 8px; }
.modal-card .modal-field-label { font-size: 13px; font-weight: 500; color: var(--zinc-700); }
.modal-card .product-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.modal-card .prod-chip {
  height: 32px; padding: 0 14px;
  background: var(--bw-white); color: var(--bw-black);
  border: 1px solid var(--zinc-300); border-radius: 4px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all .15s;
}
.modal-card .prod-chip:hover { border-color: var(--zinc-500); }
.modal-card .prod-chip.active { background: var(--bw-black); color: var(--bw-white); border-color: var(--bw-black); }


/* Dragonwood v2 — all swatches visible (no +N counter) */
.dw-type-swatches--full {
  display: flex !important; flex-wrap: wrap; gap: 16px;
  grid-template-columns: none !important;
}
.dw-type-swatches--full .dw-swatch-chip {
  width: auto; flex: 0 0 auto;
}
.dw-type-row:has(.dw-type-swatches--full) .dw-type-link { display: none; }

/* ============================================================
   WP BLOCKS — sekcje + grid layouts dla nowych klas
   ============================================================ */

/* ── Sekcja generic (wrapper bloków) ── */
.azz-section {
  width: 100%;
  padding: 80px 0;
}
.azz-section--gray { background: var(--zinc-50, #f7f7f7); }
.azz-section--dark { background: var(--bw-black); color: var(--bw-white); }
.azz-section .container {
  width: 100%; max-width: var(--container-max, 1320px);
  margin: 0 auto; padding: 0 60px;
}

/* ── Section head (z bloku section-head) ── */
.section-head { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; margin-bottom: 40px; }
.section-head--center { align-items: center; text-align: center; }
.section-head .eyebrow {
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary-600);
}
.section-head h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 40px; line-height: 1.2; letter-spacing: -0.8px;
  color: var(--bw-black);
}
.section-head .lead {
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  color: var(--zinc-600); max-width: 720px;
}

/* ── PRODUKTY — siatka ── */
.prod-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.prod-grid--cols-2 { grid-template-columns: repeat(2, 1fr); }
.prod-grid--cols-3 { grid-template-columns: repeat(3, 1fr); }
.prod-grid--cols-4 { grid-template-columns: repeat(4, 1fr); }
.prod-grid--cols-5 { grid-template-columns: repeat(5, 1fr); }
.prod-grid--cols-6 { grid-template-columns: repeat(6, 1fr); }

.prod-card {
  display: flex; flex-direction: column;
  background: var(--bw-white);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.prod-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.prod-card-thumb {
  width: 100%; aspect-ratio: 4 / 3;
  background: var(--zinc-100);
  overflow: hidden;
}
.prod-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prod-card-info { padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 6px; }
.prod-card-brand {
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary-600);
}
.prod-card-title {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 22px; line-height: 1.3;
  color: var(--bw-black);
}
.prod-card-subtitle {
  font-family: var(--font-body); font-size: 14px; line-height: 1.5;
  color: var(--zinc-600);
}
.prod-grid-cta { margin-top: 40px; display: flex; justify-content: center; }
.prod-grid-empty { padding: 60px; text-align: center; color: var(--zinc-500); }

/* ── REALIZACJE — siatka ── */
.real-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.real-card {
  display: flex; flex-direction: column;
  background: var(--bw-white);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.real-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.real-card-img { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; }
.real-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.real-card-info { padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 6px; }
.real-card-info h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 20px; line-height: 1.3;
  color: var(--bw-black);
}
.real-card-loc {
  font-family: var(--font-body); font-size: 13px;
  color: var(--zinc-600);
}
.real-cta { margin-top: 40px; display: flex; justify-content: center; }

/* ── ARTYKUŁY (baza wiedzy) — siatka ── */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-grid .article-card {
  background: var(--bw-white);
  border-radius: 12px;
  overflow: hidden;
  width: auto;
  flex: 0 1 auto;
}
.article-grid .article-img-wrap { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; }
.article-grid .article-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-grid .article-body { padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 8px; }
.article-grid .article-tag {
  display: inline-block; align-self: flex-start;
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--primary-600);
  padding: 4px 10px; background: var(--primary-100, #e5f3fc);
  border-radius: 4px;
}
.article-grid .article-body h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 18px; line-height: 1.35;
  color: var(--bw-black);
}
.article-grid .article-body h3 a { color: inherit; text-decoration: none; }
.article-grid .article-meta {
  font-family: var(--font-body); font-size: 13px;
  color: var(--zinc-500);
  display: flex; gap: 8px; align-items: center;
}

/* ── TERRACO CARD ── */
.terraco-section { padding: 80px 60px; background: var(--zinc-50, #f7f7f7); }
.terraco-section .container { max-width: var(--container-max, 1320px); margin: 0 auto; }
.terraco-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  background: var(--bw-white);
  border-radius: 16px;
  padding: 60px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.terraco-left { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.terraco-logo { max-width: 200px; height: auto; }
.terraco-left h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 36px; line-height: 1.2; letter-spacing: -0.7px;
  color: var(--bw-black);
}
.terraco-left p {
  font-family: var(--font-body); font-size: 16px; line-height: 1.6;
  color: var(--zinc-600);
}
.terraco-right img { width: 100%; height: auto; border-radius: 12px; }

/* ── CTA BLUE ── */
.cta-blue {
  background: var(--primary-600); color: var(--bw-white);
  padding: 80px 60px;
}
.cta-blue .container { max-width: var(--container-max, 1320px); margin: 0 auto; }
.cta-blue-inner {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  text-align: center; max-width: 720px; margin: 0 auto;
}
.cta-blue-inner h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 40px; line-height: 1.2; letter-spacing: -0.8px;
  color: var(--bw-white);
}
.cta-blue-inner p {
  font-family: var(--font-body); font-size: 18px; line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.cta-blue-inner .btn-white {
  display: inline-block; padding: 14px 28px;
  background: var(--bw-white); color: var(--primary-600);
  text-decoration: none; border-radius: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  margin-top: 12px;
}
.cta-blue-inner .btn-white:hover { background: var(--zinc-100); }

/* ── PROD-FORM-SECTION (form 2-col) ── */
.prod-form-section { padding: 80px 60px; }
.prod-form-section--white { background: var(--bw-white); }
.prod-form-section--gray { background: var(--zinc-50, #f7f7f7); }
.prod-form-section .container { max-width: var(--container-max, 1320px); margin: 0 auto; }
.prod-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.prod-form-intro { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 120px; }
.prod-form-intro .eyebrow {
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary-600);
}
.prod-form-intro h2 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 36px; line-height: 1.2; letter-spacing: -0.7px;
  color: var(--bw-black);
}
.prod-form-intro .lead { font-size: 16px; line-height: 1.6; color: var(--zinc-700); }
.prod-form-form { background: var(--bw-white); padding: 32px; border-radius: 12px; box-shadow: 0 1px 3px rgba(0,0,0,0.06); }

/* ── PERSONA-CARD override dla nowego markupu (prostsza karta, bez flip 3D) ── */
.home-section .persona-card {
  position: relative;
  aspect-ratio: auto;
  background: var(--bw-white);
  border-radius: 12px;
  overflow: hidden;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.home-section .persona-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.home-section .persona-image { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; background: var(--zinc-100); }
.home-section .persona-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-section .persona-info { padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 8px; }
.home-section .persona-info h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 20px; line-height: 1.3;
  color: var(--bw-black);
}
.home-section .persona-info p {
  font-family: var(--font-body); font-size: 14px; line-height: 1.5;
  color: var(--zinc-600);
}
.home-section .persona-grid { perspective: none; }

/* ── BRAND-STRIP — gdy używany jako osobny blok (nie wewnątrz hero) ── */
.wp-block-acf-azz-brand-strip > .brand-strip,
body > .brand-strip,
main .brand-strip {
  position: relative;
  width: 100%;
  background: var(--bw-black);
  padding: 32px 0;
  overflow: hidden;
}

/* ── HOME SECTION-WRAPPERY ── */
.home-section { padding: 80px 60px; }
.home-section--gray { background: var(--zinc-50, #f7f7f7); }
.home-section .container { max-width: var(--container-max, 1320px); margin: 0 auto; }
/* Gdy section-head jest pierwszą sekcją w sekwencji - jego siostra nie ma padding-top */
.home-section--head { padding-bottom: 0; }
.home-section--head + .home-section { padding-top: 32px; }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .prod-grid, .prod-grid--cols-3, .prod-grid--cols-4, .prod-grid--cols-5, .prod-grid--cols-6 { grid-template-columns: repeat(2, 1fr); }
  .real-grid, .article-grid { grid-template-columns: repeat(2, 1fr); }
  .terraco-card { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }
  .prod-form-grid { grid-template-columns: 1fr; gap: 32px; }
  .prod-form-intro { position: static; }
  .terraco-section, .cta-blue, .prod-form-section, .home-section { padding-left: 24px; padding-right: 24px; }
}
@media (max-width: 640px) {
  .prod-grid, .prod-grid--cols-3, .prod-grid--cols-4, .prod-grid--cols-5, .prod-grid--cols-6 { grid-template-columns: 1fr; }
  .real-grid, .article-grid { grid-template-columns: 1fr; }
  .cta-blue-inner h2, .terraco-left h2 { font-size: 28px; }
  .section-head h2 { font-size: 28px; }
}

/* ============================================================
   POPUPY (modal-backdrop / modal-card) — display:none → :flex po .is-open
   ============================================================ */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .25s ease;
}
.modal-backdrop.is-open {
  display: flex;
  opacity: 1;
}
html.modal-open { overflow: hidden; }

.modal-backdrop .modal-card {
  position: relative;
  background: var(--bw-white);
  border-radius: 12px;
  width: 100%;
  max-width: 560px;     /* md domyślne */
  max-height: 92vh;
  overflow-y: auto;
  padding: 40px 36px 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  transform: translateY(10px);
  opacity: 0;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), opacity .25s ease;
}
.modal-backdrop.is-open .modal-card {
  transform: translateY(0);
  opacity: 1;
}
.modal-card--sm { max-width: 480px; }
.modal-card--md { max-width: 560px; }
.modal-card--lg { max-width: 720px; }

.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 0; color: var(--zinc-500);
  cursor: pointer; border-radius: 50%;
  transition: background .2s ease, color .2s ease;
}
.modal-close:hover { background: var(--zinc-100); color: var(--bw-black); }
.modal-close svg { display: block; }

.modal-head { margin-bottom: 18px; padding-right: 32px; }
.modal-head h3 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 24px; line-height: 1.3; letter-spacing: -0.3px;
  color: var(--bw-black);
  margin: 0 0 8px;
}
.modal-intro { font-family: var(--font-body); font-size: 15px; line-height: 1.55; color: var(--zinc-600); }
.modal-intro p { margin: 0; }

.modal-body { font-family: var(--font-body); }
.modal-body .wpcf7-form-control-wrap { display: block; margin-bottom: 12px; }
.modal-body label { display: block; font-size: 14px; font-weight: 500; color: var(--zinc-700); margin-bottom: 6px; }
.modal-body input[type="text"],
.modal-body input[type="email"],
.modal-body input[type="tel"],
.modal-body select,
.modal-body textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--zinc-300);
  border-radius: 8px;
  background: var(--bw-white);
  font-family: var(--font-body); font-size: 15px;
  color: var(--bw-black);
}
.modal-body input:focus, .modal-body textarea:focus, .modal-body select:focus {
  outline: none; border-color: var(--primary-600);
  box-shadow: 0 0 0 3px rgba(2,125,199,.15);
}
.modal-body input[type="submit"], .modal-body button[type="submit"] {
  background: var(--primary-600); color: var(--bw-white);
  padding: 12px 24px; border-radius: 8px; border: 0; font-weight: 600; cursor: pointer;
  margin-top: 8px;
}
.modal-body input[type="submit"]:hover, .modal-body button[type="submit"]:hover {
  background: var(--primary-700, #0269a8);
}

/* ============================================================
   STICKY HEADER — fallback selektory bez wymagania .hero
   (oryginalny statyk wymagał że topbar jest w .hero — w WP czasem nie)
   ============================================================ */
html.is-scrolled .topbar:not(.row) {
  background-color: #1a1a1a !important;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
  height: 72px !important;
  transition: height .35s ease, background-color .35s ease, box-shadow .35s ease;
}
html.is-scrolled .topbar:not(.row) .logo {
  transform: scale(0.4);
  transform-origin: left center;
  margin-right: -48px;
  transition: transform .35s ease, margin-right .35s ease;
}
.topbar:not(.row) {
  transition: height .45s cubic-bezier(0.4,0,0.2,1), background-color .35s ease, box-shadow .45s cubic-bezier(0.4,0,0.2,1);
}
.topbar:not(.row) .logo {
  transition: transform .45s cubic-bezier(0.4,0,0.2,1), margin-right .45s cubic-bezier(0.4,0,0.2,1);
}
