/* ============================================================
   NiuBrands — statyczna strona (HTML + CSS + JS)
   Paleta: głęboki granat / mosiądz / krem / grafit
   ============================================================ */

:root {
  --royal: #24427c;
  --royal-deep: #16294d;
  --royal-bright: #3560b8;
  --royal-tint: #e8edf7;
  --cream: #f7f5f0;
  --gold: #c9a45c;
  --ink: #14171c;
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Figtree", -apple-system, "Segoe UI", sans-serif;
  background: var(--ink);
  color: var(--cream);
  overflow-x: clip;
  line-height: 1.6;
}

::selection { background: var(--gold); color: var(--ink); }

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; }

.container {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) { .container { padding-inline: 2.5rem; } }

/* ---------- typografia ---------- */
.display {
  font-family: "Manrope", -apple-system, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
}
.display-accent { font-style: italic; font-weight: 600; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.section-label::before {
  content: "";
  width: 2.5rem;
  height: 2px;
  background: currentColor;
}

.section-title {
  margin-top: 1.5rem;
  font-size: clamp(2.1rem, 4.5vw, 4rem);
}

/* ---------- przyciski ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background-color 0.3s, border-color 0.3s, color 0.3s;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px -6px rgba(201, 164, 92, 0.45);
}
.btn-ghost-light {
  border: 1px solid rgba(247, 245, 240, 0.3);
  color: var(--cream);
}
.btn-ghost-light:hover { border-color: var(--cream); background: rgba(247, 245, 240, 0.06); }
.btn-ghost-dark {
  border: 1px solid rgba(20, 23, 28, 0.25);
  color: var(--ink);
}
.btn-ghost-dark:hover { border-color: var(--ink); background: rgba(20, 23, 28, 0.05); }
.btn-royal { background: var(--royal); color: var(--cream); }
.btn-royal:hover { background: var(--royal-deep); }

.link-underline { position: relative; }
.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

/* ---------- nagłówek ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  padding-block: 1.25rem;
  transition: padding 0.5s, background-color 0.5s, box-shadow 0.5s;
}
.site-header.scrolled {
  background: rgba(20, 23, 28, 0.88);
  backdrop-filter: blur(12px);
  padding-block: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.logo em { color: var(--gold); font-style: italic; font-weight: 700; }
.main-nav { display: none; gap: 2rem; }
.main-nav a { font-size: 0.875rem; font-weight: 500; color: rgba(247, 245, 240, 0.8); }
.main-nav a:hover { color: var(--cream); }
@media (min-width: 1024px) { .main-nav { display: flex; } }
.header-cta { display: none; padding: 0.65rem 1.25rem; font-size: 0.875rem; }
@media (min-width: 640px) { .header-cta { display: inline-flex; } }
.menu-toggle {
  display: inline-flex;
  padding: 0.65rem;
  border: 1px solid rgba(247, 245, 240, 0.25);
  border-radius: 999px;
  color: var(--cream);
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(247, 245, 240, 0.1);
  background: rgba(20, 23, 28, 0.97);
  backdrop-filter: blur(12px);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(247, 245, 240, 0.05);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.mobile-nav .btn { margin: 1rem 1.25rem 1.5rem; padding: 0.85rem 1.5rem; font-size: 0.9rem; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--royal);
}
.hero-glow {
  position: absolute;
  top: -33%;
  left: 50%;
  width: 120vw;
  height: 80vh;
  transform: translateX(-50%);
  border-radius: 999px;
  opacity: 0.35;
  background: radial-gradient(ellipse at center, var(--royal-bright) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  min-height: 100svh;
  display: grid;
  gap: 4rem;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 5rem;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 3rem; padding-top: 9rem; }
}
.hero-copy { position: relative; z-index: 2; }
.hero .section-label { color: var(--gold); }
.hero h1 {
  margin-top: 1.5rem;
  max-width: 72rem;
  font-size: clamp(2.9rem, 7.5vw, 5.4rem);
  color: var(--cream);
}
.hero h1 > span { display: block; }
.hero-lede { margin-top: 2rem; max-width: 34rem; font-size: 1.15rem; color: rgba(247, 245, 240, 0.8); }
.hero-actions { position: relative; margin-top: 2.25rem; }
.hero-actions .row { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-actions .btn { padding: 1rem 1.75rem; font-size: 1rem; }
.hero-phone {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(247, 245, 240, 0.7);
}
.hero-phone:hover { color: var(--cream); }
.avail-pill {
  width: fit-content;
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(247, 245, 240, 0.18);
  border-radius: 999px;
  padding: 0.4rem 0.9rem 0.4rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(247, 245, 240, 0.85);
  background: rgba(20, 23, 28, 0.25);
}
.avail-dot { width: 0.55rem; height: 0.55rem; border-radius: 999px; background: #3ddc84; box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.6); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.6); } 70% { box-shadow: 0 0 0 8px rgba(61, 220, 132, 0); } 100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0); } }
.hero-trust {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  font-size: 0.85rem;
  color: rgba(247, 245, 240, 0.65);
}
.hero-trust li { display: flex; align-items: center; gap: 0.5rem; }
.hero-trust li::before { content: ""; width: 0.4rem; height: 0.4rem; border-radius: 999px; background: var(--gold); }
.hero-trust strong { color: var(--cream); font-weight: 700; }

/* hero: wizual */
.hero-visual { position: relative; perspective: 1400px; z-index: 1; }
.tilt { position: relative; transform-style: preserve-3d; transition: transform 0.2s ease-out; will-change: transform; }
.laptop { position: relative; width: 100%; max-width: 40rem; margin-inline: auto; }
.laptop-screen {
  position: relative;
  border-radius: 1rem 1rem 0.35rem 0.35rem;
  background: #0f1216;
  border: 1px solid rgba(247, 245, 240, 0.12);
  padding: 0.55rem 0.55rem 0;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}
.laptop-screen img { width: 100%; height: auto; border-radius: 0.5rem 0.5rem 0 0; aspect-ratio: 1536 / 727; object-fit: cover; object-position: top; }
.laptop-bar { display: flex; align-items: center; gap: 0.35rem; padding: 0.35rem 0.4rem 0.55rem; }
.laptop-bar span { width: 0.5rem; height: 0.5rem; border-radius: 999px; background: rgba(247, 245, 240, 0.18); }
.laptop-bar span:nth-child(1) { background: #ff5f57; } .laptop-bar span:nth-child(2) { background: #febc2e; } .laptop-bar span:nth-child(3) { background: #28c840; }
.laptop-bar i { margin-left: 0.5rem; flex: 1; font-style: normal; font-size: 0.6rem; color: rgba(247, 245, 240, 0.4); background: rgba(247, 245, 240, 0.06); border-radius: 0.3rem; padding: 0.15rem 0.6rem; }
.laptop-base {
  height: 0.9rem;
  margin-inline: -4%;
  border-radius: 0 0 1rem 1rem;
  background: linear-gradient(180deg, #2a2f38, #14171c);
  box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.7);
}
.laptop-base::after { content: ""; display: block; width: 18%; height: 0.3rem; margin-inline: auto; border-radius: 0 0 0.4rem 0.4rem; background: rgba(0, 0, 0, 0.35); }
.float-card {
  position: absolute;
  border-radius: 1rem;
  background: rgba(247, 245, 240, 0.97);
  color: var(--ink);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: float-y 6s ease-in-out infinite;
}
.float-shot { left: -6%; bottom: -8%; width: 38%; padding: 0.4rem; background: #1b1e24; animation-delay: -1.5s; }
.float-shot img { width: 100%; height: auto; border-radius: 0.6rem; aspect-ratio: 800 / 388; object-fit: cover; object-position: top; }
.float-badge { right: -4%; top: -6%; padding: 0.9rem 1.1rem; display: grid; gap: 0.1rem; animation-delay: -3s; }
.float-stars { color: var(--gold); letter-spacing: 0.1em; font-size: 0.85rem; }
.float-badge strong { font-family: "Manrope", sans-serif; font-weight: 800; font-size: 1rem; letter-spacing: -0.02em; }
.float-badge span:last-child { font-size: 0.7rem; color: rgba(20, 23, 28, 0.6); }
.float-time { right: 2%; bottom: 14%; padding: 0.85rem 1.1rem; display: grid; background: var(--gold); animation-delay: -4.5s; }
.float-time strong { font-family: "Manrope", sans-serif; font-weight: 800; font-size: 1.6rem; line-height: 1; letter-spacing: -0.03em; }
.float-time span { font-size: 0.7rem; font-weight: 600; color: rgba(20, 23, 28, 0.7); }
@keyframes float-y { 0%, 100% { margin-top: 0; } 50% { margin-top: -10px; } }
@media (max-width: 1023px) {
  .hero-visual { max-width: 36rem; margin-inline: auto; width: 100%; padding-inline: 6%; }
  .float-badge, .float-time { display: none; }
}

.scroll-hint {
  margin-top: 5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(247, 245, 240, 0.5);
}
.scroll-hint svg { animation: bounce 1.8s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.scribble-wrap { position: relative; display: inline-block; }
.scribble-circle {
  position: absolute;
  top: -0.2em;
  left: -0.3em;
  width: calc(100% + 0.6em);
  height: calc(100% + 0.35em);
  border: 0.045em solid var(--gold);
  border-radius: 50%;
  transform: rotate(-2deg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease 0.7s;
}
.scribble-circle { opacity: 1; }
.scribble-arrow { display: none; }

.scribble-path {
  stroke-dasharray: var(--len, 900);
  stroke-dashoffset: var(--len, 900);
}
.scribble-path.drawn {
  animation: draw-stroke 1.4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: var(--delay, 0.6s);
}
@keyframes draw-stroke { to { stroke-dashoffset: 0; } }

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--cream);
  padding-block: 1.25rem;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding-right: 2rem;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.marquee-item svg { width: 1rem; height: 1rem; color: var(--royal); flex-shrink: 0; }

/* ---------- sekcje ogólne ---------- */
.section { padding-block: 6rem; }
@media (min-width: 768px) { .section { padding-block: 9rem; } }
.section--cream { background: var(--cream); color: var(--ink); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--royal { background: var(--royal); color: var(--cream); position: relative; overflow: hidden; }
.glow-corner {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0.3;
  background: radial-gradient(ellipse at center, var(--royal-bright) 0%, transparent 65%);
}

.split-grid { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .split-grid { grid-template-columns: 1fr 1.6fr; } }
.sticky-col { align-self: start; }
@media (min-width: 1024px) { .sticky-col { position: sticky; top: 8rem; } }

/* ---------- oferta ---------- */
.service {
  border-top: 2px solid rgba(20, 23, 28, 0.1);
  padding-block: 2.5rem;
  transition: background-color 0.5s;
}
.service:first-child { border-top: 0; padding-top: 0; }
.service:hover { background: rgba(232, 237, 247, 0.6); }
.service-head { display: flex; align-items: flex-start; gap: 1.5rem; }
.service-no {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--royal);
  padding-top: 0.35rem;
}
.service-body { flex: 1; }
.service-body h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}
.service-body h3 svg { width: 2rem; height: 2rem; color: var(--royal); margin-bottom: 0.75rem; }
.service-body p { margin-top: 1rem; max-width: 36rem; color: rgba(20, 23, 28, 0.7); }
.tags { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tags li {
  border: 1px solid rgba(20, 23, 28, 0.15);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(20, 23, 28, 0.6);
}
.service-arrow {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  margin-top: 0.5rem;
  color: rgba(20, 23, 28, 0.25);
  transition: transform 0.5s var(--ease), color 0.5s;
}
.service:hover .service-arrow { transform: translate(4px, -4px); color: var(--royal); }

/* ---------- realizacje ---------- */
.work-head { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1.5rem; }
@media (min-width: 768px) { .work-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.work-head p { max-width: 22rem; color: rgba(247, 245, 240, 0.6); }
.work-marquee { margin-top: 4rem; }
.work-hint {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(247, 245, 240, 0.3);
}
.browser-card {
  width: 300px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(247, 245, 240, 0.1);
  background: #1b1e24;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s var(--ease);
}
@media (min-width: 768px) { .browser-card { width: 360px; } }
.browser-card:hover { transform: translateY(-10px) rotate(-1deg); }
.browser-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.browser-zoom {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(20, 23, 28, 0.35); opacity: 0; transition: opacity 0.4s;
}
.browser-zoom svg { width: 2.5rem; height: 2.5rem; color: var(--cream); background: rgba(20, 23, 28, 0.6); border-radius: 999px; padding: 0.6rem; }
.browser-card:hover .browser-zoom { opacity: 1; }
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(247, 245, 240, 0.1);
  padding: 0.75rem 1rem;
}
.dot { width: 0.65rem; height: 0.65rem; border-radius: 999px; }
.dot--r { background: #ff5f57; } .dot--y { background: #febc2e; } .dot--g { background: #28c840; }
.browser-url {
  margin-left: 0.75rem;
  flex: 1;
  border-radius: 0.4rem;
  background: rgba(247, 245, 240, 0.05);
  padding: 0.3rem 0.75rem;
  font-size: 0.65rem;
  color: rgba(247, 245, 240, 0.4);
  white-space: nowrap;
  overflow: hidden;
}
.browser-view { position: relative; height: 11rem; overflow: hidden; }
@media (min-width: 768px) { .browser-view { height: 13rem; } }
.browser-glyph {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-family: "Manrope", sans-serif;
  font-size: 3.5rem;
  color: rgba(247, 245, 240, 0.25);
}
.browser-shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform 0.6s ease; }
.browser-card:hover .browser-shot { transform: scale(1.04); }
.browser-lines { position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem; }
.browser-lines i { display: block; height: 0.6rem; border-radius: 999px; background: rgba(247, 245, 240, 0.28); margin-top: 0.5rem; }
.browser-lines i:nth-child(1) { width: 75%; }
.browser-lines i:nth-child(2) { width: 50%; background: rgba(247, 245, 240, 0.18); }
.browser-lines b { display: block; width: 6rem; height: 1.6rem; border-radius: 999px; background: rgba(201, 164, 92, 0.9); margin-top: 0.85rem; }
.browser-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  gap: 0.75rem;
}
.browser-meta h3 { font-size: 0.85rem; font-weight: 700; color: var(--cream); }
.browser-meta span {
  border: 1px solid rgba(247, 245, 240, 0.15);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(247, 245, 240, 0.5);
  white-space: nowrap;
}

/* ---------- statystyki ---------- */
.stats-band { background: var(--ink); color: var(--cream); padding-block: 4.5rem; border-bottom: 1px solid rgba(247, 245, 240, 0.08); }
@media (min-width: 768px) { .stats-band { padding-block: 5.5rem; } }
.stats-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr 1fr; }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.stat { border-left: 2px solid var(--gold); padding-left: 1.5rem; }
.stat-value {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: clamp(3.25rem, 7vw, 6rem);
  color: var(--cream);
  line-height: 0.95;
}
.stat-value em { color: var(--gold); font-style: italic; font-weight: 700; }
.stat-label {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(247, 245, 240, 0.55);
}
.stats-badge {
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid rgba(247, 245, 240, 0.15);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font-size: 0.875rem;
  color: rgba(247, 245, 240, 0.8);
  transition: border-color 0.3s, background-color 0.3s;
}
.stats-badge:hover { border-color: var(--gold); background: rgba(201, 164, 92, 0.08); }
.stats-badge .stars { color: var(--gold); letter-spacing: 0.1em; }
.stats-badge strong { color: var(--cream); }
.stats-badge-arrow { color: var(--gold); }

/* ---------- cennik ---------- */
.pricing-grid { margin-top: 4rem; display: grid; gap: 2rem; }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
.price-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) { .price-card { padding: 3rem; } }
.price-card--light { background: var(--cream); color: var(--ink); }
.price-card--dark { border: 2px solid rgba(247, 245, 240, 0.2); color: var(--cream); }
.price-badge {
  position: absolute;
  top: -1rem;
  left: 2rem;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-card h3 { font-family: "Manrope", sans-serif; font-weight: 800; letter-spacing: -0.02em; font-size: 1.75rem; }
.price-value { margin-top: 1.5rem; display: flex; align-items: baseline; gap: 0.5rem; }
.price-value strong {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(3.5rem, 6vw, 4.5rem);
  line-height: 1;
}
.price-card--dark .price-value strong { color: var(--gold); }
.price-note { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(20, 23, 28, 0.6); }
.price-card--dark .price-note, .price-card--dark > p { color: rgba(247, 245, 240, 0.75); }
.price-card > p { margin-top: 1.5rem; }
.price-list { margin-top: 2rem; display: grid; gap: 0.85rem; flex: 1; font-size: 0.95rem; }
.price-list li { display: flex; align-items: flex-start; gap: 0.75rem; }
.check-bullet {
  margin-top: 0.15rem;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--royal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.check-bullet svg { width: 0.7rem; height: 0.7rem; color: var(--cream); }
.check-bullet--line { background: transparent; }
.check-bullet--line svg { width: 1rem; height: 1rem; color: var(--gold); }
.price-card .btn { margin-top: 2.5rem; width: 100%; padding: 1rem 1.75rem; font-size: 1rem; }
.guarantee {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(247, 245, 240, 0.15);
  border-radius: 1.25rem;
  padding: 1.5rem;
  background: rgba(20, 23, 28, 0.2);
}
@media (min-width: 768px) { .guarantee { grid-template-columns: repeat(3, 1fr); padding: 1.5rem 2rem; } }
.guarantee li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: rgba(247, 245, 240, 0.8); }
.guarantee li svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; margin-top: 0.2rem; color: var(--gold); }
.guarantee strong { color: var(--cream); }
.compare { margin-top: 5rem; }
.compare-title { font-family: "Manrope", sans-serif; font-weight: 800; letter-spacing: -0.02em; font-size: clamp(1.5rem, 3vw, 2.25rem); }
.compare-scroll { margin-top: 2rem; overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 1.25rem; border: 1px solid rgba(247, 245, 240, 0.15); }
.compare-table { width: 100%; min-width: 44rem; border-collapse: collapse; font-size: 0.9rem; }
.compare-table th, .compare-table td { padding: 1rem 1.25rem; text-align: left; vertical-align: top; border-bottom: 1px solid rgba(247, 245, 240, 0.1); }
.compare-table thead th { font-family: "Manrope", sans-serif; font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(247, 245, 240, 0.6); background: rgba(20, 23, 28, 0.25); }
.compare-table tbody th { font-weight: 700; color: var(--cream); white-space: nowrap; }
.compare-table td { color: rgba(247, 245, 240, 0.7); }
.compare-table .is-me { background: rgba(201, 164, 92, 0.12); color: var(--cream); }
.compare-table thead .is-me { color: var(--gold); }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-note { margin-top: 1rem; font-size: 0.75rem; color: rgba(247, 245, 240, 0.45); }
.pricing-foot { margin-top: 2.5rem; text-align: center; font-size: 0.875rem; color: rgba(247, 245, 240, 0.6); }

/* ---------- proces ---------- */
.process-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 2px solid rgba(20, 23, 28, 0.1);
  border-radius: 1.5rem;
  background: rgba(20, 23, 28, 0.1);
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.step { background: var(--cream); padding: 2rem; transition: background-color 0.5s; }
@media (min-width: 768px) { .step { padding: 2.5rem; } }
.step:hover { background: var(--royal); }
.step-no {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 2.75rem;
  letter-spacing: -0.03em;
  color: rgba(36, 66, 124, 0.25);
  transition: color 0.5s;
}
.step:hover .step-no { color: var(--gold); }
.step h3 {
  margin-top: 1.5rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.4rem;
  transition: color 0.5s;
}
.step:hover h3 { color: var(--cream); }
.step-lead {
  margin-top: 0.25rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--royal);
  transition: color 0.5s;
}
.step:hover .step-lead { color: var(--gold); }
.step p { margin-top: 1rem; font-size: 0.93rem; color: rgba(20, 23, 28, 0.7); transition: color 0.5s; }
.step:hover p { color: rgba(247, 245, 240, 0.8); }

/* ---------- opinie ---------- */
.quotes-grid { margin-top: 4rem; display: grid; gap: 2rem; }
@media (min-width: 768px) { .quotes-grid { grid-template-columns: repeat(3, 1fr); } }
.quote {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(247, 245, 240, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: border-color 0.5s;
}
.quote:hover { border-color: rgba(201, 164, 92, 0.4); }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid rgba(247, 245, 240, 0.15);
  border-radius: 999px;
  padding: 0.6rem 1.25rem 0.6rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color 0.3s, background-color 0.3s;
  align-self: flex-end;
}
.google-badge:hover { border-color: var(--gold); background: rgba(201, 164, 92, 0.08); }
.google-badge svg { width: 1.5rem; height: 1.5rem; }
.google-badge > span { display: grid; line-height: 1.3; }
.stars-inline { color: var(--gold); letter-spacing: 0.1em; font-size: 0.8rem; }
.stars { display: flex; gap: 0.25rem; }
.stars svg { width: 1rem; height: 1rem; fill: var(--gold); color: var(--gold); }
.quote blockquote {
  margin-top: 1.5rem;
  flex: 1;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 1.15rem;
  line-height: 1.5;
  color: rgba(247, 245, 240, 0.9);
}
.quote figcaption { margin-top: 2rem; border-top: 1px solid rgba(247, 245, 240, 0.1); padding-top: 1.25rem; }
.quote-author { font-weight: 700; }
.quote-role { font-size: 0.875rem; color: rgba(247, 245, 240, 0.5); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 2px solid rgba(20, 23, 28, 0.1); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.5rem;
  text-align: left;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: var(--ink);
  transition: color 0.3s;
}
.faq-q:hover, .faq-item.open .faq-q { color: var(--royal); }
.faq-q svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-a-inner { padding-bottom: 1.5rem; color: rgba(20, 23, 28, 0.7); max-width: 44rem; }

/* ---------- kontakt ---------- */
.contact-grid { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-lede { margin-top: 2rem; max-width: 28rem; font-size: 1.1rem; color: rgba(247, 245, 240, 0.8); }
.contact-list { margin-top: 3rem; display: grid; gap: 1.5rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 245, 240, 0.25);
  border-radius: 999px;
  transition: border-color 0.3s, background-color 0.3s;
}
.contact-icon svg { width: 1.25rem; height: 1.25rem; color: var(--gold); }
.contact-item:hover .contact-icon { border-color: var(--gold); background: rgba(201, 164, 92, 0.1); }
.contact-kicker { display: block; font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(247, 245, 240, 0.5); }
.contact-value {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1.35rem;
  transition: color 0.3s;
}
.contact-item:hover .contact-value { color: var(--gold); }

.contact-form {
  border: 1px solid rgba(247, 245, 240, 0.15);
  border-radius: 1.5rem;
  background: rgba(20, 23, 28, 0.25);
  backdrop-filter: blur(6px);
  padding: 2rem;
}
@media (min-width: 768px) { .contact-form { padding: 2.5rem; } }
.contact-form h3 { font-family: "Manrope", sans-serif; font-weight: 800; letter-spacing: -0.02em; font-size: 1.5rem; }
.contact-form > p { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(247, 245, 240, 0.6); }
.form-grid { margin-top: 2rem; display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .span-2 { grid-column: span 2; } }
.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(247, 245, 240, 0.6);
}
.field input, .field textarea {
  width: 100%;
  border: 1px solid rgba(247, 245, 240, 0.2);
  border-radius: 0.75rem;
  background: rgba(247, 245, 240, 0.05);
  padding: 0.85rem 1rem;
  color: var(--cream);
  font: inherit;
  outline: none;
  transition: border-color 0.3s, background-color 0.3s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(247, 245, 240, 0.35); }
.field input:focus, .field textarea:focus { border-color: var(--gold); background: rgba(247, 245, 240, 0.1); }
.contact-form .btn { margin-top: 2rem; width: 100%; padding: 1rem; font-size: 1rem; }
.field input.is-invalid, .field textarea.is-invalid { border-color: #ff6b6b; background: rgba(255, 107, 107, 0.08); }
.form-success { margin-top: 2rem; display: grid; gap: 0.5rem; border: 1px solid rgba(201, 164, 92, 0.5); background: rgba(201, 164, 92, 0.1); border-radius: 1rem; padding: 1.5rem; }
.form-success strong { font-family: "Manrope", sans-serif; font-size: 1.15rem; }
.form-success a { color: var(--gold); font-weight: 700; }
.form-note.is-error { color: #ff9b9b; }
.form-note { margin-top: 1rem; text-align: center; font-size: 0.75rem; color: rgba(247, 245, 240, 0.45); }

/* ---------- stopka ---------- */
.site-footer { border-top: 1px solid rgba(247, 245, 240, 0.1); background: var(--ink); padding-block: 4rem; }
.footer-grid { display: flex; flex-direction: column; gap: 3rem; }
@media (min-width: 768px) { .footer-grid { flex-direction: row; align-items: flex-start; justify-content: space-between; } }
.footer-brand p { margin-top: 1rem; max-width: 20rem; font-size: 0.875rem; color: rgba(247, 245, 240, 0.5); }
.footer-nav { display: grid; grid-template-columns: repeat(2, auto); column-gap: 4rem; row-gap: 0.75rem; }
.footer-nav a { width: fit-content; font-size: 0.875rem; font-weight: 500; color: rgba(247, 245, 240, 0.7); }
.footer-nav a:hover { color: var(--cream); }
.footer-info { font-size: 0.875rem; color: rgba(247, 245, 240, 0.5); line-height: 1.7; }
.footer-info strong { color: rgba(247, 245, 240, 0.8); }
.footer-info a { color: rgba(247, 245, 240, 0.8); }
.footer-info a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(247, 245, 240, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(247, 245, 240, 0.4);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }

/* ---------- pasek CTA mobile ---------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 45;
  display: flex;
  gap: 0.6rem;
  padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(20, 23, 28, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(247, 245, 240, 0.1);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}
.mobile-cta.is-ready { transform: translateY(0); }
.mobile-cta.is-hidden { transform: translateY(110%); }
.mobile-cta .btn { flex: 1; padding: 0.85rem 1rem; font-size: 0.9rem; }
@media (min-width: 1024px) { .mobile-cta { display: none; } }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  background: rgba(10, 12, 16, 0.92);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; }
.lightbox[hidden] { display: none; }
.lb-figure { width: min(100%, 72rem); max-height: 100%; display: flex; flex-direction: column; gap: 1rem; transform: translateY(20px) scale(0.98); transition: transform 0.4s var(--ease); }
.lightbox.open .lb-figure { transform: none; }
.lb-frame { border-radius: 1rem; overflow: hidden; border: 1px solid rgba(247, 245, 240, 0.12); background: #1b1e24; box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8); }
.lb-view { max-height: calc(100svh - 12rem); overflow-y: auto; overscroll-behavior: contain; background: #0f1216; }
.lb-view img { width: 100%; height: auto; display: block; }
.lb-caption { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1.5rem; color: var(--cream); }
.lb-caption strong { font-family: "Manrope", sans-serif; font-weight: 800; font-size: 1.1rem; letter-spacing: -0.02em; }
.lb-caption > span { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(247, 245, 240, 0.5); }
.lb-caption .btn { margin-left: auto; padding: 0.7rem 1.25rem; font-size: 0.875rem; }
.lb-close, .lb-nav {
  position: absolute; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 999px;
  color: var(--cream); background: rgba(247, 245, 240, 0.08); border: 1px solid rgba(247, 245, 240, 0.15);
  transition: background-color 0.3s, border-color 0.3s;
}
.lb-close:hover, .lb-nav:hover { background: rgba(201, 164, 92, 0.2); border-color: var(--gold); }
.lb-close { top: 1rem; right: 1rem; }
.lb-nav { top: 50%; transform: translateY(-50%); }
.lb-prev { left: 1rem; } .lb-next { right: 1rem; }
@media (max-width: 767px) { .lb-nav { top: auto; bottom: 1rem; transform: none; } .lb-caption .btn { margin-left: 0; width: 100%; } .lb-view { max-height: calc(100svh - 15rem); } }

/* ---------- reveal animacje ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .scribble-path { stroke-dashoffset: 0 !important; animation: none !important; }
  .scroll-hint svg { animation: none; }
  .float-card, .avail-dot { animation: none; }
  .mobile-cta, .lightbox, .lb-figure { transition: none; }
}

@media (max-width: 1023px) { .site-footer { padding-bottom: 8rem; } }

[hidden]{display:none!important} body.niu-homepage{margin:0} body.admin-bar #site-header{top:32px} @media(max-width:782px){body.admin-bar #site-header{top:46px}}
