/* ═══════════════════════════════════════════════
   FILMOLOT — Strona prezentacyjna
   ═══════════════════════════════════════════════ */

/* ── Zmienne ─────────────────────────────────── */
:root {
  --bg:       #07070E;
  --bg-alt:   #0C0C1C;
  --bg-card:  #101022;
  --gold:     #C8920A;
  --gold-lt:  #E0AC30;
  --white:    #EDEEF8;
  --muted:    #5C5C80;
  --muted-lt: #9090B8;
  --orange:   #D95B36;
  --border:   rgba(200, 146, 10, 0.14);
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --f-head:   'Syne', sans-serif;
  --f-body:   'Cormorant Garamond', Georgia, serif;
}

/* ── Reset ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.75;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { border: none; background: none; font: inherit; cursor: pointer; }

/* ── Typografia ──────────────────────────────── */
h1, h2, h3,
.stat-n, .client-badge, .pli-n,
.footer-brand, .nav-logo-text { font-family: var(--f-head); font-weight: 800; line-height: 1.05; }
em { font-style: italic; color: var(--gold-lt); }
sup { font-size: 0.55em; vertical-align: super; }

/* ── Grain overlay ───────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Container ───────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

/* ── Sekcje ──────────────────────────────────── */
.section { padding: clamp(80px, 10vw, 140px) 0; }
.section-alt { background: var(--bg-alt); }

.eyebrow {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(38px, 5.5vw, 68px);
  letter-spacing: -0.02em;
  margin-bottom: clamp(40px, 5vw, 72px);
}

/* ── Reveal animation ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════
   NAWIGACJA
   ═══════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 clamp(20px, 5vw, 64px);
  transition: background 0.45s var(--ease), backdrop-filter 0.45s;
}
#nav.scrolled {
  background: rgba(7, 7, 14, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
#navLogoImg {
  height: 38px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-lt);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  color: var(--gold) !important;
  border: 1px solid rgba(200, 146, 10, 0.5);
  padding: 8px 18px;
  transition: background 0.25s, color 0.25s, border-color 0.25s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--bg) !important;
  border-color: var(--gold) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#heroVideo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(7,7,14,0.7) 100%),
    linear-gradient(to bottom, rgba(7,7,14,0.2) 0%, rgba(7,7,14,0.55) 60%, rgba(7,7,14,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  text-align: center;
  animation: heroIn 1.2s var(--ease) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
.hero-mark {
  display: flex;
  justify-content: center;
}
#heroLogoImg {
  height: clamp(80px, 14vw, 150px);
  width: auto;
  filter: drop-shadow(0 4px 32px rgba(0,0,0,0.6));
}
.hero-tagline {
  font-size: clamp(17px, 2.5vw, 24px);
  color: rgba(237, 238, 248, 0.82);
  letter-spacing: 0.01em;
}
.hero-subjects {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-lt);
  flex-wrap: wrap;
  justify-content: center;
}
.hero-subjects i {
  display: inline-block;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  font-style: normal;
  flex-shrink: 0;
}
.hero-scroll {
  margin-top: 20px;
  color: rgba(237, 238, 248, 0.4);
  transition: color 0.3s;
  width: 28px;
}
.hero-scroll:hover { color: var(--gold); }
.hero-scroll svg { width: 28px; height: 44px; }

@keyframes scrollBob {
  0%   { transform: translateY(0);  opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  71%  { transform: translateY(0);  opacity: 0; }
  100% { transform: translateY(0);  opacity: 1; }
}
.scroll-dot { animation: scrollBob 2.4s ease-in-out infinite; transform-origin: center 11px; }

/* Reticle decoration */
.hero-reticle {
  position: absolute;
  bottom: 52px;
  right: 52px;
  width: 72px; height: 72px;
  z-index: 2;
  opacity: 0.22;
  pointer-events: none;
}
.ret-h {
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1px;
  background: var(--gold-lt);
}
.ret-v {
  position: absolute;
  left: 50%; top: 0;
  width: 1px; height: 100%;
  background: var(--gold-lt);
}
.ret-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 28px; height: 28px;
  border: 1px solid var(--gold-lt);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.ret-ring-2 {
  width: 60px; height: 60px;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════════
   O NAS
   ═══════════════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  margin-bottom: 64px;
  align-items: start;
}
.about-hed h2 {
  font-size: clamp(40px, 5.5vw, 76px);
  letter-spacing: -0.025em;
}
.about-copy .lead {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 22px;
}
.about-copy p {
  color: var(--muted-lt);
  margin-bottom: 18px;
  font-size: 17px;
}
.about-copy p:last-child { margin-bottom: 0; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--border);
  gap: 1px;
  border: 1px solid var(--border);
}
.stat {
  background: var(--bg);
  padding: clamp(24px, 3vw, 40px) clamp(16px, 2vw, 28px);
  text-align: center;
}
.stat-n {
  font-size: clamp(40px, 5vw, 60px);
  color: var(--gold);
  letter-spacing: -0.03em;
  display: block;
  margin-bottom: 8px;
}
.stat-l {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════
   KLIENCI
   ═══════════════════════════════════════════════ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 36px;
}
.client-card {
  background: var(--bg-alt);
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  transition: background 0.3s var(--ease);
}
.client-card:hover { background: var(--bg-card); }
.client-badge {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 10px;
}
.client-name {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: clamp(16px, 2vw, 22px);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.client-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.clients-footnote { /* removed – section is clean without it */ }

/* ═══════════════════════════════════════════════
   GALERIA
   ═══════════════════════════════════════════════ */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 3px;
  margin-top: 36px;
}
.mitem {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--bg-card);
}
/* Editorial grid spans */
.mitem:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mitem:nth-child(6) { grid-column: span 2; }
.mitem:nth-child(10) { grid-column: span 2; grid-row: span 2; }

.mitem img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease), filter 0.4s;
  filter: brightness(0.82) saturate(0.88);
}
.mitem:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.05);
}
.mitem::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,14,0.55) 0%, transparent 55%);
  opacity: 0.7;
  transition: opacity 0.4s;
  pointer-events: none;
}
.mitem:hover::after { opacity: 0; }

/* ═══════════════════════════════════════════════
   FILMY
   ═══════════════════════════════════════════════ */
.video-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 16px;
  align-items: start;
}
.video-stage video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
  display: block;
}
.video-bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: none;
  padding: 12px 18px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-lt);
}
.playlist {
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.pli {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  text-align: left;
  transition: background 0.2s;
  width: 100%;
}
.pli:last-child { border-bottom: none; }
.pli:hover, .pli.active { background: rgba(200,146,10,0.07); }
.pli-n {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  min-width: 22px;
  flex-shrink: 0;
}
.pli.active .pli-n { color: var(--gold); }
.pli-info { flex: 1; overflow: hidden; }
.pli-title {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pli.active .pli-title { color: var(--gold-lt); }
.pli-sub {
  font-size: 10px;
  color: var(--muted);
  font-family: var(--f-head);
  font-weight: 400;
  display: block;
  margin-top: 2px;
}
.pli-arrow {
  color: var(--muted);
  font-size: 13px;
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.pli:hover .pli-arrow, .pli.active .pli-arrow {
  color: var(--gold);
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════════
   SPRZĘT
   ═══════════════════════════════════════════════ */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.equip-card {
  background: var(--bg);
  padding: clamp(28px, 3.5vw, 44px) clamp(20px, 2.5vw, 32px);
  transition: background 0.3s var(--ease);
}
.equip-card:hover { background: var(--bg-card); }
.equip-ico {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.75;
  transition: opacity 0.3s;
}
.equip-card:hover .equip-ico { opacity: 1; }
.equip-ico svg { width: 100%; height: 100%; }
.equip-card h3 {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.equip-card p {
  font-size: 15px;
  color: var(--muted-lt);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════ */
.section-cta {
  position: relative;
  padding: clamp(100px, 14vw, 180px) 0;
  overflow: hidden;
}
.cta-videobg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-videobg video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.35) brightness(0.7);
}
.cta-veil {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 14, 0.72);
}
.cta-body {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-hed {
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: -0.025em;
  margin: 8px 0 18px;
}
.cta-sub {
  font-size: clamp(15px, 2vw, 19px);
  color: var(--muted-lt);
  font-style: italic;
  margin-bottom: 52px;
}
.cta-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 38px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid;
  transition: background 0.3s, color 0.3s, transform 0.25s;
}
.social-btn:hover { transform: translateY(-3px); }
.social-btn svg { width: 21px; height: 21px; flex-shrink: 0; }

.social-ig {
  color: var(--white);
  border-color: rgba(237, 238, 248, 0.5);
}
.social-ig:hover {
  background: var(--white);
  color: var(--bg);
  border-color: var(--white);
}
.social-fb {
  color: var(--gold-lt);
  border-color: rgba(224, 172, 48, 0.45);
}
.social-fb:hover {
  background: var(--gold-lt);
  color: var(--bg);
  border-color: var(--gold-lt);
}

/* ═══════════════════════════════════════════════
   STOPKA
   ═══════════════════════════════════════════════ */
#footer {
  background: #040408;
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand {
  font-size: 15px;
  letter-spacing: 0.25em;
  color: var(--gold);
}
.footer-email {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gold);
  transition: color 0.2s;
}
.footer-email:hover { color: var(--gold-lt); }
.footer-copy {
  font-family: var(--f-head);
  font-weight: 400;
  font-size: 11px;
  color: var(--muted);
}
.footer-socials {
  display: flex;
  gap: 24px;
}
.footer-socials a {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-socials a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════ */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lightbox[hidden] { display: none; }
.lb-bg {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 10, 0.96);
  cursor: zoom-out;
}
.lb-frame {
  position: relative;
  z-index: 1;
  max-width: 92vw;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#lbImg {
  max-width: 100%;
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 8px 80px rgba(0,0,0,0.9);
}
.lb-count {
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
}
.lb-x, .lb-arrow {
  position: fixed;
  z-index: 2;
  color: rgba(237,238,248,0.6);
  transition: color 0.2s;
  font-size: 26px;
  line-height: 1;
  padding: 12px;
}
.lb-x:hover, .lb-arrow:hover { color: var(--gold); }
.lb-x { top: 22px; right: 26px; font-size: 34px; }
.lb-arrow-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-arrow-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ── Acrobacja.com upsell ─────────────────────── */
.section-acrobacja {
  overflow: hidden;
}
.acrobacja-inner {
  display: flex;
  min-height: 560px;
}
.acrobacja-text {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 100px) clamp(40px, 6vw, 100px);
  background: var(--bg-alt);
  position: relative;
  z-index: 1;
}
.acrobacja-text h2 {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 10px 0 20px;
}
.acrobacja-text p {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--muted-lt);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
}
.acrobacja-text p strong {
  color: var(--gold-lt);
}
.btn-acrobacja {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #0a0604;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  align-self: flex-start;
}
.btn-acrobacja svg {
  width: 18px; height: 18px;
  transition: transform 0.2s var(--ease);
}
.btn-acrobacja:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}
.btn-acrobacja:hover svg { transform: translateX(4px); }
.acrobacja-video {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.acrobacja-video video {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.85);
}
.acrobacja-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg-alt) 0%, transparent 30%);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — tablet
   ═══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .about-layout { grid-template-columns: 1fr; gap: 36px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .mosaic { grid-template-columns: repeat(3, 1fr); }
  .mitem:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .mitem:nth-child(10) { grid-column: span 1; grid-row: span 1; }
  .video-layout { grid-template-columns: 1fr; }
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-reticle { display: none; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — mobile
   ═══════════════════════════════════════════════ */
@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(7, 7, 14, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 14px clamp(20px, 5vw, 40px);
  }
  .nav-cta { border: none !important; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 150px;
  }
  .mitem:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .mitem:nth-child(6) { grid-column: span 2; }
  .mitem:nth-child(10) { grid-column: span 1; grid-row: span 1; }

  .clients-grid { grid-template-columns: 1fr; }
  .equip-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }

  .cta-btns { flex-direction: column; align-items: center; }
  .social-btn { width: 100%; max-width: 320px; justify-content: center; }

  .footer-inner { flex-direction: column; text-align: center; }

  .lb-arrow-prev { left: 10px; }
  .lb-arrow-next { right: 10px; }

  .acrobacja-inner { flex-direction: column; min-height: auto; }
  .acrobacja-text { padding: clamp(60px, 10vw, 80px) clamp(20px, 5vw, 40px); max-width: 100%; }
  .acrobacja-video { height: 280px; }
}
}
