/* ============================================
   EXPO-24.pl — Landing oferta oklejania stoisk
   Brand: czerń + pomarańcz EXPO (zgodny z PDF-ami)
   ============================================ */

:root {
  /* Type scale — fluid */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing — 4px base */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Color — EXPO-24 brand */
  --color-bg: #0d0c0a;
  --color-surface: #15130f;
  --color-surface-2: #1c1a15;
  --color-surface-3: #25221c;
  --color-border: #2e2a23;
  --color-divider: #1f1d18;
  --color-text: #f4f1ea;
  --color-text-muted: #9c968a;
  --color-text-faint: #5d584f;

  /* Brand orange (pomarańcz EXPO) */
  --color-accent: #f58f23;
  --color-accent-hover: #ff9f3a;
  --color-accent-soft: rgba(245, 143, 35, 0.12);
  --color-accent-glow: rgba(245, 143, 35, 0.4);
  --map-outline-stroke: rgba(245, 143, 35, 0.62);
  --map-outline-stroke-hover: rgba(255, 159, 58, 0.95);
  --map-outline-glow: drop-shadow(0 0 1px rgba(245, 143, 35, 0.95))
    drop-shadow(0 0 4px rgba(245, 143, 35, 0.65))
    drop-shadow(0 0 10px rgba(245, 143, 35, 0.28));

  /* Booth visualization */
  --booth-wall-blank: #f4f1ea;
  --booth-wall-blank-shadow: rgba(0, 0, 0, 0.15);
  --booth-floor: #2a2620;
  --booth-frame: #c2bdb0;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.4rem;
  --radius-lg: 0.55rem;
  --radius-xl: 0.7rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 60px var(--color-accent-glow);

  /* Blur scale — mixed point blurs (xs ~10% .. xl ~100%) */
  --blur-xs: 6px;
  --blur-sm: 12px;
  --blur-md: 24px;
  --blur-lg: 56px;
  --blur-xl: 120px;

  /* Glass surfaces — mono palette (orange + white tints) */
  --glass-bg-soft:
    linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    rgba(20, 18, 15, 0.55);
  --glass-bg-medium:
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(22, 20, 16, 0.66);
  --glass-bg-strong:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.03)),
    rgba(24, 22, 18, 0.78);
  --glass-border: 1px solid rgba(255, 255, 255, 0.10);
  --glass-border-strong: 1px solid rgba(255, 255, 255, 0.16);

  /* Orb colors — mono (accent + light) */
  --orb-accent: rgba(245, 143, 35, 0.55);
  --orb-accent-soft: rgba(245, 143, 35, 0.22);
  --orb-light: rgba(255, 255, 255, 0.08);

  /* Transitions */
  --transition-fast: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 280ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 480ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Content widths */
  --content-narrow: 720px;
  --content-default: 1100px;
  --content-wide: 1280px;

  /* Fonts */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Geist', 'Inter', system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, 'Cascadia Mono', Consolas, monospace;
  --color-premium-violet: #8b5cf6;
  --color-premium-cyan: #22d3ee;
  --color-premium-magenta: #ec4899;
}

/* ============== BASE ============== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  min-height: 100dvh;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

/* Globalne ambient — fixed, zostaje gdy scrollujemy */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  background:
    radial-gradient(ellipse 800px 600px at 80% 5%, rgba(245, 143, 35, 0.06), transparent 70%),
    radial-gradient(ellipse 600px 400px at 10% 50%, rgba(255, 255, 255, 0.025), transparent 70%),
    radial-gradient(ellipse 700px 500px at 90% 95%, rgba(245, 143, 35, 0.04), transparent 70%);
  filter: blur(var(--blur-xl));
}

main {
  display: block;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  text-wrap: balance;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.015em;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--color-accent);
  color: var(--color-bg);
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============== UTILS ============== */
.accent {
  color: var(--color-accent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--color-accent);
}

.section__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--space-12);
}

.section__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.section__title em {
  font-style: normal;
  color: var(--color-accent);
}

.section__lead {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  max-width: 56ch;
  margin: 0 auto;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-6);
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn--accent {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 50%),
    var(--color-accent);
  color: #0d0c0a;
  box-shadow:
    0 4px 24px -8px var(--color-accent-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn--accent:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 50%),
    var(--color-accent-hover);
  color: #0d0c0a;
  transform: translateY(-2px);
  box-shadow:
    0 8px 32px -8px var(--color-accent-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  border-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(var(--blur-xs)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--blur-xs)) saturate(140%);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.btn--block {
  width: 100%;
}

/* ============== GLASS UTILS ============== */
.glass-soft {
  background: var(--glass-bg-soft);
  backdrop-filter: blur(var(--blur-sm)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--blur-sm)) saturate(140%);
  border: var(--glass-border);
}

.glass-medium {
  background: var(--glass-bg-medium);
  backdrop-filter: blur(var(--blur-md)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--blur-md)) saturate(150%);
  border: var(--glass-border-strong);
}

.glass-strong {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--blur-lg)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--blur-lg)) saturate(160%);
  border: var(--glass-border-strong);
}

@supports not (backdrop-filter: blur(1px)) {
  .glass-soft,
  .glass-medium,
  .glass-strong {
    background: var(--color-surface-2);
  }
}

/* ============== NAV ============== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-8);
  background:
    linear-gradient(120deg, rgba(13, 12, 10, 0.82), rgba(26, 17, 42, 0.8)),
    rgba(13, 12, 10, 0.74);
  backdrop-filter: saturate(180%) blur(var(--blur-md));
  -webkit-backdrop-filter: saturate(180%) blur(var(--blur-md));
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.nav__brand {
  display: flex;
  align-items: center;
  color: var(--color-text);
}

.nav__logo {
  width: 110px;
  height: auto;
}

.nav__links {
  display: none;
  gap: var(--space-8);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.nav__links a:hover {
  color: #fff;
}

.nav__actions {
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: clamp(var(--space-16), 10vw, var(--space-32)) var(--space-8) var(--space-24);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__bg-image,
.hero__bg-color,
.hero__bg-neutral,
.hero__bg-blur,
.hero__bg-overlay,
.hero__noise,
.hero__grid {
  position: absolute;
  inset: 0;
}

.hero__bg-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.08);
}

.hero__bg-color {
  background:
    radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--hero-base-color) 70%, #ffffff 30%) 0%, transparent 45%),
    radial-gradient(circle at 80% 25%, color-mix(in srgb, var(--hero-base-color) 85%, #000000 15%) 0%, transparent 52%),
    linear-gradient(135deg, color-mix(in srgb, var(--hero-base-color) 60%, #0b0f19 40%) 0%, #111827 100%);
}

.hero__bg-neutral {
  background:
    radial-gradient(circle at 15% 20%, rgba(148, 163, 184, 0.24) 0%, transparent 46%),
    radial-gradient(circle at 85% 15%, rgba(71, 85, 105, 0.36) 0%, transparent 50%),
    linear-gradient(140deg, #1f2937 0%, #111827 100%);
}

/* Hero hub usług miasta: zapętlone tło YouTube + blur/overlay */
.hero__bg-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero__bg-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.hero--hub-video .hero__bg-neutral--video-fallback {
  display: none;
  z-index: 0;
}

.hero--hub-video .hero__bg-blur,
.hero--hub-video .hero__bg-overlay {
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero--hub-video .hero__bg-video {
    display: none;
  }

  .hero--hub-video .hero__bg-neutral--video-fallback {
    display: block;
  }
}

.hero__bg-blur {
  backdrop-filter: blur(var(--hero-blur-px, var(--blur-lg))) saturate(130%);
  -webkit-backdrop-filter: blur(var(--hero-blur-px, var(--blur-lg))) saturate(130%);
}

.hero__bg-overlay {
  background: rgba(0, 0, 0, var(--hero-overlay-opacity, 0.76));
}

.hero__noise {
  background-image: radial-gradient(rgba(255, 255, 255, 0.11) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
  opacity: 0.06;
  mix-blend-mode: soft-light;
  z-index: 6;
  pointer-events: none;
}

.hero__grid {
  background-image:
    linear-gradient(rgba(245, 143, 35, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 143, 35, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black 30%, transparent 80%);
  z-index: 4;
}

.hero__glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--color-accent-soft) 0%, transparent 60%);
  filter: blur(var(--blur-lg));
  pointer-events: none;
  z-index: 5;
}

.hero__inner {
  max-width: var(--content-default);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
    grid-template-areas:
      "tag image"
      "title image"
      "sub image"
      "lead image"
      "cta image"
      "bullets bullets";
    align-items: start;
    column-gap: var(--space-8);
    text-align: left;
  }
}

.hero__sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin: calc(var(--space-2) * -1) auto var(--space-6);
  letter-spacing: 0.02em;
  grid-area: sub;
}

.hero__event-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(130deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: var(--space-8);
  grid-area: tag;
}

.hero__event-image {
  grid-area: image;
  width: 100%;
  max-width: 420px;
  margin: 0 auto var(--space-8);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.42);
}

.hero__event-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition);
}

.hero__event-image:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.hero__event-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 12px var(--color-accent-glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hero__event-meta {
  color: var(--color-text-muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__title {
  font-size: clamp(2.5rem, 1rem + 5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-5);
  grid-area: title;
  text-shadow: 0 8px 36px rgba(0, 0, 0, 0.42);
}

.hero__title-sub {
  font-size: clamp(1.2rem, 0.9rem + 1.2vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero__title em {
  font-style: normal;
  color: var(--color-text-muted);
  font-weight: 500;
}

.hero__lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 56ch;
  margin: 0 auto var(--space-10);
  grid-area: lead;
}

.hero__signature {
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-12);
  grid-area: cta;
}

.hero__bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4) var(--space-6);
  justify-content: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  grid-area: bullets;
}

@media (min-width: 1024px) {
  .hero__event-tag {
    width: fit-content;
    margin-bottom: var(--space-6);
  }

  .hero__event-image {
    margin: 0 0 var(--space-4);
    align-self: start;
  }

  .hero__title,
  .hero__sub,
  .hero__lead {
    margin-left: 0;
    margin-right: 0;
  }

  .hero__cta {
    justify-content: flex-start;
    margin-bottom: var(--space-8);
  }

  .hero__bullets {
    justify-content: flex-start;
  }
}

.hero__bullets li {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.hero__bullets svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}

/* ============== HERO — huby (miasto/kategoria/hala/index) ==============
   Na lg .hero__inner ma grid pod kartę wydarzenia (kolumna + obrazek).
   Huby nie mają obrazka — grid zostawia „dziurę” i text-align:left psuje wyśrodkowanie.
   Tu wymuszamy jedną kolumnę + flex i wyrównujemy lead / podpis / statystyki. */
.hero--hub {
  padding-top: clamp(var(--space-10), 6vw, var(--space-16));
  padding-bottom: var(--space-16);
}

.hero__inner.hero__inner--hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
}

.hero__inner--hub .hero__title,
.hero__inner--hub .hero__title-sub,
.hero__inner--hub .hero__lead,
.hero__inner--hub .hero__signature,
.hero__inner--hub .hero__extra-links {
  text-align: center;
}

.hero__inner--hub .hero__signature {
  max-width: min(28rem, 92vw);
  margin-inline: auto;
  line-height: 1.45;
  text-wrap: balance;
}

.hero__inner--hub .hub-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: min(34rem, 100%);
  margin-top: var(--space-8);
  margin-inline: auto;
  gap: var(--space-5) var(--space-8);
  padding: 0;
  list-style: none;
}

.hero__inner--hub .hub-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  flex: 1 1 5.5rem;
  min-width: 0;
  max-width: 10.5rem;
}

.hero__inner--hub .hub-stat__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xl);
  color: var(--color-accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero__inner--hub .hub-stat__label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__inner--hub .hero__extra-links {
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.78);
}

.hero__inner--hub .hero__extra-links a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.hero__inner--hub .hero__extra-links a:hover {
  color: #fff;
}

@media (min-width: 1024px) {
  .hero__inner.hero__inner--hub {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    grid-template-columns: unset;
    grid-template-areas: unset;
    column-gap: unset;
  }

  .hero__inner--hub .hero__event-tag {
    margin-inline: auto;
  }

  .hero__inner--hub .hero__title,
  .hero__inner--hub .hero__lead {
    margin-inline: auto;
  }

  .hero__inner--hub .hero__cta,
  .hero--hub .hero__cta {
    justify-content: center;
  }
}

/* Hero hali — dwie kolumny: treść + mapa województwa */
.hero--hub-location .hero__inner.hero__inner--hub-location {
  max-width: var(--content-wide);
}

.hero__hub-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.hero__inner--hub-location .hero__hub-main {
  align-items: center;
  text-align: center;
}

.hero__hub-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
  max-width: 470px;
  margin-inline: auto;
  padding: var(--space-5);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
}

.hero__hub-map .poland-map-svg--hero {
  width: 100%;
  height: auto;
  filter: var(--map-outline-glow) drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.hero__hub-map .map-voivodeship--solo {
  fill: rgba(245, 143, 35, 0.22);
  stroke: var(--map-outline-stroke-hover);
  stroke-width: 2.5;
  opacity: 1;
}

.hero__hub-map .poland-map-svg--voivodeship {
  max-height: min(365px, 54vw);
}

.hero__hub-map .map-city-point--hero {
  fill: var(--color-accent);
  stroke: var(--color-bg);
  stroke-width: 3;
  pointer-events: none;
}

.hero__hub-map .map-city-point--active {
  fill: var(--color-accent);
  stroke: var(--color-bg);
  stroke-width: 3;
  pointer-events: none;
}

.hero__hub-map .map-city-point--secondary {
  fill: rgba(255, 255, 255, 0.5);
  stroke: var(--color-bg);
  stroke-width: 2;
  pointer-events: all;
  cursor: pointer;
  transition: fill 0.2s ease;
}

.hero__hub-map .map-city-point--secondary:hover {
  fill: rgba(255, 255, 255, 0.85);
}

.hero__hub-map .map-city-group--hero.is-highlighted .map-city-point--secondary {
  fill: var(--color-accent-hover);
  stroke: #fff;
  stroke-width: 2.5;
}

.hero__hub-map .map-city-label--hero {
  font-size: 12px;
  font-weight: 600;
  fill: #fff;
  pointer-events: none;
}

.hero__hub-map-label {
  margin: 0;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.hero__hub-map-label a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.12em;
  text-transform: none;
  letter-spacing: normal;
}

.hero__hub-map-label a:hover {
  color: #fff;
}

.city-hero-map {
  width: 100%;
}

.city-hero-map__controls {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-3);
}

.city-hero-map__btn {
  min-width: 2.2rem;
  min-height: 2.2rem;
  padding: 0 var(--space-3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.city-hero-map__btn:hover {
  background: rgba(245, 143, 35, 0.2);
  border-color: var(--color-accent);
}

.city-hero-map__btn--reset {
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.city-hero-map__list-wrap {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: var(--space-3);
}

.city-hero-map__list-title {
  margin: 0 0 var(--space-2);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.city-hero-map__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-2);
  max-height: 14rem;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.2rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 143, 35, 0.6) rgba(255, 255, 255, 0.08);
}

.city-hero-map__list::-webkit-scrollbar {
  width: 8px;
}

.city-hero-map__list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.city-hero-map__list::-webkit-scrollbar-thumb {
  background: rgba(245, 143, 35, 0.6);
  border-radius: 999px;
}

.city-hero-map__link {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  padding: 0.38rem 0.55rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--text-xs);
}

.city-hero-map__link:hover {
  border-color: rgba(245, 143, 35, 0.5);
  background: rgba(245, 143, 35, 0.09);
}

.city-hero-map__item.is-active .city-hero-map__link {
  border-color: var(--color-accent);
  background: rgba(245, 143, 35, 0.12);
}

.city-hero-map__name {
  color: #fff;
  font-weight: 600;
}

.city-hero-map__city {
  color: var(--color-text-muted);
  text-align: right;
}

@media (min-width: 1024px) {
  .hero__inner.hero__inner--hub.hero__inner--hub-location {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
    column-gap: var(--space-10);
    align-items: center;
    text-align: left;
  }

  .hero__inner--hub-location .hero__hub-main {
    align-items: flex-start;
    text-align: left;
  }

  .hero__inner--hub-location .hero__event-tag {
    margin-inline: 0;
  }

  .hero__inner--hub-location .hero__title,
  .hero__inner--hub-location .hero__title-sub,
  .hero__inner--hub-location .hero__lead,
  .hero__inner--hub-location .hero__signature,
  .hero__inner--hub-location .hero__extra-links {
    text-align: left;
    margin-inline: 0;
  }

  .hero__inner--hub-location .hero__signature {
    max-width: none;
  }

  .hero__inner--hub-location .hub-stats {
    justify-content: flex-start;
    margin-inline: 0;
  }

  .hero__inner--hub-location .hub-stat {
    align-items: flex-start;
  }

  .hero__inner--hub-location .hero__cta {
    justify-content: flex-start;
  }

  .hero__hub-map {
    margin-inline: 0;
    align-self: center;
  }
}

@media (max-width: 1023px) {
  .hero__inner--hub-location .hero__hub-map {
    margin-top: var(--space-8);
  }
}

/* ============== TRUST STRIP ============== */
.trust {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: var(--space-8) var(--space-8);
}

.trust__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .trust__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.trust__label {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}

.trust__logos {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  align-items: center;
  justify-content: center;
}

.trust__logos span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}

.trust__logos span:hover {
  opacity: 1;
}

/* ============== CONFIGURATOR ============== */
/* Twist: ostre krawędzie + pomarańczowy róg L-bracket / corner-cut */
.has-corner {
  --corner-size: 28px;
  --corner-thickness: 2px;
  --corner-color: var(--color-accent);
  --corner-inset: 0px;
  position: relative;
}

.has-corner::after {
  content: '';
  position: absolute;
  width: var(--corner-size);
  height: var(--corner-size);
  pointer-events: none;
  z-index: 2;
}

.has-corner--tr::after {
  top: var(--corner-inset);
  right: var(--corner-inset);
  border-top: var(--corner-thickness) solid var(--corner-color);
  border-right: var(--corner-thickness) solid var(--corner-color);
}

.has-corner--tl::after {
  top: var(--corner-inset);
  left: var(--corner-inset);
  border-top: var(--corner-thickness) solid var(--corner-color);
  border-left: var(--corner-thickness) solid var(--corner-color);
}

.has-corner--br::after {
  bottom: var(--corner-inset);
  right: var(--corner-inset);
  border-bottom: var(--corner-thickness) solid var(--corner-color);
  border-right: var(--corner-thickness) solid var(--corner-color);
}

.has-corner--bl::after {
  bottom: var(--corner-inset);
  left: var(--corner-inset);
  border-bottom: var(--corner-thickness) solid var(--corner-color);
  border-left: var(--corner-thickness) solid var(--corner-color);
}

.has-cut {
  --cut-size: 12px;
}

.has-cut--tr {
  clip-path: polygon(0 0, calc(100% - var(--cut-size)) 0, 100% var(--cut-size), 100% 100%, 0 100%);
}

.has-cut--bl {
  clip-path: polygon(0 0, 100% 0, 100% 100%, var(--cut-size) 100%, 0 calc(100% - var(--cut-size)));
}

.has-cut--br {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut-size)), calc(100% - var(--cut-size)) 100%, 0 100%);
}

.configurator {
  padding: var(--space-24) var(--space-8);
  background: var(--color-bg);
  position: relative;
}

.hub-quick-jump {
  margin-top: calc(var(--space-6) * -1);
  padding: 0 var(--space-8) var(--space-8);
  position: relative;
  z-index: 2;
}

.hub-quick-jump__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

.hub-quick-jump__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.56rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(16, 16, 22, 0.62);
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: border-color var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
}

.hub-quick-jump__btn:hover {
  border-color: rgba(245, 143, 35, 0.5);
  background: rgba(245, 143, 35, 0.1);
  transform: translateY(-1px);
}

.hub-quick-jump__btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .hub-quick-jump {
    margin-top: calc(var(--space-4) * -1);
    padding: 0 var(--space-5) var(--space-7);
  }
}

.configurator::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, var(--color-accent-soft) 0%, transparent 50%);
  pointer-events: none;
}

.configurator__panel {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  gap: var(--space-8);
  position: relative;
  z-index: 1;
  padding: var(--space-8) var(--space-7);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.005)),
    linear-gradient(180deg, rgba(18, 16, 22, 0.96) 0%, rgba(8, 7, 11, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
  --corner-size: 64px;
  --corner-thickness: 3px;
  --corner-inset: 8px;
}

.configurator .section__header {
  max-width: var(--content-wide);
  margin: 0 auto var(--space-12);
  text-align: center;
  padding: 0 var(--space-4);
}

.configurator .section__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-4);
}

.configurator .section__lead {
  max-width: 60ch;
  margin: 0 auto;
  font-size: var(--text-lg);
  line-height: 1.55;
}

@media (min-width: 1024px) {
  .configurator__panel {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-7);
    align-items: start;
  }

  .config__left {
    grid-column: 1;
    grid-row: 1;
  }

  .config__controls {
    grid-column: 2;
    grid-row: 1;
  }

  .config__benefits {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

.config__left {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  min-width: 0;
}

.config__preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-1);
}

.config__preview-title {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 238, 234, 0.9);
  line-height: 1.1;
}

.booths__demo-badge {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 0.28rem 0.55rem 0.28rem 0.7rem;
  background: rgba(245, 143, 35, 0.1);
  border-top: 1px solid rgba(245, 143, 35, 0.55);
  border-right: 1px solid rgba(245, 143, 35, 0.55);
  border-bottom: 1px solid rgba(245, 143, 35, 0.18);
  box-shadow: inset 3px 0 0 var(--color-accent);
  font-weight: 700;
}

.booths {
  padding: 0;
  background: transparent;
  border: 0;
}

.booths__stage-wrap {
  position: relative;
}

.booths__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, #1a1814 0%, #0a0907 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  border-radius: 8px;
}

.booths__demo-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 9, 7, 0.15) 0%, rgba(10, 9, 7, 0.45) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.booths__progress {
  position: absolute;
  inset: 10px 10px auto 10px;
  z-index: 6;
  display: flex;
  gap: 6px;
}

.booths__progress-segment {
  flex: 1;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

.booths__progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.96);
  transform-origin: left center;
  transform: scaleX(0);
}

.booths__stage--empty::after {
  content: attr(data-empty-label);
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 600;
  background: rgba(10, 9, 7, 0.35);
}

.booth__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: none;
  filter: saturate(0.92);
  opacity: 0.95;
}

.booth__img:not([hidden]) {
  display: block;
}

.booth__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: none;
  background: #0b0b0b;
}

.booth__video:not([hidden]) {
  display: block;
}

.booths__carousel-nav {
  position: absolute;
  inset: auto 12px 12px auto;
  z-index: 5;
  display: flex;
  gap: 8px;
}

.booths__carousel-btn {
  width: 34px;
  height: 34px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(10, 9, 7, 0.65);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.booths__carousel-btn:hover {
  background: rgba(10, 9, 7, 0.85);
}

.booths__carousel-btn--pause {
  position: relative;
}

.booths__pause-icon {
  font-size: 12px;
  line-height: 1;
}

.booths__pause-icon--play {
  display: none;
  margin-left: 1px;
}

.booths__carousel-btn--pause.is-paused {
  background: rgba(255, 165, 0, 0.28);
  border-color: rgba(255, 165, 0, 0.85);
}

.booths__carousel-btn--pause.is-paused .booths__pause-icon--pause {
  display: none;
}

.booths__carousel-btn--pause.is-paused .booths__pause-icon--play {
  display: inline;
}

.booths__carousel-dots {
  position: absolute;
  inset: auto auto 14px 14px;
  z-index: 5;
  display: flex;
  gap: 8px;
}

.booths__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}

.booths__dot.is-active {
  background: #fff;
}

.booths__demo-caption {
  margin: var(--space-3) 0 0;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Package picker segmented control */
.config__picker {
  border: 0;
  padding: 0;
  margin: 0;
}

.config__picker-legend {
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  padding: 0;
}

.picker-segmented {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.3rem;
  padding: 0.3rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 9, 13, 0.82);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

@media (max-width: 900px) {
  .picker-segmented {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }
}

.picker-card {
  position: relative;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: 0.72rem 0.95rem;
  min-height: 78px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.picker-card--segment {
  justify-content: center;
}

.picker-card:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.16);
}

.picker-card--active,
.picker-card:has(input:checked) {
  border-color: var(--color-accent);
  box-shadow:
    0 0 0 1px rgba(245, 143, 35, 0.25),
    0 6px 14px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  background: linear-gradient(160deg, rgba(245, 143, 35, 0.12), rgba(245, 143, 35, 0.04));
}

.picker-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.picker-card:focus-within {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.picker-card__main {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  justify-content: center;
  text-align: center;
}

.picker-card__code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  letter-spacing: -0.018em;
  color: #fff;
}

.picker-card__alt {
  font-size: 0.68rem;
  color: rgba(240, 238, 234, 0.6);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.picker-card__hint {
  display: none;
}

.config__lumibox {
  position: relative;
  padding: var(--space-4) var(--space-5);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.015);
  box-shadow: inset 3px 0 0 rgba(245, 143, 35, 0.45);
  border-radius: 8px;
}

.config__lumibox .toggle.toggle--lumibox {
  position: relative;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--space-3);
}

.toggle--lumibox .toggle__label {
  flex: 1;
  min-width: 140px;
}

.toggle__badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.22rem 0.5rem;
  border: 1px solid rgba(245, 143, 35, 0.45);
  color: rgba(245, 200, 150, 0.95);
  margin-left: auto;
  white-space: nowrap;
  font-weight: 700;
  box-shadow: inset 2px 0 0 var(--color-accent);
}

@media (max-width: 640px) {
  .toggle__badge {
    margin-left: 0;
    margin-top: var(--space-2);
    width: 100%;
    text-align: center;
  }
}

.toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  cursor: pointer;
}

.toggle input[type='checkbox'] {
  position: absolute;
  left: 0;
  top: 0;
  width: 2.75rem;
  height: 1.75rem;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.toggle__track {
  width: 44px;
  height: 24px;
  background: var(--color-surface-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  position: relative;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.toggle__thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--color-text-muted);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.toggle input:checked ~ .toggle__track {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.toggle input:checked ~ .toggle__track .toggle__thumb {
  left: 22px;
  background: #0d0c0a;
}

.toggle__label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toggle__label strong {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.toggle__sub {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.config__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Right column detail */
.config__controls {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  min-width: 0;
}

.config__detail-panel {
  position: relative;
  padding: var(--space-6);
  border: var(--glass-border);
  background: var(--glass-bg-medium);
  backdrop-filter: blur(var(--blur-md)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--blur-md)) saturate(150%);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  border-radius: 9px;
}

.config__detail-kicker {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 700;
  margin: 0;
}

.config__package {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.pkg {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  min-height: 0;
}

.pkg__head {
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pkg__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.pkg__name {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.pkg__name-icon {
  display: inline-flex;
  color: var(--color-accent);
  opacity: 0.95;
}

.pkg__alt {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.7em;
}

.pkg__claim {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.55;
}

.pkg__body-grid {
  display: grid;
  gap: var(--space-5);
  align-items: start;
}

@media (min-width: 760px) {
  .pkg__body-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: var(--space-5);
  }
}

.pkg__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
}

.pkg__list li {
  position: relative;
  padding-left: var(--space-6);
  font-size: var(--text-sm);
  line-height: 1.45;
  color: var(--color-text);
}

.pkg__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(-45deg);
}

.pkg__when--callout {
  position: relative;
  padding: var(--space-4);
  border: 1px solid rgba(245, 143, 35, 0.4);
  background: rgba(245, 143, 35, 0.07);
  margin: 0;
  align-self: stretch;
  border-radius: 8px;
}

.pkg__when__title {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.pkg__when__icon {
  color: var(--color-accent);
  flex-shrink: 0;
}

.pkg__when__text {
  margin: 0;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.55;
}

.config__lumibox-strip {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-4) var(--space-5);
  border: 1px solid rgba(245, 143, 35, 0.3);
  background:
    linear-gradient(165deg, rgba(245, 143, 35, 0.1), rgba(245, 143, 35, 0.02));
  border-radius: 8px;
}

.config__lumibox-strip-icon {
  color: var(--color-accent);
  display: flex;
  align-items: center;
}

.config__lumibox-strip-body p {
  margin: 0;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.config__lumibox-strip-title {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 2px;
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 700;
}

.config__lumibox-strip-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-3);
  min-width: 0;
}

.config__lumibox-strip-toggle-solo {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: 100%;
  box-sizing: border-box;
  gap: 0.4rem;
  margin: 0;
  padding: 0.45rem 0.8rem;
  font-family: inherit;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 0;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.config__lumibox-strip-toggle-solo-mark {
  font-weight: 800;
}

.config__lumibox-strip-toggle-solo--add {
  border: 1px solid rgba(100, 190, 130, 0.55);
  color: rgb(170, 230, 195);
  background: rgba(60, 140, 90, 0.16);
}

.config__lumibox-strip-toggle-solo--add:hover {
  background: rgba(60, 140, 90, 0.28);
  border-color: rgba(120, 210, 160, 0.7);
  color: rgb(200, 245, 215);
}

.config__lumibox-strip-toggle-solo--remove {
  border: 1px solid rgba(220, 100, 100, 0.55);
  color: rgb(255, 170, 170);
  background: rgba(160, 50, 50, 0.18);
}

.config__lumibox-strip-toggle-solo--remove:hover {
  background: rgba(180, 55, 55, 0.32);
  border-color: rgba(240, 130, 130, 0.75);
  color: rgb(255, 210, 210);
}

.config__lumibox-strip-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  gap: 0.4rem;
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(245, 143, 35, 0.65);
  color: var(--color-accent);
  font-weight: 700;
  white-space: nowrap;
  background: rgba(245, 143, 35, 0.05);
  border-radius: 0;
  text-align: center;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.config__lumibox-strip-action:hover {
  background: var(--color-accent);
  color: #0d0c0a;
}

@media (max-width: 640px) {
  .config__lumibox-strip {
    grid-template-columns: auto 1fr;
  }

  .config__lumibox-strip-actions {
    grid-column: 1 / -1;
    align-items: stretch;
  }

  .config__lumibox-strip-toggle-solo {
    padding-block: 0.55rem;
  }
}

.config__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-1);
  padding-block: var(--space-4);
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  box-shadow: 0 0 24px rgba(245, 143, 35, 0.22);
  border-radius: 10px;
}

.config__cta-icon {
  display: inline-flex;
  opacity: 0.95;
}

.config__cta-arrow {
  opacity: 0.85;
}

.config__benefits {
  list-style: none;
  padding: var(--space-6) 0 var(--space-3);
  margin: 0;
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
  border-radius: 8px;
}

@media (max-width: 700px) {
  .config__benefits {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
}

.config__benefit {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.45;
  padding-bottom: var(--space-1);
}

.config__benefit-icon {
  position: relative;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
  background: rgba(245, 143, 35, 0.08);
  border: 1px solid rgba(245, 143, 35, 0.3);
  margin-top: 2px;
  margin-bottom: 4px;
}

.config__benefit-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.config__benefit-title {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.25;
}

.config__benefit-sub {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .booths__stage {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }
}

/* ============== EVENT INSIGHTS ============== */
.event-insights {
  padding: var(--space-24) var(--space-8);
}

.event-insights__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  position: relative;
}

.event-insights__techline {
  height: 1px;
  margin-bottom: var(--space-5);
  background: linear-gradient(90deg, rgba(245,143,35,0), rgba(245,143,35,0.72), rgba(245,143,35,0));
}

.event-insights__box {
  background: var(--glass-bg-medium);
  backdrop-filter: blur(var(--blur-md)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--blur-md)) saturate(150%);
  border: var(--glass-border-strong);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
}

.event-insights__layout {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 1024px) {
  .event-insights__layout {
    grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
    gap: var(--space-8);
  }
}

.event-insights__media-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  transform: translateY(var(--space-3));
}

.event-insights__media {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.event-insights__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.event-insights__media-fallback {
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  padding: var(--space-5);
  text-align: center;
}

.insights-cta-config {
  width: 100%;
  margin-top: var(--space-1);
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-4);
}

.insights-cta-config svg {
  flex-shrink: 0;
}

.event-insights__main {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  min-width: 0;
  border-left: 1px solid rgba(255,255,255,0.14);
  padding-left: var(--space-5);
}

.event-insights__main > .eyebrow {
  margin-bottom: 0;
}

.event-insights__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--color-text);
}

.event-insights__source,
.event-insights__disclaimer {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin: 0;
}

.event-insights__disclaimer {
  color: var(--color-text-faint);
  line-height: 1.6;
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
}

.event-insights__main > .event-tabs {
  margin-top: var(--space-2);
}

.event-tabs {
  display: flex;
  gap: var(--space-2);
  border-bottom: 1px solid var(--color-divider);
  margin-bottom: var(--space-4);
  overflow-x: auto;
  padding-bottom: var(--space-2);
}

.event-tab {
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.event-tab:hover {
  border-color: var(--color-accent);
  color: var(--color-text);
}

.event-tab.is-active {
  background: var(--color-accent-soft);
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.event-panel {
  display: grid;
  gap: 0;
}

.event-panel[hidden] {
  display: none !important;
}

.event-row {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: var(--space-4);
  align-items: start;
  padding: var(--space-3) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  position: relative;
}

.event-row:last-child {
  border-bottom: 0;
}

.event-row::before {
  content: '';
  position: absolute;
  left: calc(var(--space-5) * -1);
  top: 50%;
  width: 10px;
  height: 1px;
  background: rgba(245,143,35,0.6);
}

.event-row__label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 700;
}

.event-row__value {
  font-size: var(--text-base);
  color: var(--color-text);
}

.event-row__value--strong {
  font-family: var(--font-mono);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent);
  letter-spacing: -0.02em;
}

.event-row--stat {
  align-items: center;
}

.event-description {
  padding: var(--space-2) 0;
}

.event-description p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.8;
  margin: 0;
}

.event-insights__stoisko {
  margin: var(--space-3) 0 0;
  padding: var(--space-4) var(--space-5);
  background: rgba(245, 143, 35, 0.06);
  border-left: 2px solid var(--color-accent);
  border-radius: 0 var(--radius-sm, 6px) var(--radius-sm, 6px) 0;
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-text);
}

.event-insights__stoisko strong {
  color: var(--color-accent);
  font-weight: 700;
}

.event-insights__stoisko a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
}

.event-insights__stoisko a:hover {
  color: var(--color-accent-hover);
}

/* ============== Mini-kalendarz: pozycja w tygodniu ============== */
.event-mini-cal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: stretch;
  max-width: 320px;
}

.event-mini-cal__head,
.event-mini-cal__week {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
}

.event-mini-cal__head {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: 2px;
}

.event-mini-cal__head > span {
  text-align: center;
  padding: 2px 0;
}

.event-mini-cal__head > span.is-weekend {
  color: var(--color-text-muted);
}

.event-mini-cal__day {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text-faint);
  border: 1px solid transparent;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.event-mini-cal__day.is-weekend {
  background: rgba(255, 255, 255, 0.015);
}

.event-mini-cal__day.is-active {
  background: var(--color-accent);
  color: #0d0c0a;
  box-shadow: 0 2px 8px -3px var(--color-accent-glow);
}

.event-mini-cal__day.is-active.is-weekend {
  background: var(--color-accent-hover, var(--color-accent));
}

.event-mini-cal__day.is-start {
  border-color: rgba(255, 255, 255, 0.85);
  border-left-width: 2px;
}

.event-mini-cal__day.is-end {
  border-color: rgba(255, 255, 255, 0.85);
  border-right-width: 2px;
}

.event-mini-cal__day.is-start.is-end {
  border-width: 2px;
}

.event-mini-cal__ellipsis {
  text-align: center;
  font-family: var(--font-mono);
  color: var(--color-text-faint);
  letter-spacing: 0.3em;
  padding: 2px 0;
}

.event-mini-cal__summary {
  margin: 4px 0 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.event-mini-cal__summary strong {
  color: var(--color-accent);
  text-transform: lowercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.event-row--weekdays {
  align-items: start;
}

@media (max-width: 480px) {
  .event-mini-cal {
    max-width: 100%;
  }
  .event-mini-cal__day {
    font-size: 0.7rem;
    border-radius: 4px;
  }
  .event-mini-cal__head {
    font-size: 0.6rem;
  }
}

@media (max-width: 720px) {
  .event-row {
    grid-template-columns: 1fr;
    gap: var(--space-1);
  }
}

/* ============== PAINS ============== */
.pains {
  padding: var(--space-24) var(--space-8);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.pains__grid {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pain-card {
  background: var(--glass-bg-soft);
  backdrop-filter: blur(var(--blur-sm)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--blur-sm)) saturate(140%);
  border: var(--glass-border);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.pain-card:hover {
  background: var(--glass-bg-medium);
  border-color: rgba(255, 255, 255, 0.16);
  border-left-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

@supports not (backdrop-filter: blur(1px)) {
  .pain-card {
    background: var(--color-surface-2);
  }
}

.pain-card h3 {
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
}

.pain-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.pain-card p + p {
  margin-top: var(--space-3);
}

.pain-card__cta {
  margin-top: var(--space-3);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.pain-card__cta a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed currentColor;
}

.pain-card__cta a:hover {
  color: var(--color-accent-hover);
}

/* Lokalny pitch (miasto/hala) — odróżniony od standardowego "_services_pains" */
.pains--local-pitch {
  background: linear-gradient(180deg, rgba(245,143,35,0.04) 0%, var(--color-surface) 70%);
  padding: var(--space-20) var(--space-8);
}

.pains--local-pitch .section__header {
  margin-bottom: var(--space-8);
}

.pains--local-pitch .pain-card {
  border-left-width: 3px;
  background: var(--color-surface);
}

/* ============== FOILS ============== */
.foils {
  padding: var(--space-24) var(--space-8);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.foils__groups {
  max-width: var(--content-wide);
  margin: 0 auto var(--space-10);
  display: grid;
  gap: var(--space-8);
}

.foils-group {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border-radius: var(--radius-md);
  padding: var(--space-6);
}

.foils-group__header {
  margin-bottom: var(--space-5);
}

.foils-group__label {
  display: inline-block;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
  font-family: var(--font-display);
  font-weight: 600;
}

.foils-group__header h3 {
  font-size: var(--text-lg);
  line-height: 1.25;
}

.foil-grid {
  margin: 0;
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.foil-grid--supporting {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.foil-card {
  background: rgba(14, 13, 18, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: var(--space-5);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.foil-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.foil-card h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.foil-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.foils__intro {
  margin-top: calc(var(--space-4) * -1);
  margin-bottom: var(--space-8);
}

.foils__note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 56ch;
  margin: 0 auto;
}

.foils__note strong {
  color: var(--color-accent);
}

@media (max-width: 900px) {
  .foils-group {
    padding: var(--space-5);
  }

  .foil-grid,
  .foil-grid--supporting {
    grid-template-columns: 1fr;
  }
}

/* ============== PROCESS ============== */
.process {
  padding: var(--space-24) var(--space-8);
}

.process__list {
  max-width: var(--content-wide);
  margin: 0 auto;
  list-style: none;
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
  counter-reset: step;
}

@media (min-width: 900px) {
  .process__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1500px) {
  .process__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.process__step {
  position: relative;
  padding: var(--space-8) var(--space-6);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.process__step:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.process__num {
  position: absolute;
  top: -16px;
  left: var(--space-6);
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #0d0c0a;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.02em;
  box-shadow: 0 0 24px var(--color-accent-glow);
}

.process__step h3 {
  margin-top: var(--space-3);
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.process__step p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============== EXTRAS ============== */
.extras {
  padding: var(--space-24) var(--space-8);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.extras__grid {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}

.extra {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--transition-fast);
}

.extra:hover {
  transform: translateY(-2px);
  border-color: var(--color-accent);
}

.extra h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.extra p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.extra ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--text-sm);
}

.extra ul li {
  position: relative;
  padding-left: var(--space-5);
  color: var(--color-text);
}

.extra ul li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.extra__sizes {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  color: var(--color-accent);
  margin-top: var(--space-3);
}

/* Featured (LUMIBOX) — premium card */
.extra--featured {
  background: linear-gradient(135deg, var(--color-surface-2) 0%, var(--color-bg) 100%);
  border: 1px solid var(--color-accent);
  position: relative;
  overflow: hidden;
  grid-column: span 2;
}

@media (max-width: 640px) {
  .extra--featured {
    grid-column: span 1;
  }
}

.extra--featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, var(--color-accent-soft) 0%, transparent 60%);
  pointer-events: none;
}

.extra__badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  background: var(--color-accent-soft);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.extra--featured h3 {
  font-size: var(--text-xl);
  color: var(--color-accent);
}

.extra__lead {
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

/* Featured (LUMIBOX) — wariant z wideo w tle */
.extra--has-video {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 320px;
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

/* Kafelek 1-kolumnowy: samo wideo, wysokość jak sąsiednie kafelki w rzędzie */
.extra--video-only {
  padding: 0;
  align-self: stretch;
}

.extra--video-only .extra__bg-video {
  filter: none;
  -webkit-filter: none;
  opacity: 1;
}

.extra--has-video:hover,
.extra--has-video:focus-within {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45);
}

.extra__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  filter: saturate(1.05) brightness(0.55);
}

.extra__bg-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(10, 10, 12, 0.78) 0%, rgba(10, 10, 12, 0.55) 45%, rgba(10, 10, 12, 0.82) 100%),
    radial-gradient(circle at 85% -10%, var(--color-accent-soft) 0%, transparent 55%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.extra--has-video::before {
  content: none;
}

.extra__link-stretch {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  text-decoration: none;
  border-radius: inherit;
  outline-offset: -4px;
}

.extra__link-stretch:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -6px;
}

.extra--has-video .extra__content {
  position: relative;
  z-index: 2;
  pointer-events: none;
}

.extra--has-video .extra__badge {
  background: rgba(245, 143, 35, 0.18);
  color: var(--color-accent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.extra--has-video h3,
.extra--has-video .extra__lead,
.extra--has-video ul li {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.extra--has-video .extra__lead {
  color: rgba(255, 255, 255, 0.92);
}

@media (prefers-reduced-motion: reduce) {
  .extra__bg-video { display: none; }
  .extra--has-video { background: linear-gradient(135deg, var(--color-surface-2) 0%, var(--color-bg) 100%); }
}

/* ============== EDGE / Why expo-24 ============== */
.edge {
  padding: var(--space-24) var(--space-8);
  position: relative;
  overflow: hidden;
}

.edge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, var(--color-accent-soft) 0%, transparent 60%);
  pointer-events: none;
}

.edge__inner {
  max-width: var(--content-default);
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.edge__lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 64ch;
  margin: 0 auto var(--space-10);
}

.edge__lead a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--color-accent-soft);
  text-underline-offset: 4px;
}

.edge__points {
  list-style: none;
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  text-align: left;
}

.edge__points li {
  background: var(--glass-bg-soft);
  backdrop-filter: blur(var(--blur-sm)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--blur-sm)) saturate(140%);
  border: var(--glass-border);
  border-left: 3px solid var(--color-accent);
  padding: var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.edge__points li:hover {
  background: var(--glass-bg-medium);
  transform: translateY(-2px);
}

@supports not (backdrop-filter: blur(1px)) {
  .edge__points li {
    background: var(--color-surface);
  }
}

.edge__points strong {
  display: block;
  color: var(--color-text);
  font-family: var(--font-display);
  margin-bottom: var(--space-2);
  font-size: var(--text-base);
}

/* ============== FAQ ============== */
.faq {
  padding: var(--space-24) var(--space-8);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.faq__list {
  max-width: var(--content-narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.faq__item {
  background: var(--glass-bg-soft);
  backdrop-filter: blur(var(--blur-sm)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--blur-sm)) saturate(140%);
  border: var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq__item[open] {
  border-color: var(--color-accent);
  background: var(--glass-bg-medium);
  backdrop-filter: blur(var(--blur-md)) saturate(150%);
  -webkit-backdrop-filter: blur(var(--blur-md)) saturate(150%);
}

@supports not (backdrop-filter: blur(1px)) {
  .faq__item {
    background: var(--color-surface-2);
  }
  .faq__item[open] {
    background: var(--color-surface-3);
  }
}

.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform var(--transition-fast);
}

.faq__item[open] summary svg {
  transform: rotate(180deg);
}

.faq__item p {
  padding: 0 var(--space-6) var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ============== CONTACT ============== */
.contact {
  padding: var(--space-24) var(--space-8);
}

.contact__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  gap: var(--space-12);
}

@media (min-width: 900px) {
  .contact__inner {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-16);
  }
}

.contact__copy .section__title {
  font-size: var(--text-xl);
  text-align: left;
}

.contact__copy p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  margin-bottom: var(--space-8);
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.contact__channel:hover {
  border-color: var(--color-accent);
  transform: translateX(4px);
}

.contact__channel-label {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  font-weight: 600;
  min-width: 60px;
}

.contact__channel-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
}

/* === FORM === */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.form-row {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr 1fr;
}

.form-row--full {
  grid-template-columns: 1fr;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-row label {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-row span {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

.form-row input,
.form-row select,
.form-row textarea {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-3) var(--space-4);
  color: var(--color-text);
  font-size: var(--text-sm);
  font-family: inherit;
  transition: all var(--transition-fast);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.form-row textarea {
  resize: vertical;
  min-height: 100px;
}

.form__note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
  margin-top: var(--space-2);
}

.contact__consents {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-top: var(--space-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact__consents-legend {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

.contact__checkbox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
  margin: 0;
}

.contact__checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.contact__checkbox-text {
  font-size: var(--text-xs);
  line-height: 1.55;
  color: var(--color-text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}

.contact__policy-links {
  margin: 0;
  font-size: var(--text-xs);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
}

.contact__policy-links a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact__policy-links a:hover {
  color: var(--color-text);
}

.contact__policy-sep {
  color: var(--color-text-faint);
  user-select: none;
}

/* ============== FOOTER ============== */
.footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01)),
    rgba(12, 12, 15, 0.9);
  backdrop-filter: blur(var(--blur-sm));
  -webkit-backdrop-filter: blur(var(--blur-sm));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: var(--space-16) var(--space-8) var(--space-6);
}

.footer__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  gap: var(--space-12);
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .footer__inner {
    grid-template-columns: minmax(220px, 1.2fr) minmax(220px, 1.2fr) minmax(180px, 1fr) minmax(180px, 1fr);
    align-items: start;
  }
}

.footer__logo {
  width: 150px;
  margin-bottom: var(--space-4);
}

.footer__brand p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  max-width: 40ch;
}

@media (min-width: 900px) {
  .footer__brand {
    grid-column: 1 / span 2;
  }
}

.footer__col h4 {
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  font-weight: 600;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: 0;
  margin: 0;
}

@media (min-width: 900px) {
  .footer__col--services {
    grid-column: 3;
  }

  .footer__col--contact {
    grid-column: 4;
  }

  .footer__col--cities {
    grid-column: 1 / -1;
    margin-top: var(--space-2);
  }
}

.footer__col .footer__cities {
  display: block;
  columns: 2;
  column-gap: var(--space-5);
}

@media (min-width: 1024px) {
  .footer__col .footer__cities {
    columns: 3;
  }
}

@media (min-width: 1400px) {
  .footer__col .footer__cities {
    columns: 4;
  }
}

@media (min-width: 1800px) {
  .footer__col .footer__cities {
    columns: 5;
  }
}

.footer__cities li {
  break-inside: avoid;
  margin-bottom: var(--space-3);
}

.footer__cities li a {
  display: block;
}

.footer__cities li a + a {
  margin-top: 2px;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 767px) {
  .footer__col .footer__cities {
    columns: 1;
  }
}

.footer__bottom {
  max-width: var(--content-wide);
  margin: var(--space-12) auto 0;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.11);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============== RESPONSIVE ============== */
@media (max-width: 640px) {
  .nav {
    padding: var(--space-3) var(--space-4);
  }
  .event-insights__box {
    padding: var(--space-4);
    border-radius: var(--radius-lg);
  }
  .event-row {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }
  .hero,
  .configurator,
  .foils,
  .process,
  .extras,
  .edge,
  .faq,
  .contact {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }
}

/* ============== PORTAL COOKIE CONSENT (Consent Mode /targi) ============== */
.portal-consent {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 12000;
  padding: var(--space-4) var(--space-5);
  background:
    linear-gradient(180deg, rgba(10, 9, 7, 0.92), rgba(13, 12, 10, 0.98));
  border-top: 1px solid rgba(245, 143, 35, 0.28);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
}

.portal-consent__inner {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  gap: var(--space-4);
  align-items: start;
}

.portal-consent__copy {
  display: grid;
  gap: var(--space-2);
  min-width: 0;
}

@media (min-width: 768px) {
  .portal-consent__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

.portal-consent__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
}

.portal-consent__text {
  margin: 0;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: 72ch;
}

.portal-consent__text a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.portal-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .portal-consent__actions {
    justify-content: stretch;
  }

  .portal-consent__actions .btn {
    flex: 1;
    justify-content: center;
  }
}

/* ============== SECTION ORBS — punktowe rozmycia w tle ============== */
/* Sekcje dostają 1-2 ornament-orby przez ::before/::after.
   Wszystkie pointer-events: none, z-index: 0; content sekcji ma z-index: 1. */

.pains,
.foils,
.process,
.faq,
.contact,
.event-insights,
.trust {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.pains > *,
.foils > *,
.process > *,
.faq > *,
.contact > *,
.event-insights > *,
.trust > * {
  position: relative;
  z-index: 1;
}

/* PAINS — accent top-left (xl), light bottom-right (lg) */
.pains::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  top: -120px;
  left: -160px;
  background: radial-gradient(circle, var(--orb-accent) 0%, transparent 60%);
  filter: blur(var(--blur-xl));
  pointer-events: none;
  z-index: 0;
}

.pains::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  bottom: -80px;
  right: -100px;
  background: radial-gradient(circle, var(--orb-light) 0%, transparent 65%);
  filter: blur(var(--blur-lg));
  pointer-events: none;
  z-index: 0;
}

/* PAINS--LOCAL-PITCH — accent right-center (xl, większy), light top-left (md) */
.pains--local-pitch::before {
  width: 560px;
  height: 560px;
  top: 30%;
  left: auto;
  right: -180px;
  background: radial-gradient(circle, var(--orb-accent) 0%, transparent 55%);
  filter: blur(var(--blur-xl));
}

.pains--local-pitch::after {
  width: 320px;
  height: 320px;
  top: -60px;
  bottom: auto;
  left: -100px;
  right: auto;
  background: radial-gradient(circle, var(--orb-light) 0%, transparent 60%);
  filter: blur(var(--blur-md));
}

/* FOILS — accent center-bottom (xl, duży), light top-right (lg) */
.foils::before {
  content: '';
  position: absolute;
  width: 720px;
  height: 720px;
  bottom: -240px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--orb-accent-soft) 0%, transparent 60%);
  filter: blur(var(--blur-xl));
  pointer-events: none;
  z-index: 0;
}

.foils::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  top: -100px;
  right: -80px;
  background: radial-gradient(circle, var(--orb-light) 0%, transparent 65%);
  filter: blur(var(--blur-lg));
  pointer-events: none;
  z-index: 0;
}

/* PROCESS — light środek (xl), accent bottom-left (lg) */
.process::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--orb-light) 0%, transparent 65%);
  filter: blur(var(--blur-xl));
  pointer-events: none;
  z-index: 0;
}

.process::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  bottom: -100px;
  left: -120px;
  background: radial-gradient(circle, var(--orb-accent-soft) 0%, transparent 60%);
  filter: blur(var(--blur-lg));
  pointer-events: none;
  z-index: 0;
}

/* EDGE — istniejący ::before zostaje, dodajemy ::after light top-right (lg) */
.edge {
  isolation: isolate;
}

.edge::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  top: -120px;
  right: -120px;
  background: radial-gradient(circle, var(--orb-light) 0%, transparent 65%);
  filter: blur(var(--blur-lg));
  pointer-events: none;
  z-index: 0;
}

.edge__inner {
  z-index: 1;
}

/* FAQ — accent bottom-left (xl), bez drugiego (czytelność) */
.faq::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  bottom: -160px;
  left: -160px;
  background: radial-gradient(circle, var(--orb-accent) 0%, transparent 55%);
  filter: blur(var(--blur-xl));
  pointer-events: none;
  z-index: 0;
}

/* CONTACT — accent top-right (lg), light bottom-left (xl) */
.contact::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  top: -120px;
  right: -120px;
  background: radial-gradient(circle, var(--orb-accent) 0%, transparent 55%);
  filter: blur(var(--blur-lg));
  pointer-events: none;
  z-index: 0;
}

.contact::after {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  bottom: -200px;
  left: -160px;
  background: radial-gradient(circle, var(--orb-light) 0%, transparent 65%);
  filter: blur(var(--blur-xl));
  pointer-events: none;
  z-index: 0;
}

/* EVENT-INSIGHTS — accent right-side (lg), light top-left (md) — istniejący techline zostaje */
.event-insights::before {
  content: '';
  position: absolute;
  width: 440px;
  height: 440px;
  top: 30%;
  right: -140px;
  background: radial-gradient(circle, var(--orb-accent-soft) 0%, transparent 60%);
  filter: blur(var(--blur-lg));
  pointer-events: none;
  z-index: 0;
}

.event-insights::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  top: -60px;
  left: -80px;
  background: radial-gradient(circle, var(--orb-light) 0%, transparent 65%);
  filter: blur(var(--blur-md));
  pointer-events: none;
  z-index: 0;
}

/* TRUST — pojedynczy accent center-top (xl, bardzo subtelny) */
.trust::before {
  content: '';
  position: absolute;
  width: 720px;
  height: 360px;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(245, 143, 35, 0.15) 0%, transparent 65%);
  filter: blur(var(--blur-xl));
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 720px) {
  /* Zmniejszamy orby na mobile dla wydajności */
  .pains::before, .pains::after,
  .pains--local-pitch::before, .pains--local-pitch::after,
  .foils::before, .foils::after,
  .process::before, .process::after,
  .edge::after,
  .faq::before,
  .contact::before, .contact::after,
  .event-insights::before, .event-insights::after,
  .trust::before {
    transform: scale(0.6);
  }
  .pains--local-pitch::before,
  .foils::before,
  .process::before,
  .trust::before {
    transform: translateX(-50%) scale(0.6);
  }
}

/* --- Podstrony oklejanie / zabudowa / stoisko (miasto): longform + intro przed kalendarzem --- */
.hub-oklej-longform__inner,
.hub-zabudowa-longform__inner,
.hub-stoisko-longform__inner {
  max-width: 72ch;
}
.hub-oklej-longform__body,
.hub-zabudowa-longform__body,
.hub-stoisko-longform__body {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.65;
}
.hub-oklej-longform__body p,
.hub-zabudowa-longform__body p,
.hub-stoisko-longform__body p {
  margin: 0 0 var(--space-4);
}
.hub-oklej-longform__body p:last-child,
.hub-zabudowa-longform__body p:last-child,
.hub-stoisko-longform__body p:last-child {
  margin-bottom: 0;
}
.hub-oklej-longform__body a,
.hub-zabudowa-longform__body a,
.hub-stoisko-longform__body a {
  color: var(--color-accent);
}

/* Wiodące akapity longformu — większa, jaśniejsza czcionka */
.hub-oklej-longform__body > p:first-of-type,
.hub-oklej-longform__body > p:first-of-type + p,
.hub-zabudowa-longform__body > p:first-of-type,
.hub-zabudowa-longform__body > p:first-of-type + p,
.hub-stoisko-longform__body > p:first-of-type,
.hub-stoisko-longform__body > p:first-of-type + p {
  font-size: var(--text-base);
  line-height: 1.68;
  color: rgba(244, 241, 234, 0.94);
}

.hub-oklej-longform__h2,
.hub-zabudowa-longform__h2,
.hub-stoisko-longform__h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #fff;
  margin: var(--space-10) 0 var(--space-4);
  padding-left: var(--space-4);
  border-left: 3px solid var(--color-accent);
  letter-spacing: -0.03em;
  line-height: 1.22;
}
.hub-oklej-longform__h2:first-of-type,
.hub-zabudowa-longform__h2:first-of-type,
.hub-stoisko-longform__h2:first-of-type {
  margin-top: var(--space-6);
}

/* Segmenty longformu przeplatane portfolio / filmem / konfiguratorem */
.hub-oklej-longform--segment {
  padding-top: var(--space-8);
  padding-bottom: var(--space-6);
}
.hub-oklej-longform--segment .hub-oklej-longform__h2:first-of-type {
  margin-top: 0;
}
.hub-oklej-portfolio + .hub-oklej-longform--segment,
.hub-process-video + .hub-oklej-longform--segment,
#configurator + .hub-oklej-longform--segment {
  padding-top: var(--space-10);
}
.hub-zabudowa-longform--segment {
  padding-top: var(--space-8);
  padding-bottom: var(--space-6);
}
.hub-zabudowa-longform--segment .hub-zabudowa-longform__h2:first-of-type {
  margin-top: 0;
}
.hub-zabudowa-portfolio + .hub-zabudowa-longform--segment,
.hub-process-video + .hub-zabudowa-longform--segment,
.hub-zabudowa-portfolio--compact + .configurator,
#configurator + .hub-zabudowa-longform--segment,
.hub-zabudowa-longform--segment + .hub-zabudowa-faq,
.hub-process-video--dual + .hub-zabudowa-longform--segment {
  padding-top: var(--space-10);
}
.hub-oklej-longform__h3,
.hub-zabudowa-longform__h3,
.hub-stoisko-longform__h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: #fff;
  margin: var(--space-5) 0 var(--space-2);
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.hub-oklej-longform__list,
.hub-zabudowa-longform__list,
.hub-stoisko-longform__list {
  margin: 0 0 var(--space-6);
  padding-left: 1.25rem;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}
.hub-stoisko-longform__ordered {
  margin: 0 0 var(--space-6);
  padding-left: 1.35rem;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.65;
}
.hub-stoisko-longform__ordered li {
  margin-bottom: var(--space-3);
}
.hub-stoisko-longform__ordered li:last-child {
  margin-bottom: 0;
}
.hub-oklej-longform__list li,
.hub-zabudowa-longform__list li,
.hub-stoisko-longform__list li {
  margin-bottom: var(--space-3);
}
.hub-oklej-longform__list li:last-child,
.hub-zabudowa-longform__list li:last-child,
.hub-stoisko-longform__list li:last-child {
  margin-bottom: 0;
}

/* --- Oklejanie (miasto): portfolio realizacji --- */
.hub-oklej-portfolio__inner {
  max-width: min(72rem, 100%);
  margin-inline: auto;
}
.hub-oklej-portfolio__header {
  margin-bottom: var(--space-6);
}
.hub-oklej-portfolio__lead {
  max-width: 65ch;
}
.hub-oklej-portfolio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 520px) {
  .hub-oklej-portfolio__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 900px) {
  .hub-oklej-portfolio__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.hub-oklej-portfolio__cell {
  min-width: 0;
}
.hub-oklej-portfolio__figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  background: var(--color-surface-2);
}
.hub-oklej-portfolio__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* --- Zabudowa: grafika promocyjna — wash blur + wtopiony kadr, scroll focus --- */
.hub-zabudowa-promo {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: var(--space-8) 0 var(--space-7);
  overflow-x: clip;
}
.hub-zabudowa-promo__bleed {
  width: 100%;
}
.hub-zabudowa-promo__media {
  --hub-zabudowa-promo-fade: radial-gradient(
    ellipse 92% 88% at 50% 44%,
    #000 0%,
    #000 18%,
    rgba(0, 0, 0, 0.96) 34%,
    rgba(0, 0, 0, 0.72) 50%,
    rgba(0, 0, 0, 0.42) 68%,
    rgba(0, 0, 0, 0.12) 84%,
    transparent 100%
  );
  --hub-zabudowa-haslo-opacity-min: 0.7;
  --hub-zabudowa-haslo-opacity-max: 0.9;
  --hub-zabudowa-haslo-opacity: 0.8;
  --hub-zabudowa-focus-range-end: 11%;
  position: relative;
  width: 100%;
  height: clamp(26rem, 68vh, 46rem);
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 78% 64% at 50% 40%,
      color-mix(in srgb, var(--color-accent) 28%, transparent) 0%,
      color-mix(in srgb, var(--color-accent) 8%, transparent) 42%,
      transparent 62%
    ),
    var(--color-bg);
  view-timeline-name: --hub-zabudowa-promo;
  view-timeline-axis: block;
}
.hub-zabudowa-promo__wash {
  position: absolute;
  inset: -20% -10%;
  z-index: 0;
  background-image: var(--hub-zabudowa-promo-bg);
  background-repeat: no-repeat;
  background-size: 128% 128%;
  background-position: 38% 30%;
  filter: blur(34px) saturate(1.22) brightness(0.88);
  transform: scale(1.22);
  opacity: 0.98;
  animation: hubZabudowaPromoWashDrift 14s ease-in-out infinite alternate;
}
.hub-zabudowa-promo__wash::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 58% 50% at 50% 44%,
      transparent 0%,
      transparent 62%,
      rgba(13, 12, 10, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      var(--color-bg) 0%,
      transparent 18%,
      transparent 84%,
      var(--color-bg) 100%
    );
}
.hub-zabudowa-promo__aura {
  position: absolute;
  inset: -4%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.88;
  background-image: var(--hub-zabudowa-promo-bg);
  background-repeat: no-repeat;
  background-size: 108% 108%;
  background-position: center 40%;
  filter: blur(40px) saturate(1.1);
  -webkit-mask-image: var(--hub-zabudowa-promo-fade);
  mask-image: var(--hub-zabudowa-promo-fade);
  mask-mode: alpha;
  animation: hubZabudowaPromoAuraPulse 7s ease-in-out infinite;
}
.hub-zabudowa-promo__shimmer {
  position: absolute;
  inset: -8% -12%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    108deg,
    transparent 38%,
    color-mix(in srgb, var(--color-accent) 42%, transparent) 48%,
    color-mix(in srgb, #fff 18%, transparent) 50%,
    color-mix(in srgb, var(--color-accent) 32%, transparent) 52%,
    transparent 62%
  );
  background-size: 220% 100%;
  background-position: 130% 0;
  mix-blend-mode: soft-light;
  opacity: 0.45;
  -webkit-mask-image: var(--hub-zabudowa-promo-fade);
  mask-image: var(--hub-zabudowa-promo-fade);
  mask-mode: alpha;
  animation: hubZabudowaPromoShimmer 6.5s ease-in-out infinite;
}
.hub-zabudowa-promo__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hub-zabudowa-promo__inset {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  pointer-events: none;
}
.hub-zabudowa-promo__inset-float {
  position: absolute;
  inset: 0;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
  -webkit-mask-image: var(--hub-zabudowa-promo-fade);
  mask-image: var(--hub-zabudowa-promo-fade);
  mask-mode: alpha;
  animation: hubZabudowaPromoInsetFloat 5s ease-in-out infinite;
}
.hub-zabudowa-promo__img--crop {
  filter: blur(26px) saturate(1.1) brightness(0.92);
  transform: scale(1.14);
  object-position: center 40%;
}
.hub-zabudowa-promo__haslo {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  animation: hubZabudowaPromoHasloFloat 5.5s ease-in-out infinite;
}
.hub-zabudowa-promo__haslo::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  width: 100%;
  height: min(46%, 14.5rem);
  transform: translateY(-50%);
  border-radius: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.32) 8%,
    rgba(0, 0, 0, 0.52) 50%,
    rgba(0, 0, 0, 0.32) 92%,
    transparent 100%
  );
  -webkit-backdrop-filter: blur(10px) saturate(0.85) brightness(0.72);
  backdrop-filter: blur(10px) saturate(0.85) brightness(0.72);
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
  );
  opacity: 1;
}
.hub-zabudowa-promo__haslo::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  top: 50%;
  height: 38%;
  max-height: 11rem;
  transform: translateY(-50%);
  background: linear-gradient(
    100deg,
    transparent 42%,
    color-mix(in srgb, #fff 14%, transparent) 50%,
    transparent 58%
  );
  background-size: 220% 100%;
  background-position: 140% 0;
  opacity: 0;
  mix-blend-mode: soft-light;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 25%,
    #000 75%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 25%,
    #000 75%,
    transparent 100%
  );
  animation: hubZabudowaPromoHasloGlint 5s ease-in-out infinite;
}
.hub-zabudowa-promo__img--haslo {
  position: relative;
  z-index: 1;
  width: min(92%, 52rem);
  height: auto;
  max-height: 54%;
  object-fit: contain;
  object-position: center;
  opacity: var(--hub-zabudowa-haslo-opacity);
  mix-blend-mode: normal;
  will-change: opacity, filter, transform;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.85))
    drop-shadow(0 3px 8px rgba(0, 0, 0, 0.75))
    drop-shadow(0 10px 28px rgba(0, 0, 0, 0.65))
    drop-shadow(0 22px 52px rgba(0, 0, 0, 0.5));
  animation:
    hubZabudowaPromoHasloBreathe 5s ease-in-out infinite,
    hubZabudowaPromoHasloOpacityDrift 7s ease-in-out infinite;
}
.hub-zabudowa-promo__inset-feather {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(0, 0, 0, 0.12) 38%,
      rgba(0, 0, 0, 0.22) 50%,
      rgba(0, 0, 0, 0.12) 62%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 95% 90% at 50% 44%,
      transparent 30%,
      rgba(0, 0, 0, 0.14) 72%,
      transparent 100%
    );
  mix-blend-mode: normal;
  opacity: 1;
}
.hub-zabudowa-promo__edge-fade {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      var(--color-bg) 0%,
      transparent 26%,
      transparent 74%,
      var(--color-bg) 100%
    ),
    linear-gradient(
      180deg,
      var(--color-bg) 0%,
      transparent 16%,
      transparent 84%,
      var(--color-bg) 100%
    );
  opacity: 0.55;
}
@keyframes hubZabudowaPromoWashDrift {
  0% {
    transform: scale(1.18) translateY(-2%);
    background-position: 32% 28%;
  }
  100% {
    transform: scale(1.3) translateY(2%);
    background-position: 62% 52%;
  }
}
@keyframes hubZabudowaPromoInsetFloat {
  0%,
  100% {
    transform: translateY(-9%) scale(0.98);
  }
  50% {
    transform: translateY(10%) scale(1.03);
  }
}
@keyframes hubZabudowaPromoHasloFloat {
  0%,
  100% {
    transform: translateY(11%) scale(0.94) rotate(-0.65deg);
  }
  50% {
    transform: translateY(-10%) scale(1.06) rotate(0.65deg);
  }
}
@keyframes hubZabudowaPromoHasloBreathe {
  0%,
  100% {
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.85))
      drop-shadow(0 3px 8px rgba(0, 0, 0, 0.75))
      drop-shadow(0 10px 28px rgba(0, 0, 0, 0.65))
      drop-shadow(0 22px 52px rgba(0, 0, 0, 0.5));
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.92))
      drop-shadow(0 4px 12px rgba(0, 0, 0, 0.82))
      drop-shadow(0 12px 32px rgba(0, 0, 0, 0.72))
      drop-shadow(0 26px 56px rgba(0, 0, 0, 0.55));
    transform: scale(1.045);
  }
}
@keyframes hubZabudowaPromoHasloOpacityDrift {
  0%,
  100% {
    opacity: var(--hub-zabudowa-haslo-opacity-min);
  }
  50% {
    opacity: var(--hub-zabudowa-haslo-opacity-max);
  }
}
@keyframes hubZabudowaPromoHasloGlint {
  0%,
  100% {
    background-position: 180% 0;
    opacity: 0;
  }
  45% {
    opacity: 0.35;
  }
  55% {
    background-position: -80% 0;
    opacity: 0.2;
  }
}
@keyframes hubZabudowaPromoShimmer {
  0%,
  100% {
    background-position: 130% 0;
    opacity: 0.32;
  }
  50% {
    background-position: -30% 0;
    opacity: 0.52;
  }
}
@supports (animation-timeline: view()) {
  .hub-zabudowa-promo__wash {
    animation:
      hubZabudowaPromoWashDrift 14s ease-in-out infinite alternate,
      hubZabudowaPromoWashScroll linear both;
    animation-timeline: auto, --hub-zabudowa-promo;
    animation-range: normal, entry 0% cover 14%;
  }
  .hub-zabudowa-promo__img--crop {
    animation: hubZabudowaPromoCropFocus cubic-bezier(0.14, 0.92, 0.18, 1) both;
    animation-timeline: --hub-zabudowa-promo;
    animation-range: entry 0% var(--hub-zabudowa-focus-range-end);
  }
  .hub-zabudowa-promo__inset-float {
    animation:
      hubZabudowaPromoInsetFloat 5s ease-in-out infinite,
      hubZabudowaPromoInsetReveal cubic-bezier(0.14, 0.92, 0.18, 1) both;
    animation-timeline: auto, --hub-zabudowa-promo;
    animation-range: normal, entry 0% var(--hub-zabudowa-focus-range-end);
  }
  .hub-zabudowa-promo__haslo {
    animation:
      hubZabudowaPromoHasloFloat 5.5s ease-in-out infinite,
      hubZabudowaPromoHasloReveal cubic-bezier(0.14, 0.92, 0.18, 1) both;
    animation-timeline: auto, --hub-zabudowa-promo;
    animation-range: normal, entry 0% var(--hub-zabudowa-focus-range-end);
  }
  .hub-zabudowa-promo__haslo::before {
    animation: hubZabudowaPromoHasloBackdropReveal cubic-bezier(0.14, 0.92, 0.18, 1) both;
    animation-timeline: --hub-zabudowa-promo;
    animation-range: entry 0% var(--hub-zabudowa-focus-range-end);
  }
  .hub-zabudowa-promo__img--haslo {
    animation:
      hubZabudowaPromoHasloBreathe 5s ease-in-out infinite,
      hubZabudowaPromoHasloOpacityDrift 7s ease-in-out infinite,
      hubZabudowaPromoHasloImgReveal cubic-bezier(0.14, 0.92, 0.18, 1) both;
    animation-delay: 0s, 0.65s, 0s;
    animation-timeline: auto, auto, --hub-zabudowa-promo;
    animation-range: normal, normal, entry 0% var(--hub-zabudowa-focus-range-end);
  }
  .hub-zabudowa-promo__shimmer {
    animation:
      hubZabudowaPromoShimmer 6.5s ease-in-out infinite,
      hubZabudowaPromoShimmerScroll linear both;
    animation-timeline: auto, --hub-zabudowa-promo;
    animation-range: normal, entry 0% cover 14%;
  }
  .hub-zabudowa-promo__edge-fade {
    animation: hubZabudowaPromoEdgeFade linear both;
    animation-timeline: --hub-zabudowa-promo;
    animation-range: entry 0% cover 14%;
  }
  .hub-zabudowa-promo__aura {
    animation:
      hubZabudowaPromoAuraPulse 7s ease-in-out infinite,
      hubZabudowaPromoAuraReveal linear both;
    animation-timeline: auto, --hub-zabudowa-promo;
    animation-range: normal, entry 0% cover 14%;
  }
}
@keyframes hubZabudowaPromoAuraReveal {
  from {
    opacity: 0.95;
    filter: blur(42px) saturate(1.12);
  }
  to {
    opacity: 0.55;
    filter: blur(28px) saturate(1.06);
  }
}
@keyframes hubZabudowaPromoWashScroll {
  from {
    filter: blur(32px) saturate(1.15) brightness(0.85);
    opacity: 1;
  }
  to {
    filter: blur(22px) saturate(1.1) brightness(0.92);
    opacity: 0.88;
  }
}
@keyframes hubZabudowaPromoAuraPulse {
  0%,
  100% {
    opacity: 0.65;
    filter: blur(44px) saturate(1.05);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    filter: blur(28px) saturate(1.18);
    transform: scale(1.04);
  }
}
@keyframes hubZabudowaPromoCropFocus {
  from {
    filter: blur(36px) saturate(1.14) brightness(0.82);
    transform: scale(1.2);
    opacity: 0.28;
  }
  to {
    filter: blur(0) saturate(1.06) brightness(1);
    transform: scale(1.08);
    opacity: 1;
  }
}
@keyframes hubZabudowaPromoHasloReveal {
  from {
    transform: translateY(18%) scale(0.86) rotate(-1.2deg);
  }
  to {
    transform: translateY(0) scale(1) rotate(0deg);
  }
}
@keyframes hubZabudowaPromoHasloBackdropReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hubZabudowaPromoHasloImgReveal {
  from {
    opacity: var(--hub-zabudowa-haslo-opacity-min);
  }
  to {
    opacity: var(--hub-zabudowa-haslo-opacity-max);
  }
}
@keyframes hubZabudowaPromoShimmerScroll {
  from {
    opacity: 0.55;
  }
  to {
    opacity: 0.28;
  }
}
@keyframes hubZabudowaPromoInsetReveal {
  from {
    opacity: 0.35;
    transform: translateY(14%) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes hubZabudowaPromoEdgeFade {
  to {
    opacity: 0.4;
  }
}
@supports not (animation-timeline: view()) {
  .hub-zabudowa-promo__img--crop {
    animation: hubZabudowaPromoCropFocusFallback 0.5s cubic-bezier(0.14, 0.92, 0.18, 1) both;
  }
  .hub-zabudowa-promo__inset-float {
    animation:
      hubZabudowaPromoInsetFloat 5s ease-in-out infinite,
      hubZabudowaPromoInsetRevealFallback 0.5s cubic-bezier(0.14, 0.92, 0.18, 1) both;
  }
  .hub-zabudowa-promo__haslo {
    animation:
      hubZabudowaPromoHasloFloat 5.5s ease-in-out infinite,
      hubZabudowaPromoHasloRevealFallback 0.5s cubic-bezier(0.14, 0.92, 0.18, 1) both;
  }
  .hub-zabudowa-promo__haslo::before {
    animation: hubZabudowaPromoHasloBackdropRevealFallback 0.5s cubic-bezier(0.14, 0.92, 0.18, 1) both;
  }
  .hub-zabudowa-promo__img--haslo {
    animation:
      hubZabudowaPromoHasloBreathe 5s ease-in-out infinite,
      hubZabudowaPromoHasloOpacityDrift 7s ease-in-out infinite,
      hubZabudowaPromoHasloImgRevealFallback 0.5s cubic-bezier(0.14, 0.92, 0.18, 1) both;
  }
  .hub-zabudowa-promo__shimmer {
    animation: hubZabudowaPromoShimmer 6.5s ease-in-out infinite;
  }
}
@keyframes hubZabudowaPromoInsetRevealFallback {
  from {
    opacity: 0.35;
    transform: translateY(14%) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes hubZabudowaPromoCropFocusFallback {
  from {
    filter: blur(36px);
    transform: scale(1.2);
    opacity: 0.28;
  }
  to {
    filter: blur(0);
    transform: scale(1.08);
    opacity: 1;
  }
}
@keyframes hubZabudowaPromoHasloRevealFallback {
  from {
    transform: translateY(18%) scale(0.86);
  }
  to {
    transform: translateY(0) scale(1);
  }
}
@keyframes hubZabudowaPromoHasloBackdropRevealFallback {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hubZabudowaPromoHasloImgRevealFallback {
  from {
    opacity: var(--hub-zabudowa-haslo-opacity-min);
  }
  to {
    opacity: var(--hub-zabudowa-haslo-opacity-max);
  }
}
@media (max-width: 40rem) {
  .hub-zabudowa-promo__img--haslo {
    width: min(96%, 52rem);
    max-height: 58%;
  }
  .hub-zabudowa-promo__media {
    height: clamp(22rem, 58vh, 40rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hub-zabudowa-promo__wash,
  .hub-zabudowa-promo__img--crop,
  .hub-zabudowa-promo__img--haslo,
  .hub-zabudowa-promo__aura,
  .hub-zabudowa-promo__inset-float,
  .hub-zabudowa-promo__haslo,
  .hub-zabudowa-promo__haslo::before,
  .hub-zabudowa-promo__haslo::after,
  .hub-zabudowa-promo__shimmer,
  .hub-zabudowa-promo__edge-fade {
    animation: none;
  }
  .hub-zabudowa-promo__media {
    --hub-zabudowa-haslo-opacity: 0.8;
  }
  .hub-zabudowa-promo__haslo::before {
    transform: translateY(-50%);
    opacity: 1;
  }
  .hub-zabudowa-promo__aura {
    opacity: 0.65;
    filter: blur(34px) saturate(1.06);
  }
  .hub-zabudowa-promo__wash {
    filter: blur(20px) saturate(1.08);
    transform: scale(1.08);
  }
  .hub-zabudowa-promo__img--crop {
    filter: none;
    transform: none;
    opacity: 1;
  }
  .hub-zabudowa-promo__inset-float,
  .hub-zabudowa-promo__haslo {
    transform: none;
  }
  .hub-zabudowa-promo__haslo::after {
    opacity: 0;
  }
  .hub-zabudowa-promo__shimmer {
    opacity: 0;
  }
  .hub-zabudowa-promo__img--haslo {
    opacity: var(--hub-zabudowa-haslo-opacity);
    mix-blend-mode: normal;
    transform: none;
    filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.8))
      drop-shadow(0 8px 24px rgba(0, 0, 0, 0.55));
  }
}
.hub-zabudowa-promo + .hub-zabudowa-portfolio,
.hub-zabudowa-promo + .related-section.hub-zabudowa-portfolio {
  padding-top: var(--space-8);
}

/* --- Zabudowa: portfolio realizacji (te same zdjęcia, inne kadrowanie) --- */
.hub-zabudowa-portfolio__inner {
  max-width: min(72rem, 100%);
  margin-inline: auto;
}
.hub-zabudowa-portfolio__header {
  margin-bottom: var(--space-6);
}
.hub-zabudowa-portfolio__lead {
  max-width: 65ch;
}
.hub-zabudowa-portfolio__grid {
  display: grid;
  gap: var(--space-4);
  list-style: none;
  margin: 0;
  padding: 0;
}
.hub-zabudowa-portfolio__grid--collage {
  grid-template-columns: 1fr;
}
.hub-zabudowa-portfolio__cell {
  min-width: 0;
}
.hub-zabudowa-portfolio__grid--collage .hub-zabudowa-portfolio__cell {
  display: flex;
}
.hub-zabudowa-portfolio__figure {
  flex: 1 1 auto;
  width: 100%;
  margin: 0;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  background: var(--color-surface-2);
}
.hub-zabudowa-portfolio__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
/* Mobile: prosta kolumna, stały proporcja 3:2 */
.hub-zabudowa-portfolio__grid--collage .hub-zabudowa-portfolio__figure {
  aspect-ratio: 3 / 2;
}
.hub-zabudowa-portfolio__grid--collage .hub-zabudowa-portfolio__img {
  aspect-ratio: 3 / 2;
}
/* Tablet+: bento 3 kolumny — dolny rząd trzy równe kafle (bez panoramicznego pasa) */
@media (min-width: 640px) {
  .hub-zabudowa-portfolio:not(.hub-zabudowa-portfolio--compact) .hub-zabudowa-portfolio__grid--collage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(0, 10.5rem);
    gap: var(--space-4);
  }
  .hub-zabudowa-portfolio:not(.hub-zabudowa-portfolio--compact) .hub-zabudowa-portfolio__cell--a {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }
  .hub-zabudowa-portfolio:not(.hub-zabudowa-portfolio--compact) .hub-zabudowa-portfolio__cell--b {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }
  .hub-zabudowa-portfolio:not(.hub-zabudowa-portfolio--compact) .hub-zabudowa-portfolio__cell--c {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
  }
  .hub-zabudowa-portfolio:not(.hub-zabudowa-portfolio--compact) .hub-zabudowa-portfolio__cell--d {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  .hub-zabudowa-portfolio:not(.hub-zabudowa-portfolio--compact) .hub-zabudowa-portfolio__cell--e {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
  }
  .hub-zabudowa-portfolio:not(.hub-zabudowa-portfolio--compact) .hub-zabudowa-portfolio__cell--f {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
  }
  .hub-zabudowa-portfolio:not(.hub-zabudowa-portfolio--compact) .hub-zabudowa-portfolio__grid--collage .hub-zabudowa-portfolio__figure,
  .hub-zabudowa-portfolio:not(.hub-zabudowa-portfolio--compact) .hub-zabudowa-portfolio__grid--collage .hub-zabudowa-portfolio__img {
    aspect-ratio: unset;
    min-height: 100%;
  }
  .hub-zabudowa-portfolio--compact .hub-zabudowa-portfolio__grid--collage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(0, 10rem);
    gap: var(--space-4);
  }
  .hub-zabudowa-portfolio--compact .hub-zabudowa-portfolio__cell--c1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }
  .hub-zabudowa-portfolio--compact .hub-zabudowa-portfolio__cell--c2 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }
  .hub-zabudowa-portfolio--compact .hub-zabudowa-portfolio__cell--c3 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
  }
  .hub-zabudowa-portfolio--compact .hub-zabudowa-portfolio__grid--collage .hub-zabudowa-portfolio__figure,
  .hub-zabudowa-portfolio--compact .hub-zabudowa-portfolio__grid--collage .hub-zabudowa-portfolio__img {
    aspect-ratio: unset;
    min-height: 100%;
  }
}
@media (min-width: 900px) {
  .hub-zabudowa-portfolio:not(.hub-zabudowa-portfolio--compact) .hub-zabudowa-portfolio__grid--collage {
    grid-auto-rows: minmax(0, 11.5rem);
    gap: var(--space-5);
  }
}
.hub-zabudowa-portfolio .related-section__title {
  max-width: 28ch;
}
.hub-zabudowa-longform__nav {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider, rgba(255, 255, 255, 0.12));
}
.hub-zabudowa-longform__nav-lead {
  margin: 0 0 var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.hub-zabudowa-longform__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
}
.hub-zabudowa-longform__nav-list a {
  color: var(--color-accent);
  font-size: var(--text-sm);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.hub-zabudowa-longform__nav-list a:hover {
  color: #fff;
}

.hub-oklej-upcoming-intro,
.hub-zabudowa-upcoming-intro,
.hub-stoisko-upcoming-intro {
  padding-bottom: 0;
}
.hub-oklej-upcoming-intro .related-section__header,
.hub-zabudowa-upcoming-intro .related-section__header,
.hub-stoisko-upcoming-intro .related-section__header {
  margin-bottom: var(--space-4);
}

/* Tytuły i leady sekcji (kalendarz, zamówienie) — czytelniejsza hierarchia */
.hub-oklej-upcoming-intro .related-section__title,
.hub-zabudowa-upcoming-intro .related-section__title,
.hub-stoisko-upcoming-intro .related-section__title,
#hub-oklej-order .related-section__title,
.hub-zabudowa-closure .related-section__title,
.hub-stoisko-closure .related-section__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 var(--space-3);
}
.hub-oklej-upcoming-intro .related-section__lead,
.hub-zabudowa-upcoming-intro .related-section__lead,
.hub-stoisko-upcoming-intro .related-section__lead {
  font-size: var(--text-base);
  line-height: 1.68;
  color: rgba(244, 241, 234, 0.9);
  max-width: 70ch;
}
.hub-oklej-portfolio .related-section__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.hub-oklej-portfolio__lead {
  font-size: var(--text-base);
  line-height: 1.68;
  color: rgba(244, 241, 234, 0.9);
}
.hub-process-video__inner {
  max-width: min(72rem, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}
@media (min-width: 800px) {
  .hub-process-video__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-8, 3rem);
  }
}
.hub-process-video__copy {
  min-width: 0;
}
.hub-process-video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  background: #000;
  min-width: 0;
}
.hub-process-video__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.hub-process-video__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 var(--space-3) 0;
}
.hub-process-video__lead {
  font-size: var(--text-base);
  line-height: 1.68;
  color: rgba(244, 241, 234, 0.9);
  max-width: 60ch;
  margin: 0;
}
.hub-process-video--dual .hub-process-video__inner {
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: var(--space-4);
}
.hub-process-video__copy--dual {
  margin: 0;
}
.hub-process-video__lead--dual {
  max-width: 68ch;
  margin-top: var(--space-3);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hub-process-video__frames {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  min-width: 0;
}
@media (min-width: 640px) {
  .hub-process-video__frames {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-6);
  }
}
.hub-process-video__frame-wrap {
  min-width: 0;
}
.hub-zabudowa-events-placeholder,
.hub-stoisko-events-placeholder {
  margin: 0;
  max-width: 72ch;
  text-align: left;
}
.hub-zabudowa-events-note,
.hub-stoisko-events-note {
  padding-top: var(--space-4);
  padding-bottom: var(--space-2);
}
.hub-zabudowa-events-note__p,
.hub-stoisko-events-note__p {
  margin: 0;
  max-width: 72ch;
}
.hub-zabudowa-closure .related-section__lead,
.hub-stoisko-closure .related-section__lead {
  margin-bottom: var(--space-4);
  font-size: var(--text-base);
  line-height: 1.65;
  color: rgba(244, 241, 234, 0.88);
}
.hub-zabudowa-closure__list,
.hub-stoisko-closure__list {
  margin-bottom: var(--space-4);
}
.hub-zabudowa-closure__outro,
.hub-stoisko-closure__outro {
  margin: 0;
  max-width: 72ch;
}

/* Oklejanie / zabudowa: liczby kalendarza miasta tuż nad listą targów (poza hero, dyskretnie) */
.hub-cal-preview-stats {
  padding: var(--space-4) 0 var(--space-6);
  border-top: 1px solid var(--color-divider, rgba(255, 255, 255, 0.08));
  background: rgba(0, 0, 0, 0.12);
}
.hub-cal-preview-stats__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
}
.hub-cal-preview-stats__micro {
  margin: 0;
  max-width: 44ch;
  font-size: var(--text-xs);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.44);
  letter-spacing: 0.02em;
}
.hub-cal-preview-stats__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4) var(--space-7);
}
.hub-cal-preview-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  min-width: 4.25rem;
}
.hub-cal-preview-stats__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  color: rgba(245, 143, 35, 0.5);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hub-cal-preview-stats__label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hub-oklej-events-footnote {
  padding-top: var(--space-4);
  padding-bottom: var(--space-2);
}
.hub-oklej-events-footnote__p {
  margin: 0;
  max-width: 72ch;
}
.hub-oklej-longform__nav {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider, rgba(255, 255, 255, 0.12));
}
.hub-oklej-longform__nav-lead {
  margin: 0 0 var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.hub-oklej-longform__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-5);
}
.hub-oklej-longform__nav-list a {
  color: var(--color-accent);
  font-size: var(--text-sm);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.hub-oklej-longform__nav-list a:hover {
  color: #fff;
}

.hub-service-intro__body {
  max-width: 72ch;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.65;
}
.hub-service-intro__body p {
  margin: 0 0 var(--space-4);
}
.hub-service-intro__body p:last-child {
  margin-bottom: 0;
}
.hub-service-intro__body a {
  color: var(--color-accent);
}

/* --- Mapa Polski (Gdzie działamy) — globalne usługi --- */
.poland-map-container {
  max-width: 52rem;
  margin: 0 auto;
  padding: var(--space-6) 0 var(--space-4);
}

.poland-map-svg {
  display: block;
  width: 100%;
  height: auto;
  filter: var(--map-outline-glow) drop-shadow(0 12px 32px rgba(0, 0, 0, 0.35));
}

.map-voivodeship {
  fill: var(--color-surface-2);
  stroke: var(--map-outline-stroke);
  stroke-width: 2;
  transition: fill 0.2s ease, stroke 0.2s ease, stroke-width 0.2s ease, opacity 0.2s ease;
  pointer-events: fill;
  cursor: default;
}

.map-voivodeship:hover {
  fill: var(--color-accent-soft);
  stroke: var(--map-outline-stroke-hover);
  stroke-width: 2.25;
}

.poland-map-svg:has(.map-city-group:hover) .map-voivodeship:not(:hover) {
  opacity: 0.5;
}

.poland-map-svg:has(.map-city-group[data-voivodeship="dolnoslaskie"]:hover) .map-voivodeship[data-voivodeship="dolnoslaskie"],
.poland-map-svg:has(.map-city-group[data-voivodeship="kujawsko-pomorskie"]:hover) .map-voivodeship[data-voivodeship="kujawsko-pomorskie"],
.poland-map-svg:has(.map-city-group[data-voivodeship="lubelskie"]:hover) .map-voivodeship[data-voivodeship="lubelskie"],
.poland-map-svg:has(.map-city-group[data-voivodeship="lubuskie"]:hover) .map-voivodeship[data-voivodeship="lubuskie"],
.poland-map-svg:has(.map-city-group[data-voivodeship="lodzkie"]:hover) .map-voivodeship[data-voivodeship="lodzkie"],
.poland-map-svg:has(.map-city-group[data-voivodeship="malopolskie"]:hover) .map-voivodeship[data-voivodeship="malopolskie"],
.poland-map-svg:has(.map-city-group[data-voivodeship="mazowieckie"]:hover) .map-voivodeship[data-voivodeship="mazowieckie"],
.poland-map-svg:has(.map-city-group[data-voivodeship="opolskie"]:hover) .map-voivodeship[data-voivodeship="opolskie"],
.poland-map-svg:has(.map-city-group[data-voivodeship="podkarpackie"]:hover) .map-voivodeship[data-voivodeship="podkarpackie"],
.poland-map-svg:has(.map-city-group[data-voivodeship="podlaskie"]:hover) .map-voivodeship[data-voivodeship="podlaskie"],
.poland-map-svg:has(.map-city-group[data-voivodeship="pomorskie"]:hover) .map-voivodeship[data-voivodeship="pomorskie"],
.poland-map-svg:has(.map-city-group[data-voivodeship="slaskie"]:hover) .map-voivodeship[data-voivodeship="slaskie"],
.poland-map-svg:has(.map-city-group[data-voivodeship="swietokrzyskie"]:hover) .map-voivodeship[data-voivodeship="swietokrzyskie"],
.poland-map-svg:has(.map-city-group[data-voivodeship="warminsko-mazurskie"]:hover) .map-voivodeship[data-voivodeship="warminsko-mazurskie"],
.poland-map-svg:has(.map-city-group[data-voivodeship="wielkopolskie"]:hover) .map-voivodeship[data-voivodeship="wielkopolskie"],
.poland-map-svg:has(.map-city-group[data-voivodeship="zachodniopomorskie"]:hover) .map-voivodeship[data-voivodeship="zachodniopomorskie"] {
  fill: var(--color-accent-soft);
  stroke: var(--map-outline-stroke-hover);
  stroke-width: 2.25;
  opacity: 1;
}

.map-city-group {
  cursor: pointer;
  outline: none;
  text-decoration: none;
}

.map-city-hit {
  fill: transparent;
  stroke: none;
  pointer-events: all;
}

.map-city-point {
  fill: var(--color-accent);
  stroke: var(--color-bg);
  stroke-width: 2.5;
  transition: fill 0.2s ease;
  pointer-events: none;
}

.map-city-label {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  fill: var(--color-text);
  pointer-events: all;
  cursor: pointer;
  paint-order: stroke fill;
  stroke: var(--color-bg);
  stroke-width: 3px;
  stroke-linejoin: round;
}

.map-city-group:hover .map-city-point,
.map-city-group:focus-visible .map-city-point {
  fill: var(--color-accent-hover);
}

.map-city-group:hover .map-city-label,
.map-city-group:focus-visible .map-city-label {
  fill: #fff;
}

.map-city-group:focus-visible .map-city-point {
  stroke: #fff;
  stroke-width: 3;
}

@media (max-width: 640px) {
  .poland-map-container {
    padding: var(--space-4) 0;
  }

  .map-city-label {
    font-size: 10px;
    stroke-width: 2px;
  }

  .map-city-point {
    stroke-width: 2;
  }
}

@media (max-width: 480px) {
  .map-city-label {
    display: none;
  }

  #gdzie-dzialamy .hub-quick-jump__inner {
    margin-top: var(--space-4);
  }
}

/* --- Compact wariant mapy (strona główna /targi/) --- */
.poland-map-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: start;
}
@media (min-width: 800px) {
  .poland-map-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--space-8, 3rem);
  }
}
.poland-map-container--compact {
  max-width: 32rem;
  padding: var(--space-3) 0;
  margin: 0;
}
.poland-map-container--compact .poland-map-svg {
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.3));
}
.poland-map-container--compact .map-city-label {
  opacity: 0;
  transition: opacity 0.18s ease;
  pointer-events: none;
}
.poland-map-container--compact .map-city-group:hover .map-city-label,
.poland-map-container--compact .map-city-group:focus-visible .map-city-label,
.poland-map-container--compact .map-city-group.is-highlighted .map-city-label {
  opacity: 1;
}
.poland-map-container--compact .map-city-group.is-highlighted .map-city-point {
  fill: var(--color-accent-hover);
  r: 10;
}

/* Lista miast spięta z mapą */
.poland-map-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
  align-content: start;
}
@media (min-width: 500px) {
  .poland-map-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.poland-map-list__item {
  min-width: 0;
}
.poland-map-list__link {
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-md, 0.5rem);
  border: 1px solid var(--color-border);
  background: var(--color-surface-2, rgba(255, 255, 255, 0.04));
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.poland-map-list__link:hover,
.poland-map-list__link:focus-visible,
.poland-map-list__link.is-active {
  background: var(--color-accent-soft, rgba(245, 158, 11, 0.15));
  border-color: var(--color-accent);
  color: #fff;
  transform: translateY(-1px);
  outline: none;
}
