@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --p: #7c3aed;
  --p2: #a855f7;
  --p3: #c084fc;
  --blk: #060608;
  --g1: #111115;
  --g2: #1a1a20;
  --s: #c0c0c0;
  --txt: #f0f0f0;
  --mut: #666;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--blk);
  color: var(--txt);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--p), var(--p2));
}

/* CURSOR */
#cursor,
#cursor-trail {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  #cursor {
    display: block;
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--p2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
    mix-blend-mode: difference;
  }
  #cursor-trail {
    display: block;
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition:
      left 0.12s ease,
      top 0.12s ease;
  }
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  padding: 1.2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s;
  gap: 1rem;
  pointer-events: auto;
}
nav * {
  pointer-events: auto;
}
nav.scrolled {
  background: rgba(6, 6, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
}
.logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
}
.logo span {
  color: var(--p2);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--mut);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--p2);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: #fff;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a.active {
  color: var(--p2);
}
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  background: linear-gradient(135deg, var(--p), var(--p2));
  color: #fff;
  border: none;
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--p2), var(--p3));
  opacity: 0;
  transition: 0.3s;
}
.nav-cta:hover::before {
  opacity: 1;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}
.nav-cta span {
  position: relative;
  z-index: 1;
}

/* NAV AVAILABLE */
.nav-avail-wrap {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
}
.nav-avail-dot {
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: availPulse 2s ease-in-out infinite;
}
@keyframes availPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
  }
}
.nav-avail-text {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* PRELOADER (zachowany dla kompatybilności) */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--blk);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
}
.pre-logo {
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  opacity: 0;
  animation: preIn 0.6s 0.2s forwards;
}
.pre-logo span {
  color: var(--p2);
}
.pre-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.pre-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--p), var(--p2), var(--p3));
  animation: preFill 1.4s 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  width: 0;
}
@keyframes preIn {
  to {
    opacity: 1;
  }
}
@keyframes preFill {
  to {
    width: 100%;
  }
}

/* HERO */
#hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 5% 4rem;
  position: relative;
  overflow: hidden;
}
#c1 {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  width: 100%;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.35);
  color: var(--p2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: fadeDown 0.8s 0.2s both;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.dot {
  width: 7px;
  height: 7px;
  background: var(--p2);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.6);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(168, 85, 247, 0);
  }
}
.glitch-wrap {
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s 0.3s both;
}
.glitch {
  font-size: clamp(2.8rem, 9vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  position: relative;
  color: #fff;
  display: inline-block;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.glitch::before {
  color: #a855f7;
  animation: glitch1 3s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}
.glitch::after {
  color: #22d3ee;
  animation: glitch2 3s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}
@keyframes glitch1 {
  0%,
  90%,
  100% {
    transform: none;
    opacity: 0;
  }
  91% {
    transform: translate(-3px, 1px);
    opacity: 0.8;
  }
  93% {
    transform: translate(3px, -1px);
    opacity: 0.8;
  }
  95% {
    transform: translate(-1px, 2px);
    opacity: 0.8;
  }
  97% {
    transform: none;
    opacity: 0;
  }
}
@keyframes glitch2 {
  0%,
  88%,
  100% {
    transform: none;
    opacity: 0;
  }
  89% {
    transform: translate(3px, 2px);
    opacity: 0.8;
  }
  91% {
    transform: translate(-3px, -2px);
    opacity: 0.8;
  }
  93% {
    transform: translate(2px, 1px);
    opacity: 0.8;
  }
  95% {
    transform: none;
    opacity: 0;
  }
}
.gradient-title {
  font-size: clamp(2.8rem, 9vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(
    135deg,
    #c0c0c0 0%,
    #fff 40%,
    #a855f7 70%,
    #c084fc 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation:
    shimmer 4s linear infinite,
    fadeUp 0.9s 0.4s both;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--mut);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  animation: fadeUp 0.9s 0.5s both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.6s both;
}
.btn-mag {
  position: relative;
  padding: 0.95rem 2.2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  border: none;
  touch-action: manipulation;
}
.btn-mag-primary {
  background: linear-gradient(135deg, var(--p), var(--p2));
  color: #fff;
}
.btn-mag-primary:hover {
  box-shadow: 0 0 40px rgba(124, 58, 237, 0.6);
}
.btn-mag-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-mag-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}
.btn-inner {
  position: relative;
  z-index: 1;
  pointer-events: none;
}
.stat-row {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 3.5rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.7s both;
}
.stat {
  text-align: center;
}
.stat-num {
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--s), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  color: var(--mut);
  font-size: 0.82rem;
  margin-top: 0.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.scroll-ind {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  animation: fadeUp 1s 1s both;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(var(--p2), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--mut);
  text-transform: uppercase;
}

/* SECTION NUM */
.section-num {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--p2);
  font-weight: 700;
  font-family: "JetBrains Mono", monospace;
  margin-bottom: 1.5rem;
  display: block;
}

/* WYBIERZ NAS */
#wybierz {
  padding: 7rem 5%;
  background: linear-gradient(
    180deg,
    var(--blk) 0%,
    #0a0612 50%,
    var(--blk) 100%
  );
}
.wybierz-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.wbox {
  border-radius: 20px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.wbox-nie {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.wbox-tak {
  background: rgba(124, 58, 237, 0.07);
  border: 1px solid rgba(124, 58, 237, 0.3);
}
.wbox-label {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.wbox-label-nie {
  color: #f87171;
}
.wbox-label-tak {
  color: var(--p2);
}
.wbox-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.wbox-list li {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.55;
  padding-left: 1.4rem;
  position: relative;
}
.wbox-nie .wbox-list li::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #f87171;
  font-weight: 700;
}
.wbox-tak .wbox-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--p2);
  font-weight: 700;
}

/* BEFORE PAY BANNER */
.before-pay-banner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: rgba(124, 58, 237, 0.07);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 14px;
  padding: 1.2rem 1.6rem;
  max-width: 860px;
  margin: 2.5rem auto;
}
.bpb-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.bpb-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #aaa;
}
.bpb-text strong {
  color: #fff;
  display: block;
  margin-bottom: 0.2rem;
}

/* OFERTA */
#oferta {
  padding: 7rem 5%;
  background: var(--blk);
  overflow: hidden;
}
.pakiet-wrap {
  max-width: 860px;
  margin: 4rem auto 0;
  position: relative;
}
.pakiet-badge-top {
  text-align: center;
  margin-bottom: -1px;
  display: inline-block;
  background: linear-gradient(135deg, var(--p), var(--p2));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 1.2rem;
  border-radius: 50px 50px 0 0;
  letter-spacing: 0.06em;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.pakiet-card {
  background: var(--g1);
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: 0 24px 24px 24px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.1);
}
.pakiet-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 100% 0%,
    rgba(124, 58, 237, 0.08),
    transparent
  );
  pointer-events: none;
}
.pakiet-name {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  color: #fff;
}
.pakiet-name-7 {
  color: var(--p2);
  background: linear-gradient(135deg, var(--p2), var(--p3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pakiet-tagline {
  color: var(--mut);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 380px;
}
.pakiet-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.pakiet-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: #ccc;
  line-height: 1.5;
}
.pf-check {
  color: var(--p2);
  font-weight: 700;
  flex-shrink: 0;
}
.pf-tag {
  display: inline-block;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--p2);
  font-size: 0.65rem;
  padding: 0.1rem 0.5rem;
  border-radius: 50px;
  margin-left: 0.4rem;
  font-weight: 700;
  vertical-align: middle;
}
.pakiet-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 200px;
  text-align: right;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  padding-left: 2.5rem;
}
.pakiet-wartosc-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mut);
  margin-bottom: 0.3rem;
}
.pakiet-wartosc-old {
  font-size: 1.6rem;
  font-weight: 700;
  color: #444;
  text-decoration: line-through;
  text-decoration-color: #f87171;
  text-decoration-thickness: 2px;
}
.pakiet-price {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-top: 0.6rem;
  background: linear-gradient(135deg, #fff, var(--p2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pakiet-vat {
  color: var(--mut);
  font-size: 0.72rem;
  margin-top: 0.3rem;
  margin-bottom: 1.5rem;
}
.pakiet-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--p), var(--p2));
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.pakiet-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--p2), var(--p3));
  opacity: 0;
  transition: 0.3s;
}
.pakiet-cta:hover::before {
  opacity: 1;
}
.pakiet-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
}
.pakiet-cta span {
  position: relative;
  z-index: 1;
}
.pakiet-note {
  color: var(--mut);
  font-size: 0.72rem;
  margin-top: 0.7rem;
  line-height: 1.5;
  text-align: center;
}

/* GWARANCJE */
#gwarancje {
  padding: 7rem 5%;
  background: var(--g1);
}
.gwarancje-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.gcard {
  background: var(--g2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.gcard:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 58, 237, 0.35);
}
.gcard-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  display: block;
}
.gcard h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.gcard p {
  color: var(--mut);
  font-size: 0.87rem;
  line-height: 1.65;
}
.gcard p strong {
  color: var(--p2);
}
.gcard-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--p), var(--p2));
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gcard:hover .gcard-line {
  width: 100%;
}

/* PROCES */
#proces {
  padding: 7rem 5%;
  background: linear-gradient(
    180deg,
    var(--blk) 0%,
    #0a0612 50%,
    var(--blk) 100%
  );
}
.steps-wrap {
  position: relative;
  margin-top: 4rem;
}
.steps-connector {
  position: absolute;
  top: 44px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--p),
    var(--p2),
    var(--p),
    transparent
  );
}
.steps-connector-anim {
  position: absolute;
  top: 44px;
  left: calc(12.5% + 28px);
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, var(--p2), var(--p3));
  transition: width 1.5s ease;
  box-shadow: 0 0 10px var(--p2);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}
.step {
  text-align: center;
  padding: 1.5rem 1rem;
}
.step-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.4);
  background: rgba(124, 58, 237, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  transition: all 0.5s;
}
.step-ring::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--p), var(--p2)) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s;
}
.step:hover .step-ring::before {
  opacity: 1;
}
.step:hover .step-ring {
  background: rgba(124, 58, 237, 0.2);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}
.step-num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--p2);
}
.step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step p {
  color: var(--mut);
  font-size: 0.83rem;
  line-height: 1.6;
}

/* SHOWCASE */
#showcase {
  padding: 8rem 5% 6rem;
  background: var(--blk);
  overflow: hidden;
  position: relative;
}
#showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 100%,
    rgba(124, 58, 237, 0.1),
    transparent
  );
  pointer-events: none;
}
.showcase-header {
  text-align: center;
  margin-bottom: 4.5rem;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.showcase-header.in {
  opacity: 1;
  transform: none;
}
.showcase-header h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.sc-stage {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  opacity: 0;
  transform: translateY(90px) scale(0.96);
  transition:
    opacity 1s 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.sc-stage.in {
  opacity: 1;
  transform: none;
}
.sc-stage::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    ellipse 80% 60% at 50% 60%,
    rgba(124, 58, 237, 0.22),
    transparent 70%
  );
  border-radius: 40px;
  z-index: 0;
  pointer-events: none;
}
.sc-browser {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(124, 58, 237, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(124, 58, 237, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.sc-bar {
  background: #111118;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.75rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.sc-dots {
  display: flex;
  gap: 0.45rem;
}
.sc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.sc-dot:nth-child(1) {
  background: #ff5f57;
}
.sc-dot:nth-child(2) {
  background: #febc2e;
}
.sc-dot:nth-child(3) {
  background: #28c840;
}
.sc-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 0.28rem 0.8rem;
  font-size: 0.72rem;
  font-family: "JetBrains Mono", monospace;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  max-width: 340px;
  margin: 0 auto;
  overflow: hidden;
}
.sc-url-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}
.sc-media {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  background: #0a0a12;
  object-fit: cover;
  object-position: top;
}
.sc-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s 0.55s ease,
    transform 0.7s 0.55s ease;
}
.sc-stage.in .sc-caption {
  opacity: 1;
  transform: none;
}
.sc-caption-left h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.sc-caption-left p {
  color: var(--mut);
  font-size: 0.88rem;
}
.sc-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.sc-tag {
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--p3);
  padding: 0.28rem 0.75rem;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 600;
}

/* OPINIE */
#opinie {
  padding: 7rem 5%;
  background: var(--g1);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}
.rcard {
  background: var(--g2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.rcard::before {
  content: "❝";
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  font-size: 5rem;
  color: rgba(124, 58, 237, 0.1);
  font-family: serif;
  line-height: 1;
}
.rcard:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.3);
  background: #1e1e26;
}
.stars {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: #f59e0b;
}
.rcard p {
  color: #bbb;
  font-size: 0.88rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.3rem;
  position: relative;
  z-index: 1;
}
.rauthor {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.ravatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p), var(--p2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.rname {
  font-weight: 600;
  font-size: 0.88rem;
}
.rrole {
  color: var(--mut);
  font-size: 0.76rem;
}

/* FAQ */
#faq {
  padding: 7rem 5%;
  background: var(--blk);
}
.faq-list {
  max-width: 720px;
  margin: 4rem auto 0;
}
.fq {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.fq-btn {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  padding: 1.4rem 0;
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
  gap: 1rem;
  touch-action: manipulation;
}
.fq-btn:hover {
  color: var(--p2);
}
.fq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  flex-shrink: 0;
  color: var(--p2);
  font-size: 0.9rem;
}
.fq.open .fq-icon {
  background: var(--p);
  border-color: var(--p);
  transform: rotate(45deg);
}
.fq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.fq.open .fq-body {
  max-height: 300px;
}
.fq-body p {
  color: var(--mut);
  font-size: 0.88rem;
  line-height: 1.7;
  padding-bottom: 1.3rem;
}

/* CTA */
#cta {
  padding: 8rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(124, 58, 237, 0.12),
    transparent
  );
}
.cta-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.15);
  transform: translate(-50%, -50%);
  animation: ringPulse 3s ease-in-out infinite;
}
.ring:nth-child(1) {
  width: 300px;
  height: 300px;
  animation-delay: 0s;
}
.ring:nth-child(2) {
  width: 500px;
  height: 500px;
  animation-delay: 0.5s;
}
.ring:nth-child(3) {
  width: 700px;
  height: 700px;
  animation-delay: 1s;
}
@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.08;
    transform: translate(-50%, -50%) scale(1.03);
  }
}
.cta-inner {
  position: relative;
  z-index: 2;
}
#cta h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  line-height: 1.1;
}
#cta p {
  color: var(--mut);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-location {
  color: var(--p2);
  font-size: 0.85rem;
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #128c7e, #25d366);
  color: #fff;
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.wa-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #25d366, #128c7e);
  opacity: 0;
  transition: 0.4s;
}
.wa-btn:hover::before {
  opacity: 1;
}
.wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(37, 211, 102, 0.35);
}
.wa-btn span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.wa-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.cta-reply {
  color: var(--mut);
  font-size: 0.8rem;
  margin-top: 1.5rem;
  letter-spacing: 0.03em;
}

/* ================================================================
   FOOTER – kolumny, pozycja statyczna
   ================================================================ */
footer,
footer#main-footer {
  position: static;
  display: block;
  background: #030305;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 5% 2.5rem;
  align-items: start;
}

.flogo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}
.flogo span {
  color: var(--p2);
}
.footer-tagline {
  color: var(--mut);
  font-size: 0.85rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--p2);
  font-weight: 700;
  margin-bottom: 1.2rem;
  font-family: "JetBrains Mono", monospace;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  list-style: none;
}
.footer-nav a {
  display: block;
  color: var(--mut);
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.4;
  transition: color 0.3s;
  white-space: nowrap;
}
.footer-nav a:hover {
  color: var(--p2);
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--mut);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(124, 58, 237, 0.25);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  transition: all 0.3s;
  margin-top: 0.5rem;
}
.footer-phone:hover {
  color: #fff;
  border-color: rgba(168, 85, 247, 0.6);
  background: rgba(124, 58, 237, 0.1);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.25);
}
.footer-phone-icon {
  font-size: 1rem;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #25d366;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  transition: opacity 0.3s;
}
.footer-wa:hover {
  opacity: 0.75;
}
.footer-wa svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-location {
  color: var(--mut);
  font-size: 0.83rem;
  margin-bottom: 0.6rem;
}

.footer-avail {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: #4ade80;
  font-weight: 600;
}
.footer-avail-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: availPulse 2s ease-in-out infinite;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.2rem 5%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  color: var(--mut);
  font-size: 0.78rem;
}
.footer-made {
  color: #555;
}

/* REVEAL */
.rev {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.rev.in {
  opacity: 1;
  transform: none;
}
.rev-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.rev-left.in {
  opacity: 1;
  transform: none;
}
.rev-scale {
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.rev-scale.in {
  opacity: 1;
  transform: scale(1);
}

/* MISC */
.section-header {
  margin-bottom: 4rem;
}
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--p2);
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.section-title .s {
  background: linear-gradient(135deg, var(--s), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  color: var(--mut);
  font-size: 1rem;
  max-width: 500px;
  line-height: 1.7;
  margin-top: 0.8rem;
}
.typed-cursor {
  animation: blink 0.8s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ticker {
  display: inline-block;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}
@media (hover: none) {
  .icard:hover,
  .rcard:hover,
  .gcard:hover {
    transform: none;
  }
}

/* TABLET */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .steps-connector,
  .steps-connector-anim {
    display: none;
  }
  .pakiet-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pakiet-right {
    align-items: flex-start;
    text-align: left;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
  }
  .gwarancje-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    gap: 1.2rem;
  }
  .wybierz-inner {
    gap: 1.5rem;
  }
}

/* MOBILE */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 5%;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    padding: 0.55rem 1.1rem;
    font-size: 0.8rem;
  }
  #hero {
    padding: 5rem 5% 3rem;
    min-height: 100svh;
  }
  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .btn-mag {
    width: 100%;
    max-width: 340px;
    justify-content: center;
    padding: 0.9rem 1.5rem;
    font-size: 0.93rem;
  }
  .stat-row {
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  .scroll-ind {
    display: none;
  }
  #wybierz {
    padding: 4.5rem 5%;
  }
  .wybierz-inner {
    grid-template-columns: 1fr;
  }
  #oferta,
  #gwarancje,
  #proces,
  #opinie,
  #faq {
    padding: 4.5rem 5%;
  }
  #showcase {
    padding: 4.5rem 5% 3rem;
  }
  #cta {
    padding: 5rem 5%;
  }
  .section-header {
    margin-bottom: 2.5rem;
  }
  .pakiet-card {
    padding: 1.5rem;
  }
  .pakiet-price {
    font-size: 2.2rem;
  }
  .gwarancje-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .faq-list {
    margin-top: 2.5rem;
  }
  .wa-btn {
    padding: 1rem 1.8rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
  .ring:nth-child(2),
  .ring:nth-child(3) {
    display: none;
  }
  .sc-bar {
    padding: 0.6rem 1rem;
  }
  .sc-dot {
    width: 10px;
    height: 10px;
  }
  .sc-caption {
    flex-direction: column;
    align-items: flex-start;
  }
  .rev {
    transform: translateY(30px);
  }
  .rev-left {
    transform: translateX(-30px);
  }
  .before-pay-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 5% 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .stat-row {
    gap: 1.2rem;
  }
  .stat-num {
    font-size: 1.8rem;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  #oferta,
  #gwarancje,
  #proces,
  #opinie,
  #faq {
    padding: 3.5rem 5%;
  }
  #showcase,
  #cta {
    padding: 3.5rem 5%;
  }
  .fq-btn {
    font-size: 0.85rem;
    padding: 1.1rem 0;
  }
  .fq.open .fq-body {
    max-height: 400px;
  }
}

@media (max-width: 360px) {
  nav {
    padding: 0.85rem 4%;
  }
  .logo {
    font-size: 1.3rem;
  }
  .nav-cta {
    padding: 0.5rem 0.9rem;
    font-size: 0.75rem;
  }
  #hero {
    padding: 5rem 4% 2.5rem;
  }
  .hero-sub {
    font-size: 0.88rem;
  }
  .btn-mag {
    font-size: 0.85rem;
    padding: 0.8rem 1.2rem;
  }
}

.footer-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-new-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.5);
  color: #c084fc;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.15rem 0.4rem;
  border-radius: 50px;
  line-height: 1;
  animation: badgePulse 2.4s ease-in-out infinite;
}
