/* SDIT — premium dark landing */

:root {
  --bg-deep: #06080f;
  --bg-elevated: #0c101c;
  --surface: #12182a;
  --surface-hover: #181f35;
  --border: rgba(120, 140, 200, 0.12);
  --border-strong: rgba(120, 140, 200, 0.22);
  --text: #f0f2fa;
  --text-muted: #9aa3c4;
  --accent: #6b8cff;
  --accent-2: #3d5afe;
  --teal: #2dd4bf;
  --gradient-hero: linear-gradient(135deg, #6b8cff 0%, #3d5afe 45%, #2dd4bf 100%);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-glow: 0 0 80px rgba(61, 90, 254, 0.18);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 72px;
  --bottom-banner-h: 0px;
  --shadow-3d-card: 0 8px 0 rgba(0, 0, 0, 0.28), 0 28px 56px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(107, 140, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  --shadow-3d-hero: 0 16px 0 rgba(0, 0, 0, 0.2), 0 48px 96px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(107, 140, 255, 0.22),
    0 0 80px rgba(61, 90, 254, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  --glow-price: 0 0 32px rgba(45, 212, 191, 0.25), 0 0 60px rgba(61, 90, 254, 0.2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video {
  max-width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  background: var(--bg-deep);
  line-height: 1.65;
  overflow-x: hidden;
  overflow-wrap: break-word;
  min-width: 0;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.04;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.glow-orbs {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: orb-float 22s var(--ease-out-expo) infinite;
}

.orb-a {
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  background: #1a2a6e;
  top: -15%;
  right: -10%;
  animation-delay: 0s;
}

.orb-b {
  width: min(45vw, 380px);
  height: min(45vw, 380px);
  background: #0d3d3a;
  bottom: 10%;
  left: -15%;
  animation-delay: -7s;
}

.orb-c {
  width: min(35vw, 280px);
  height: min(35vw, 280px);
  background: #2d1f5c;
  top: 45%;
  left: 35%;
  opacity: 0.25;
  animation-delay: -14s;
}

@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(4%, 6%) scale(1.05);
  }
  66% {
    transform: translate(-3%, -4%) scale(0.95);
  }
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
  position: relative;
  z-index: 1;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(6, 8, 15, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s var(--ease-out-expo), box-shadow 0.35s var(--ease-out-expo);
}

.site-header.is-scrolled {
  background: rgba(6, 8, 15, 0.92);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease-out-expo);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(107, 140, 255, 0.22), transparent 62%);
  box-shadow: 0 0 28px rgba(61, 90, 254, 0.4);
  animation: logo-pulse 4s ease-in-out infinite;
  perspective: 110px;
  perspective-origin: 50% 45%;
}

@keyframes logo-pulse {
  0%,
  100% {
    box-shadow: 0 0 28px rgba(61, 90, 254, 0.4);
  }
  50% {
    box-shadow: 0 0 44px rgba(45, 212, 191, 0.35);
  }
}

/* Globus 3D — sfera + obracająca się siatka */
.globe-3d {
  position: relative;
  width: 42px;
  height: 42px;
  transform-style: preserve-3d;
}

.globe-3d__sphere {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 26%,
    rgba(240, 244, 255, 0.55) 0%,
    rgba(130, 155, 255, 0.42) 22%,
    rgba(61, 90, 254, 0.38) 42%,
    rgba(18, 24, 52, 0.92) 72%,
    rgba(6, 8, 15, 1) 100%
  );
  box-shadow:
    inset -10px -12px 22px rgba(0, 0, 0, 0.58),
    inset 5px 8px 14px rgba(255, 255, 255, 0.14),
    0 0 22px rgba(61, 90, 254, 0.5);
  transform: translateZ(0);
}

.globe-3d__highlight {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.5), transparent 42%);
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.75;
}

.globe-3d__spin {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  animation: globe-spin-3d 16s linear infinite;
}

.globe-3d__svg {
  display: block;
  transform: rotateX(16deg) translateZ(4px);
  filter: drop-shadow(0 0 5px rgba(107, 140, 255, 0.75));
}

@keyframes globe-spin-3d {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

.globe-3d--sm {
  width: 30px;
  height: 30px;
}

.globe-3d--sm .globe-3d__sphere {
  inset: 1px;
  box-shadow:
    inset -6px -8px 14px rgba(0, 0, 0, 0.55),
    inset 3px 4px 8px rgba(255, 255, 255, 0.1),
    0 0 14px rgba(61, 90, 254, 0.35);
}

.globe-3d--sm .globe-3d__highlight {
  inset: 4px;
}

.globe-3d--sm .globe-3d__spin {
  animation-duration: 20s;
}

.brand-mark.sm {
  width: auto;
  height: auto;
  min-width: 32px;
  min-height: 32px;
  padding: 2px;
  box-shadow: none;
  animation: none;
  background: transparent;
  perspective: 72px;
  perspective-origin: 50% 45%;
}

.brand-mark.sm .globe-3d__sphere {
  box-shadow:
    inset -5px -6px 12px rgba(0, 0, 0, 0.5),
    inset 2px 3px 6px rgba(255, 255, 255, 0.08),
    0 0 10px rgba(61, 90, 254, 0.28);
}

.brand-mark.sm .globe-3d__svg {
  transform: rotateX(14deg) translateZ(3px);
}

@media (prefers-reduced-motion: reduce) {
  .globe-3d__spin {
    animation-duration: 80s;
  }

  .globe-3d--sm .globe-3d__spin {
    animation-duration: 100s;
  }
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem 1.15rem;
}

@media (min-width: 1100px) {
  .nav-list {
    gap: 1rem 1.35rem;
  }
}

.nav-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.82rem;
  position: relative;
  transition: color 0.25s ease;
}

@media (min-width: 1100px) {
  .nav-list a {
    font-size: 0.88rem;
  }
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gradient-hero);
  border-radius: 2px;
  transition: width 0.35s var(--ease-out-expo);
}

.nav-list a:hover,
.nav-list a:focus-visible {
  color: var(--text);
}

.nav-list a:hover::after,
.nav-list a:focus-visible::after {
  width: 100%;
}

.nav-cta {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(107, 140, 255, 0.08);
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  border-color: rgba(107, 140, 255, 0.45);
  background: rgba(107, 140, 255, 0.14);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem max(4vw, env(safe-area-inset-left, 0px)) 1.25rem max(4vw, env(safe-area-inset-right, 0px));
  border-bottom: 1px solid var(--border);
  background: rgba(6, 8, 15, 0.98);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Hero */
main {
  position: relative;
  z-index: 1;
  min-width: 0;
}

main#top {
  transform-style: preserve-3d;
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
  animation: fade-up 0.9s var(--ease-out-expo) both;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 5.5vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.hero-title-3d {
  transform-style: preserve-3d;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.07), 0 2px 0 rgba(0, 0, 0, 0.35), 0 10px 28px rgba(0, 0, 0, 0.55),
    0 0 50px rgba(61, 90, 254, 0.14);
}

.hero-title-3d .line {
  transform: translateZ(0);
}

.hero-title .line {
  display: block;
  animation: fade-up 0.9s var(--ease-out-expo) both;
}

.hero-title .line:nth-child(2) {
  animation-delay: 0.08s;
}

.hero-title .accent {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  color: var(--text-muted);
  max-width: 36rem;
  margin-bottom: 2rem;
  animation: fade-up 0.9s var(--ease-out-expo) 0.15s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.75rem;
  animation: fade-up 0.9s var(--ease-out-expo) 0.22s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease, background 0.25s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-2), #2a4ae0);
  box-shadow: 0 8px 32px rgba(61, 90, 254, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-100%);
  animation: btn-shine 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn-shine {
  0%,
  100% {
    transform: translateX(-100%);
  }
  40%,
  60% {
    transform: translateX(100%);
  }
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(61, 90, 254, 0.5);
}

.btn-ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  border-color: rgba(107, 140, 255, 0.5);
  background: rgba(107, 140, 255, 0.06);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero-stats dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.hero-stats dd {
  margin: 0;
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-stat {
  animation: fade-up 0.85s var(--ease-out-expo) both;
  animation-delay: var(--d, 0.3s);
}

.hero-word {
  display: inline-block;
  margin-right: 0.2em;
  animation: hero-word-in 0.88s var(--ease-out-expo) both;
  animation-delay: calc(0.09s * var(--w) + 0.06s);
}

@keyframes hero-word-in {
  from {
    opacity: 0;
    transform: translateY(70%) rotateX(-18deg);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    filter: blur(0);
  }
}

.hero-word:last-child {
  margin-right: 0;
}

.text-reveal-soft {
  animation: lead-in 1s var(--ease-out-expo) 0.32s both;
}

@keyframes lead-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-highlight-pop {
  animation: highlight-pop 0.75s var(--ease-out-expo) 0.75s both;
}

@keyframes highlight-pop {
  from {
    color: var(--text-muted);
    letter-spacing: 0;
  }
  to {
    color: var(--teal);
    letter-spacing: 0.02em;
  }
}

[data-reveal] .section-title.text-blur-in {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(22px);
}

[data-reveal].is-visible .section-title.text-blur-in {
  animation: title-blur-in 0.95s var(--ease-out-expo) 0.08s forwards;
}

@keyframes title-blur-in {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

figure[data-reveal].is-visible .text-blur-in.tech-strip-cap {
  animation: title-blur-in 1s var(--ease-out-expo) 0.2s forwards;
}

.tech-strip-cap.text-blur-in {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(12px);
}

/* Hero visual */
.hero-visual {
  perspective: 1200px;
}

.hero-figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: visible;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-glow);
  background: var(--surface);
}

.hero-figure-3d {
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateY(-6deg) rotateX(4deg) translateZ(0);
  box-shadow: var(--shadow-3d-hero);
  transition: transform 0.65s var(--ease-out-expo), box-shadow 0.5s ease;
}

.hero-figure-3d .reveal-on-media {
  border-radius: calc(var(--radius-lg) - 2px);
  overflow: hidden;
}

.hero-figure-3d.tilt-hover:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(2deg) translateY(-8px) translateZ(12px);
  box-shadow: var(--shadow-3d-hero), 0 0 100px rgba(61, 90, 254, 0.22);
}

.hero-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* Ilustracje SVG (roboty, przezroczyste tło) */
.img-illustration {
  object-fit: contain !important;
  background: radial-gradient(ellipse 78% 72% at 50% 46%, rgba(107, 140, 255, 0.18), transparent 70%);
}

.hero-img.img-illustration {
  padding: clamp(1rem, 4vw, 2.5rem);
}

.services-globe-panel__media img.img-illustration {
  padding: 1.15rem 0.85rem;
  background: radial-gradient(ellipse 72% 68% at 50% 44%, rgba(94, 234, 212, 0.12), rgba(107, 140, 255, 0.1), transparent 72%);
}

.services-globe-panel:hover .services-globe-panel__media img.img-illustration {
  transform: none;
}

.tech-strip-fig img.img-illustration {
  object-fit: contain !important;
  padding: clamp(1.25rem, 3vw, 2.75rem);
  aspect-ratio: 21 / 9;
  min-height: 240px;
  background: radial-gradient(ellipse 68% 85% at 50% 50%, rgba(61, 90, 254, 0.14), transparent 78%);
}

.tech-strip-fig:not(.tech-strip-fig--wide) img.img-illustration {
  aspect-ratio: 4 / 3;
  min-height: 220px;
}

.hero-figure-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.25rem 1rem;
  margin: 0;
  background: linear-gradient(transparent, rgba(6, 8, 15, 0.92));
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-figure-cap .visual-label {
  margin: 0;
}

.hero-figure-cap .visual-sub {
  margin: 0;
}

.hero-bars {
  position: absolute;
  right: 1rem;
  bottom: 4.25rem;
  width: min(200px, 42%);
  height: 88px;
  margin-top: 0;
}

.visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, rgba(107, 140, 255, 0.5), rgba(45, 212, 191, 0.25), rgba(61, 90, 254, 0.4));
  background-size: 200% 200%;
  animation: border-flow 8s ease infinite;
  box-shadow: var(--shadow-glow);
}

@keyframes border-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.visual-ring {
  position: absolute;
  inset: -20%;
  border: 1px solid rgba(107, 140, 255, 0.15);
  border-radius: 50%;
  animation: ring-spin 28s linear infinite;
}

@keyframes ring-spin {
  to {
    transform: rotate(360deg);
  }
}

.visual-inner {
  position: relative;
  background: var(--bg-elevated);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 2rem 1.75rem;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.visual-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(61, 90, 254, 0.2), transparent 70%);
  pointer-events: none;
}

.visual-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.35rem;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.visual-sub {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.visual-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 100px;
  margin-top: auto;
}

.visual-bars span {
  flex: 1;
  height: var(--h);
  border-radius: 6px;
  background: linear-gradient(180deg, var(--accent), var(--teal));
  opacity: 0.85;
  animation: bar-pulse 2.4s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.15s);
}

.visual-bars span:nth-child(1) {
  --i: 0;
}

.visual-bars span:nth-child(2) {
  --i: 1;
}

.visual-bars span:nth-child(3) {
  --i: 2;
}

.visual-bars span:nth-child(4) {
  --i: 3;
}

.visual-bars span:nth-child(5) {
  --i: 4;
}

@keyframes bar-pulse {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.85;
  }
  50% {
    transform: scaleY(1.08);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .visual-inner {
    min-height: 260px;
  }

  .hero-figure-3d {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
  }

  .hero-figure-3d.tilt-hover:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(1deg) translateY(-4px) translateZ(6px);
  }
}

/* Sections */
.section {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.section-title.title-3d {
  transform-style: preserve-3d;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05), 0 3px 0 rgba(0, 0, 0, 0.25), 0 12px 32px rgba(0, 0, 0, 0.35);
}

.section-desc {
  color: var(--text-muted);
  margin: 0;
}

.pricing-punch {
  margin: 1.25rem 0 0;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(45, 212, 191, 0.28);
  background: linear-gradient(135deg, rgba(45, 212, 191, 0.1), rgba(61, 90, 254, 0.08));
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pricing-punch strong {
  color: var(--teal);
  font-weight: 700;
}

/* Pasek zaufania / chwyty */
.trust-strip {
  padding: clamp(2rem, 5vw, 2.75rem) 0;
  margin-top: -0.5rem;
}

.trust-strip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .trust-strip-list {
    grid-template-columns: 1fr;
  }
}

.trust-strip-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: linear-gradient(155deg, rgba(18, 24, 42, 0.95), rgba(12, 16, 28, 0.88));
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2), 0 16px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: perspective(800px) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.3s ease, box-shadow 0.4s ease;
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.trust-strip-item:hover {
  transform: perspective(800px) rotateX(0deg) translateY(-3px);
  border-color: rgba(107, 140, 255, 0.35);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.18), 0 24px 48px rgba(0, 0, 0, 0.32), 0 0 40px rgba(61, 90, 254, 0.12);
}

.trust-strip-ico {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--accent);
  line-height: 1.6;
  text-shadow: 0 0 12px rgba(107, 140, 255, 0.5);
}

.trust-strip-item strong {
  color: var(--text);
  font-weight: 600;
}

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease-out-expo), transform 0.85s var(--ease-out-expo);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: 0.1s;
}

[data-reveal-delay="2"] {
  transition-delay: 0.2s;
}

[data-reveal-delay="3"] {
  transition-delay: 0.3s;
}

[data-reveal-delay="4"] {
  transition-delay: 0.38s;
}

[data-reveal-delay="5"] {
  transition-delay: 0.46s;
}

[data-reveal-delay="6"] {
  transition-delay: 0.54s;
}

[data-reveal-delay="7"] {
  transition-delay: 0.62s;
}

[data-reveal-delay="8"] {
  transition-delay: 0.7s;
}

/* Scroll: kolejka w obrębie bloku (tekst, zdjęcia, przyciski jeden po drugim) */
[data-reveal="chain"] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

[data-reveal="chain"] .reveal-on-parent {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(6px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo), filter 0.55s ease;
}

[data-reveal="chain"].is-visible .reveal-on-parent {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition-delay: calc(0.11s * var(--chain, 0));
}

[data-reveal="chain"] .reveal-on-media {
  overflow: hidden;
  border-radius: inherit;
}

.hero-figure .reveal-on-media {
  border-radius: calc(var(--radius-lg) - 2px);
}

[data-reveal="chain"] .reveal-on-media img {
  transform: scale(1.12);
  transition: transform 1s var(--ease-out-expo);
}

[data-reveal="chain"].is-visible .reveal-on-media img {
  transform: scale(1);
  transition-delay: calc(0.09s * var(--chain, 0));
}

.tech-strip-fig .reveal-on-media {
  border-radius: inherit;
}

.price-card .reveal-on-media {
  border-radius: 0;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal="chain"] .reveal-on-parent {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  [data-reveal="chain"] .reveal-on-media img {
    transform: none;
    transition: none;
  }
}

[data-stagger].is-visible:nth-child(1) {
  transition-delay: 0.05s;
}

[data-stagger].is-visible:nth-child(2) {
  transition-delay: 0.12s;
}

[data-stagger].is-visible:nth-child(3) {
  transition-delay: 0.19s;
}

[data-stagger].is-visible:nth-child(4) {
  transition-delay: 0.26s;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services — globus z tyłu + przewijane szklane karty (wszystkie usługi) */
.services-globe-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1200px;
  min-height: clamp(400px, 54vh, 580px);
  padding: 0.25rem 0 0.5rem;
}

.services-globe-back {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: min(96vw, 560px);
  height: min(96vw, 560px);
  max-height: min(70vh, 560px);
  z-index: 0;
  pointer-events: none;
  display: grid;
  place-items: center;
}

.services-globe-orbit {
  position: absolute;
  inset: -4%;
  display: grid;
  place-items: center;
}

.services-globe-wire {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.42;
  filter: drop-shadow(0 0 12px rgba(94, 234, 212, 0.2));
}

.services-globe-wire--a {
  animation: services-globe-wire-spin 72s linear infinite;
}

.services-globe-wire--b {
  width: 78%;
  height: 78%;
  opacity: 0.5;
  animation: services-globe-wire-spin 48s linear infinite reverse;
}

@keyframes services-globe-wire-spin {
  to {
    transform: rotate(360deg);
  }
}

.services-globe-logo-stack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  filter: drop-shadow(0 0 22px rgba(94, 234, 212, 0.45)) drop-shadow(0 0 48px rgba(107, 140, 255, 0.35));
}

.services-globe-mark {
  width: clamp(72px, 14vw, 128px);
  height: auto;
  opacity: 0.92;
}

.services-globe-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 3.6vw, 2rem);
  letter-spacing: 0.28em;
  color: #eef2ff;
  text-indent: 0.28em;
  text-shadow: 0 0 20px rgba(107, 140, 255, 0.75), 0 0 50px rgba(94, 234, 212, 0.45), 0 0 80px rgba(61, 90, 254, 0.25);
}

.services-globe-scroller {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  align-items: center;
  min-height: clamp(340px, 48vh, 540px);
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  cursor: grab;
  touch-action: pan-x;
  user-select: none;
  -webkit-user-select: none;
  padding: 0.75rem 0 1.5rem;
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  scrollbar-color: rgba(107, 140, 255, 0.45) rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
}

.services-globe-scroller.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.services-globe-scroller::-webkit-scrollbar {
  height: 6px;
}

.services-globe-scroller::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 99px;
}

.services-globe-scroller::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(107, 140, 255, 0.5), rgba(94, 234, 212, 0.4));
  border-radius: 99px;
}

.services-globe-track {
  display: flex;
  gap: 1.1rem;
  width: max-content;
  padding: 1.5rem max(0.65rem, calc(50% - min(43vw, 152px))) 2rem;
  align-items: stretch;
  align-self: center;
}

.services-globe-panel {
  flex: 0 0 min(304px, calc(100vw - 2.25rem));
  scroll-snap-align: center;
  scroll-snap-stop: always;
  padding: 1.15rem 1.05rem 1.3rem;
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(12, 16, 28, 0.22) 42%,
    rgba(8, 12, 22, 0.35) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(107, 140, 255, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: border-color 0.35s ease, box-shadow 0.4s ease, background 0.35s ease;
}

.services-globe-panel:hover {
  border-color: rgba(167, 184, 255, 0.55);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(18, 24, 42, 0.32) 45%,
    rgba(10, 14, 26, 0.42) 100%
  );
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(61, 90, 254, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.services-globe-panel__media {
  margin: -1.15rem -1.05rem 0.8rem;
  border-radius: calc(var(--radius) + 3px) calc(var(--radius) + 3px) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(6, 8, 15, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services-globe-panel__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out-expo);
  filter: saturate(1.08) contrast(1.04);
  opacity: 0.95;
}

.services-globe-panel:hover .services-globe-panel__media img {
  transform: scale(1.04);
}

.services-globe-panel .service-hook {
  text-shadow: 0 0 16px rgba(45, 212, 191, 0.65), 0 0 32px rgba(94, 234, 212, 0.35);
}

.services-globe-panel .service-icon {
  margin-top: 0;
  text-shadow: 0 0 14px rgba(107, 140, 255, 0.7), 0 0 28px rgba(167, 184, 255, 0.35);
  color: #c7d4ff;
}

.services-globe-panel h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.65rem;
  color: #f0f4ff;
  text-shadow: 0 0 22px rgba(107, 140, 255, 0.55), 0 0 44px rgba(94, 234, 212, 0.2), 0 1px 0 rgba(255, 255, 255, 0.12);
}

.services-globe-panel .text-line-mask {
  font-size: 0.95rem;
  margin: 0 0 1rem;
  color: rgba(230, 236, 255, 0.9);
  text-shadow: 0 0 14px rgba(107, 140, 255, 0.28), 0 0 24px rgba(61, 90, 254, 0.15);
}

.services-globe-panel .service-list {
  color: rgba(215, 224, 255, 0.88);
  text-shadow: 0 0 10px rgba(107, 140, 255, 0.2);
}

.services-globe-panel .service-list li::before {
  box-shadow: 0 0 8px rgba(45, 212, 191, 0.65);
}

.service-hook {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  line-height: 1.35;
  text-shadow: 0 0 20px rgba(45, 212, 191, 0.35);
}

.service-icon {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.service-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.4rem;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.8;
}

.media-3d {
  position: relative;
  transform-style: preserve-3d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 12px 32px rgba(0, 0, 0, 0.35);
}

.media-3d::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), inset 0 -20px 40px rgba(0, 0, 0, 0.25);
  z-index: 1;
}


/* Pas zdjęć IT */
.tech-strip {
  padding-top: 0;
}

.tech-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tech-strip-fig {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.tech-strip-fig.fig-3d {
  transform-style: preserve-3d;
  transform: perspective(1400px) rotateX(2.8deg);
  box-shadow: 0 14px 0 rgba(0, 0, 0, 0.18), 0 36px 70px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(107, 140, 255, 0.12);
  transition: transform 0.55s var(--ease-out-expo), box-shadow 0.5s ease;
}

.tech-strip-fig.fig-3d:hover {
  transform: perspective(1400px) rotateX(1deg) translateY(-4px);
  box-shadow: 0 18px 0 rgba(0, 0, 0, 0.16), 0 48px 90px rgba(0, 0, 0, 0.48), 0 0 60px rgba(61, 90, 254, 0.14);
}

.tech-strip-fig img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

.tech-strip-fig:not(.tech-strip-fig--wide) img {
  aspect-ratio: 4 / 3;
}

.tech-strip-cap {
  margin: 0;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  background: linear-gradient(180deg, transparent, rgba(6, 8, 15, 0.88));
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.tech-strip-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 768px) {
  .tech-strip-row {
    grid-template-columns: 1fr;
  }

  .tech-strip-fig--wide img {
    aspect-ratio: 16 / 10;
  }
}

/* Sekcja: statystyki wzrostu (ze stroną vs bez) */
.impact-strip {
  padding-top: clamp(2.5rem, 6vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 3.5rem);
  position: relative;
}

.impact-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 40% at 50% 20%, rgba(61, 90, 254, 0.09), transparent 65%);
  pointer-events: none;
}

.impact-strip .container {
  position: relative;
  z-index: 1;
}

.impact-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
  margin-top: 2rem;
  align-items: stretch;
}

@media (max-width: 820px) {
  .impact-compare {
    grid-template-columns: 1fr;
  }
}

.impact-col {
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.35rem 1.5rem;
  border: 1px solid var(--border);
  background: rgba(10, 14, 26, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.impact-col--before {
  border-color: rgba(100, 116, 139, 0.35);
  background: rgba(15, 18, 28, 0.5);
}

.impact-col--after {
  border-color: rgba(45, 212, 191, 0.28);
  background: rgba(12, 22, 28, 0.55);
  box-shadow: 0 0 48px rgba(45, 212, 191, 0.06);
}

.impact-col__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 1.1rem;
  line-height: 1.3;
  color: var(--text);
}

.impact-col--after .impact-col__title {
  color: var(--teal);
}

/* Liczby — puls w rytmie serca (dwa uderzenia + pauza) */
@keyframes impact-heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  8% {
    transform: scale(1.11);
  }
  16% {
    transform: scale(1);
  }
  28% {
    transform: scale(1.07);
  }
  40% {
    transform: scale(1);
  }
}

.impact-num-pulse {
  display: inline-block;
  vertical-align: baseline;
  transform-origin: center center;
  animation: impact-heartbeat 1.42s cubic-bezier(0.22, 0.82, 0.38, 1) infinite;
  will-change: transform;
}

/* Rozłożenie fazy — nie wszystkie „biją” synchronicznie */
.impact-stat:nth-child(1) .impact-num-pulse {
  animation-delay: 0s;
}
.impact-stat:nth-child(2) .impact-num-pulse {
  animation-delay: 0.16s;
}
.impact-stat:nth-child(3) .impact-num-pulse {
  animation-delay: 0.32s;
}
.impact-stat:nth-child(4) .impact-num-pulse {
  animation-delay: 0.48s;
}

.impact-bar-row:nth-child(1) .impact-num-pulse {
  animation-delay: 0.04s;
}
.impact-bar-row:nth-child(2) .impact-num-pulse {
  animation-delay: 0.32s;
}

.impact-revenue__gap .impact-num-pulse {
  animation-delay: 0.2s;
}

.impact-mini:nth-child(1) .impact-num-pulse {
  animation-delay: 0s;
}
.impact-mini:nth-child(2) .impact-num-pulse {
  animation-delay: 0.18s;
}
.impact-mini:nth-child(3) .impact-num-pulse {
  animation-delay: 0.36s;
}
.impact-mini:nth-child(4) .impact-num-pulse {
  animation-delay: 0.54s;
}

.impact-stat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.impact-stat {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.15rem 0.65rem;
  align-items: baseline;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.impact-stat:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.impact-stat__label {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.35;
}

.impact-stat__value {
  line-height: 1;
}

.impact-stat__value .impact-num-pulse {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.impact-stat__value--muted .impact-num-pulse--muted {
  color: rgba(148, 163, 184, 0.98);
}

.impact-stat__delta {
  white-space: nowrap;
}

.impact-num-pulse--delta {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal);
}

.impact-revenue {
  margin-top: 1.75rem;
}

.impact-revenue__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.25rem;
  line-height: 1.4;
  color: var(--text);
}

.impact-revenue__bars {
  max-width: 36rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.impact-bar-row {
  display: grid;
  grid-template-columns: 6.5rem 1fr 5.5rem;
  gap: 0.65rem 0.85rem;
  align-items: center;
}

@media (max-width: 520px) {
  .impact-bar-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .impact-bar-row__num {
    justify-self: start;
  }
}

.impact-bar-row__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.impact-bar-track {
  height: 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.impact-revenue__bars .impact-bar-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
}

.impact-bar-fill--before {
  background: linear-gradient(90deg, rgba(100, 116, 139, 0.85), rgba(71, 85, 105, 0.65));
}

.impact-bar-fill--after {
  background: linear-gradient(90deg, #2dd4bf, #6b8cff);
  box-shadow: 0 0 20px rgba(45, 212, 191, 0.35);
}

[data-reveal="chain"].is-visible .impact-revenue__bars .impact-bar-fill {
  animation: impact-bar-reveal 1.15s var(--ease-out-expo) forwards;
}

[data-reveal="chain"].is-visible .impact-revenue__bars .impact-bar-fill--after {
  animation-delay: 0.12s;
}

@keyframes impact-bar-reveal {
  from {
    width: 0;
  }
  to {
    width: var(--w, 50%);
  }
}

.impact-bar-row__num {
  text-align: right;
}

.impact-num-pulse--bar {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.impact-num-pulse--bar-hot {
  color: var(--teal);
}

.impact-revenue__gap {
  text-align: center;
  max-width: 38rem;
  margin: 1.25rem auto 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.impact-revenue__gap strong {
  font-size: 1.05em;
  font-weight: 700;
}

.impact-num-pulse--gap {
  font-family: var(--font-display);
  color: var(--teal);
}

.impact-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 2rem;
}

@media (max-width: 1000px) {
  .impact-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .impact-mini-grid {
    grid-template-columns: 1fr;
  }
}

.impact-mini {
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  border: 1px solid rgba(107, 140, 255, 0.2);
  background: rgba(8, 12, 22, 0.65);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.impact-mini__value {
  display: block;
  margin-bottom: 0.45rem;
  line-height: 1;
  text-align: center;
}

.impact-num-pulse--mini {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.impact-mini__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.impact-mini__text strong {
  color: var(--text);
  font-weight: 600;
}

.impact-footnote {
  margin: 1.75rem auto 0;
  max-width: 36rem;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(148, 163, 184, 0.95);
}

.impact-footnote a {
  color: var(--accent-2);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.impact-footnote a:hover {
  color: var(--teal);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal="chain"].is-visible .impact-revenue__bars .impact-bar-fill,
  .impact-revenue__bars .impact-bar-fill {
    animation: none;
    width: var(--w, 50%);
  }

  .impact-num-pulse {
    animation: none !important;
    transform: none !important;
  }
}

.price-includes {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.price-includes li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.4rem;
}

.price-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
  font-size: 0.85em;
}

/* Process */
.process {
  background: linear-gradient(180deg, transparent, rgba(18, 24, 42, 0.45), transparent);
}

.process-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.35s ease, transform 0.4s var(--ease-out-expo);
}

.process-step:hover {
  border-color: rgba(45, 212, 191, 0.25);
  transform: translateX(4px);
}

.step-num {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(107, 140, 255, 0.2), rgba(45, 212, 191, 0.12));
  border: 1px solid var(--border-strong);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
}

.process-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
}

.about-panel {
  padding: 0.5rem 0;
}

.about-text {
  margin: 0 0 1rem;
  max-width: 42ch;
}

.about-text.muted {
  color: var(--text-muted);
}

.about-highlight {
  display: flex;
  align-items: center;
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.about-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61, 90, 254, 0.08), transparent 50%);
  pointer-events: none;
}

.about-highlight blockquote {
  margin: 0;
  position: relative;
  z-index: 1;
}

.about-highlight blockquote p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.45;
  margin: 0 0 1rem;
}

.about-highlight .quote-3d p {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 4px 18px rgba(0, 0, 0, 0.35);
}

.about-highlight footer {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-meta {
  font-style: normal;
  margin-top: 1.5rem;
  font-size: 0.95rem;
}

.contact-meta a {
  color: var(--accent);
  text-decoration: none;
}

.contact-meta a:hover {
  text-decoration: underline;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field {
  min-width: 0;
}

.field span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.field input,
.field textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--text);
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(107, 140, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(61, 90, 254, 0.15);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 2.5rem;
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-tagline {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-tagline a {
  color: var(--text-muted);
  text-decoration: none;
  display: inline-block;
  transition: color 0.25s ease, transform 0.3s var(--ease-out-expo);
}

.footer-tagline a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

/* —— Extra orbs & grid floor —— */
.orb-d {
  width: min(28vw, 220px);
  height: min(28vw, 220px);
  background: #301848;
  bottom: 35%;
  right: 8%;
  opacity: 0.3;
  animation-delay: -10s;
}

.grid-floor {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: linear-gradient(rgba(120, 140, 200, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 140, 200, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: center bottom;
  mask-image: linear-gradient(to bottom, transparent 0%, black 22%, black 78%, transparent 100%);
  animation: grid-drift 40s linear infinite;
  opacity: 0.38;
  transform: perspective(720px) rotateX(68deg);
  transform-origin: 50% 108%;
  transform-style: preserve-3d;
}

@keyframes grid-drift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 56px 56px, 56px 56px;
  }
}

/* —— Header cart —— */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-trigger {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.35s var(--ease-out-expo), border-color 0.25s ease, box-shadow 0.35s ease;
}

.cart-trigger:hover {
  border-color: rgba(107, 140, 255, 0.45);
  box-shadow: 0 0 24px rgba(61, 90, 254, 0.25);
  transform: translateY(-2px);
}

.cart-ico {
  display: block;
}

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2), var(--teal));
  color: #fff;
  box-shadow: 0 2px 10px rgba(61, 90, 254, 0.5);
}

.cart-badge.cart-bump {
  animation: badge-pop 0.45s var(--ease-out-expo);
}

@keyframes badge-pop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.35);
  }
  100% {
    transform: scale(1);
  }
}

.mobile-cart-btn {
  margin-top: 0.5rem;
  padding: 0.75rem 0;
  font: inherit;
  font-weight: 600;
  color: var(--accent);
  background: none;
  border: none;
  border-top: 1px solid var(--border);
  cursor: pointer;
  text-align: left;
}

/* —— Hero extras —— */
.eyebrow-shimmer {
  background: linear-gradient(90deg, var(--teal), var(--accent), var(--teal));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer-text 4s linear infinite;
}

@keyframes shimmer-text {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.text-gradient-anim {
  background-size: 200% auto;
  animation: gradient-move 5s ease infinite;
}

@keyframes gradient-move {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.float-slow {
  animation: float-y 7s ease-in-out infinite;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.tilt-hover {
  transition: transform 0.5s var(--ease-out-expo);
}

.tilt-hover:hover {
  transform: perspective(900px) rotateX(2deg) rotateY(-3deg) translateY(-4px);
}

.card-glow {
  position: relative;
}

.card-glow::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(135deg, rgba(107, 140, 255, 0.35), transparent 50%, rgba(45, 212, 191, 0.2));
  z-index: -1;
  transition: opacity 0.45s ease;
  filter: blur(12px);
}

.card-glow:hover::after {
  opacity: 1;
}

.title-underline {
  position: relative;
  display: inline-block;
}

.title-underline::after {
  content: "";
  display: block;
  height: 3px;
  margin-top: 0.5rem;
  border-radius: 3px;
  background: var(--gradient-hero);
  transform: scaleX(0);
  transform-origin: left;
}

[data-reveal].is-visible .title-underline::after {
  animation: underline-in 0.9s var(--ease-out-expo) 0.15s forwards;
}

@keyframes underline-in {
  to {
    transform: scaleX(1);
  }
}

.btn-ripple {
  position: relative;
  overflow: hidden;
}

.btn-ripple::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--rx, 50%) var(--ry, 50%), rgba(255, 255, 255, 0.35), transparent 55%);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-out-expo);
}

.btn-ripple:active::after {
  opacity: 1;
  transform: scale(2.5);
  transition: 0s;
}

/* —— Pricing (przejrzysty, wyśrodkowany + roboty ku cenie) —— */
.pricing.pricing--clear {
  position: relative;
  overflow: hidden;
}

.pricing.pricing--clear::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 72% 48% at 50% -5%, rgba(107, 140, 255, 0.14), transparent 58%),
    radial-gradient(ellipse 50% 42% at 92% 55%, rgba(45, 212, 191, 0.08), transparent 52%),
    radial-gradient(ellipse 48% 38% at 8% 65%, rgba(61, 90, 254, 0.09), transparent 48%);
  pointer-events: none;
}

.pricing__inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.pricing__intro .section-title {
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.pricing-punch--clear {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-muted);
  padding: 1rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 24, 0.38);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.pricing-punch--clear strong {
  color: var(--teal);
  font-weight: 700;
}

.pricing-plans {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin-top: 2.5rem;
}

.pricing-plans[role="list"] {
  list-style: none;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}

.price-plan.price-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(4.25rem, 5.5rem) minmax(0, 1fr) minmax(4.25rem, 5.5rem);
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 1.5rem 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(10, 14, 26, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 20px 48px rgba(0, 0, 0, 0.28);
  overflow: visible;
  transition: border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.price-plan.price-card:hover {
  border-color: rgba(107, 140, 255, 0.3);
  background: rgba(12, 18, 32, 0.5);
  box-shadow:
    0 0 0 1px rgba(107, 140, 255, 0.1) inset,
    0 26px 56px rgba(0, 0, 0, 0.34),
    0 0 64px rgba(61, 90, 254, 0.09);
}

.price-plan__main {
  min-width: 0;
  text-align: center;
}

.price-plan.price-card .price-badge {
  margin-bottom: 0.6rem;
  background: rgba(107, 140, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.price-plan.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.26rem;
  margin: 0 0 0.45rem;
  transform: none;
  transition: none;
}

.price-plan.price-card:hover h3 {
  transform: none;
}

.price-plan .price-desc {
  margin: 0 auto 1rem;
  max-width: 36rem;
  min-height: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.price-plan .price-includes {
  text-align: left;
  max-width: 22rem;
  margin: 0 auto 1rem;
}

.price-plan__focus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.2rem;
}

.price-plan .price-extra {
  justify-content: center;
  margin-bottom: 0;
}

.price-plan__robot.img-illustration {
  width: 100%;
  max-width: 5.25rem;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 0.2rem;
  margin: 0 auto;
  background: radial-gradient(ellipse 88% 82% at 50% 58%, rgba(107, 140, 255, 0.16), transparent 74%);
  justify-self: center;
  align-self: end;
}

.price-plan__robot--left {
  transform-origin: 100% 88%;
  animation: price-robot-peer-left 5.2s ease-in-out infinite;
}

.price-plan__robot--right {
  transform-origin: 0% 88%;
  animation: price-robot-peer-right 5.2s ease-in-out infinite;
}

@keyframes price-robot-peer-left {
  0%,
  100% {
    transform: rotate(-13deg) translateY(0);
  }
  50% {
    transform: rotate(-7deg) translateY(-4px);
  }
}

@keyframes price-robot-peer-right {
  0%,
  100% {
    transform: rotate(13deg) translateY(0);
  }
  50% {
    transform: rotate(7deg) translateY(-4px);
  }
}

.price-plan .price-tag.price-tag--clear {
  width: 100%;
  max-width: min(19rem, 100%);
  margin: 0;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1.2rem 0.95rem;
  border-radius: 16px;
  transform: none;
  transform-style: flat;
  background: rgba(6, 10, 22, 0.62);
  border: 1px solid rgba(107, 140, 255, 0.32);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 10px 36px rgba(0, 0, 0, 0.28),
    0 0 40px rgba(61, 90, 254, 0.1);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.price-plan.price-card:hover .price-tag.price-tag--clear {
  transform: none;
  border-color: rgba(45, 212, 191, 0.4);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 12px 40px rgba(0, 0, 0, 0.32),
    0 0 52px rgba(45, 212, 191, 0.12);
}

.price-plan .price-tag.price-tag--clear::before {
  display: none;
}

.price-tag.price-tag--clear .once,
.price-tag.price-tag--clear .month {
  color: rgba(240, 242, 250, 0.62);
}

@media (max-width: 767px) {
  .price-plan.price-card {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    padding: 1.25rem 0.95rem;
    gap: 0.55rem 0.65rem;
  }

  .price-plan__robot--left {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    align-self: end;
  }

  .price-plan__robot--right {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    align-self: end;
  }

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

  .price-plan .price-includes {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .price-plan__robot--left,
  .price-plan__robot--right {
    animation: none;
  }

  .price-plan__robot--left {
    transform: rotate(-11deg);
  }

  .price-plan__robot--right {
    transform: rotate(11deg);
  }
}

.price-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--border-strong);
  background: rgba(107, 140, 255, 0.08);
}

.price-badge-hot {
  color: #ffb86c;
  border-color: rgba(255, 184, 108, 0.35);
  background: rgba(255, 184, 108, 0.1);
}

.price-tag .amount {
  font-size: clamp(2.45rem, 5.5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 14px rgba(61, 90, 254, 0.35));
}

.price-tag .currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-left: 0.1em;
  vertical-align: 0.15em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.price-tag .once,
.price-tag .month {
  flex: 1 0 100%;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(240, 242, 250, 0.72);
}

.price-extra {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  cursor: pointer;
}

.price-extra input {
  margin-top: 0.25rem;
  accent-color: var(--accent-2);
}

/* Stagger 5–8 */
[data-stagger].is-visible:nth-child(5) {
  transition-delay: 0.33s;
}

[data-stagger].is-visible:nth-child(6) {
  transition-delay: 0.4s;
}

[data-stagger].is-visible:nth-child(7) {
  transition-delay: 0.47s;
}

[data-stagger].is-visible:nth-child(8) {
  transition-delay: 0.54s;
}

.process-step .step-num {
  animation: step-num-pulse 3s ease-in-out infinite;
}

.process-step:nth-child(2) .step-num {
  animation-delay: 0.5s;
}

.process-step:nth-child(3) .step-num {
  animation-delay: 1s;
}

.process-step:nth-child(4) .step-num {
  animation-delay: 1.5s;
}

@keyframes step-num-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(61, 90, 254, 0.2);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(61, 90, 254, 0.06);
  }
}

/* About */
.about-contact-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.about-contact-list a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.about-contact-list a:hover {
  text-decoration: underline;
}

.about-contact-list li + li {
  margin-top: 0.35rem;
}

.pulse-border {
  animation: border-pulse 4s ease-in-out infinite;
}

@keyframes border-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(61, 90, 254, 0.15);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(61, 90, 254, 0.08);
  }
}

.contact-meta-block p {
  margin: 0.35rem 0;
}

.contact-meta-block a {
  color: var(--accent);
  text-decoration: none;
}

.contact-meta-block a:hover {
  text-decoration: underline;
}

.form-glow {
  transform: perspective(960px) rotateX(1.2deg);
  transform-style: preserve-3d;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.12), 0 0 0 1px var(--border), 0 24px 48px rgba(0, 0, 0, 0.2);
  animation: form-glow-pulse 6s ease-in-out infinite;
}

@keyframes form-glow-pulse {
  0%,
  100% {
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.12), 0 0 0 1px var(--border), 0 24px 48px rgba(0, 0, 0, 0.2), 0 0 40px rgba(61, 90, 254, 0.06);
  }
  50% {
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(107, 140, 255, 0.28), 0 28px 56px rgba(0, 0, 0, 0.24), 0 0 52px rgba(45, 212, 191, 0.1);
  }
}

.hero-stats a {
  color: var(--accent);
  text-decoration: none;
}

.hero-stats a:hover {
  text-decoration: underline;
}

/* —— Canvas gwiazd (pod treścią, pointer-events none) —— */
.star-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: block;
}

.star-canvas--static {
  opacity: 0.35;
  background: radial-gradient(ellipse at 50% 20%, rgba(80, 100, 180, 0.15), transparent 55%);
}

/* —— Astronauta „DVD screensaver” (tyło, pod treścią main) —— */
.dvd-astronaut {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 0;
  width: clamp(72px, 11vw, 96px);
  pointer-events: none;
  opacity: 0.62;
  filter: drop-shadow(0 0 14px rgba(107, 140, 255, 0.25)) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.35));
  will-change: transform;
}

.dvd-astronaut__inner {
  width: 100%;
  transform-origin: 50% 55%;
}

.dvd-astronaut__svg {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.dvd-astronaut__pose .dvd-astronaut__arm--l {
  transform-origin: 32px 58px;
  transform-box: fill-box;
  animation: dvd-astronaut-idle-arm-l 3.8s ease-in-out infinite;
}

.dvd-astronaut__pose .dvd-astronaut__arm--r {
  transform-origin: 68px 58px;
  transform-box: fill-box;
  animation: dvd-astronaut-idle-arm-r 4.2s ease-in-out infinite;
  animation-delay: -0.6s;
}

.dvd-astronaut__pose .dvd-astronaut__leg--l {
  transform-origin: 44px 78px;
  transform-box: fill-box;
  animation: dvd-astronaut-idle-leg-l 3.4s ease-in-out infinite;
}

.dvd-astronaut__pose .dvd-astronaut__leg--r {
  transform-origin: 56px 78px;
  transform-box: fill-box;
  animation: dvd-astronaut-idle-leg-r 3.6s ease-in-out infinite;
  animation-delay: -0.8s;
}

.dvd-astronaut__inner--flail .dvd-astronaut__arm--l {
  animation: dvd-astronaut-flail-arm-l 0.88s ease-in-out both;
}

.dvd-astronaut__inner--flail .dvd-astronaut__arm--r {
  animation: dvd-astronaut-flail-arm-r 0.88s ease-in-out both;
}

.dvd-astronaut__inner--flail .dvd-astronaut__leg--l {
  animation: dvd-astronaut-flail-leg-l 0.88s ease-in-out both;
}

.dvd-astronaut__inner--flail .dvd-astronaut__leg--r {
  animation: dvd-astronaut-flail-leg-r 0.88s ease-in-out both;
}

@keyframes dvd-astronaut-idle-arm-l {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}

@keyframes dvd-astronaut-idle-arm-r {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(12deg);
  }
}

@keyframes dvd-astronaut-idle-leg-l {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(6deg);
  }
}

@keyframes dvd-astronaut-idle-leg-r {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-5deg);
  }
}

@keyframes dvd-astronaut-flail-arm-l {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-32deg);
  }
  55% {
    transform: rotate(18deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes dvd-astronaut-flail-arm-r {
  0% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(36deg);
  }
  60% {
    transform: rotate(-14deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes dvd-astronaut-flail-leg-l {
  0% {
    transform: rotate(0deg);
  }
  35% {
    transform: rotate(14deg);
  }
  70% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes dvd-astronaut-flail-leg-r {
  0% {
    transform: rotate(0deg);
  }
  40% {
    transform: rotate(-16deg);
  }
  75% {
    transform: rotate(12deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* —— Więcej animacji tekstu —— */
[data-reveal] .txt-split {
  display: inline-block;
  opacity: 0.15;
  transform: translateY(0.55em) rotateX(22deg);
  filter: blur(6px);
}

[data-reveal].is-visible .txt-split {
  animation: txt-split-pop 0.62s var(--ease-out-expo) forwards;
  animation-delay: calc(0.028s * var(--ti, 0));
}

@keyframes txt-split-pop {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    filter: blur(0);
  }
}

.nav-list .nav-link-anim {
  display: inline-block;
  transition: transform 0.35s var(--ease-out-expo), color 0.25s ease, text-shadow 0.35s ease;
}

.nav-list .nav-link-anim:hover {
  transform: translateY(-3px);
  color: var(--text);
  text-shadow: 0 0 24px rgba(107, 140, 255, 0.55);
}

.text-heading-shift {
  transition: letter-spacing 0.45s ease, transform 0.45s var(--ease-out-expo);
}

.services-globe-panel[data-reveal].is-visible .text-heading-shift {
  animation: heading-slide-blur 0.85s var(--ease-out-expo) both;
}

.services-globe-panel:hover .text-heading-shift {
  letter-spacing: 0.04em;
  transform: translateX(6px);
}

@keyframes heading-slide-blur {
  from {
    opacity: 0;
    transform: translateX(-28px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

.text-line-mask {
  overflow: hidden;
}

.section-desc-glow strong {
  background: linear-gradient(100deg, var(--teal), var(--accent), var(--teal));
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: grad-sweep-desc 5s linear infinite;
}

@keyframes grad-sweep-desc {
  to {
    background-position: 220% center;
  }
}

.modal-checkout:not([hidden]) .modal-lead-anim {
  animation: modal-lead-in 0.75s var(--ease-out-expo) 0.12s both;
}

@keyframes modal-lead-in {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.process-step p {
  transition: color 0.3s ease, transform 0.35s var(--ease-out-expo);
}

.process-step:hover p {
  transform: translateX(6px);
  color: var(--text);
}

/* —— Koszyk (nowy — nad banerem, szumem i całą stroną) —— */
body.cart-open,
body.checkout-open {
  overflow: hidden;
}

.cart-app {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  pointer-events: none;
}

.cart-app:not([hidden]) {
  pointer-events: auto;
}

.cart-app__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  background: rgba(3, 5, 12, 0.78);
  backdrop-filter: blur(8px);
  animation: cart-fade-in 0.3s ease;
}

.cart-app__sheet {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(430px, 100%);
  max-width: 100%;
  box-sizing: border-box;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border-left: 1px solid var(--border-strong);
  box-shadow: -32px 0 80px rgba(0, 0, 0, 0.55);
  animation: cart-sheet-in 0.42s var(--ease-out-expo);
}

@keyframes cart-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes cart-sheet-in {
  from {
    transform: translateX(100%);
    opacity: 0.9;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.cart-app__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1rem 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-app__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0;
}

.cart-app__x {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.cart-app__x span[aria-hidden="true"] {
  font-size: 1.35rem;
  line-height: 1;
  margin-top: -2px;
}

.cart-app__x:hover {
  background: var(--surface-hover);
  border-color: var(--accent);
  color: #fff;
}

.cart-app__body {
  flex: 1;
  overflow: auto;
  padding: 0.75rem 1.25rem 1rem;
  -webkit-overflow-scrolling: touch;
}

.cart-app__empty {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 2rem 0;
  text-align: center;
}

.cart-app__lines {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cart-app__line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  animation: cart-line-in 0.38s var(--ease-out-expo);
}

@keyframes cart-line-in {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cart-app__line-info strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
}

.cart-app__line-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cart-app__line-qty {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cart-app__qty {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1.15rem;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.cart-app__qty:hover {
  border-color: var(--accent);
  transform: scale(1.07);
}

.cart-app__remove {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}

.cart-app__line-sum {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--teal);
  align-self: start;
}

.cart-app__foot {
  padding: 1.1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--border);
  background: rgba(6, 8, 15, 0.92);
  flex-shrink: 0;
}

.cart-app__totals {
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
}

.cart-app__totals p {
  margin: 0.35rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.cart-app__totals span {
  color: var(--text-muted);
}

.cart-app__checkout {
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(61, 90, 254, 0.35);
}

/* —— Checkout modal (nad koszykiem) —— */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2147483600;
  background: rgba(3, 5, 12, 0.82);
  backdrop-filter: blur(8px);
  animation: cart-fade-in 0.3s ease;
}

.modal-checkout {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 2147483700;
  width: min(480px, calc(100% - 1.5rem));
  max-width: calc(100% - 1.5rem);
  max-height: min(90vh, 90dvh, calc(100dvh - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px) - 1.5rem));
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  transform: translate(-50%, -50%);
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1.75rem max(1.25rem, env(safe-area-inset-left, 0px)) 1.75rem max(1.25rem, env(safe-area-inset-right, 0px));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(107, 140, 255, 0.12);
  animation: modal-pop 0.5s var(--ease-out-expo);
  pointer-events: auto;
  isolation: isolate;
}

@keyframes modal-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -48%) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

.modal-checkout h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.modal-lead {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  font-size: 1.35rem;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.25s ease;
}

.modal-close:hover {
  transform: rotate(90deg);
}

#checkout-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

#checkout-order-field {
  font-size: 0.8rem;
  line-height: 1.45;
  font-family: ui-monospace, monospace;
}

/* —— Dolny baner promocyjny —— */
body.has-bottom-banner {
  padding-bottom: var(--bottom-banner-h);
  transition: padding-bottom 0.35s var(--ease-out-expo);
}

.bottom-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  /* Poniżej koszyka i modali (wcześniej 10040 zasłaniało przycisk zamknięcia) */
  z-index: 1015;
  padding: 0.75rem 0;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(12, 16, 28, 0.92) 0%, rgba(6, 8, 15, 0.98) 100%);
  border-top: 1px solid rgba(107, 140, 255, 0.35);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  animation: bottom-banner-in 0.45s var(--ease-out-expo) both;
}

.bottom-banner.is-closing {
  animation: bottom-banner-out 0.28s ease forwards;
}

@keyframes bottom-banner-in {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bottom-banner-out {
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

.bottom-banner-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.bottom-banner-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  flex: 1;
  min-width: 0;
}

.bottom-banner-label {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(45, 212, 191, 0.35);
  background: rgba(45, 212, 191, 0.08);
}

.bottom-banner-text {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.bottom-banner-text code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85em;
  color: var(--text);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: rgba(107, 140, 255, 0.2);
}

.bottom-banner-cta {
  flex-shrink: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(107, 140, 255, 0.4);
  transition: background 0.2s ease, color 0.2s ease;
}

.bottom-banner-cta:hover {
  background: rgba(107, 140, 255, 0.12);
  color: var(--text);
}

.bottom-banner-close {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bottom-banner-close:hover {
  background: var(--surface-hover);
  transform: scale(1.05);
}

@media (max-width: 640px) {
  .bottom-banner-inner {
    position: relative;
    flex-wrap: wrap;
    padding-right: 48px;
  }

  .bottom-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .bottom-banner-close {
    position: absolute;
    top: 0.65rem;
    right: 4vw;
  }
}

@media (max-width: 860px) {
  .cart-trigger {
    width: 42px;
    height: 42px;
  }
}

/* —— Wycena (lead) —— */
.section-head--wide {
  max-width: 48rem;
}

.section-head--center {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: 2.75rem;
}

.section-head--center .section-desc {
  margin-inline: auto;
}

.lead-wycena {
  padding-top: clamp(2.5rem, 6vw, 3.5rem);
}

.wycena-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

@media (max-width: 960px) {
  .wycena-layout {
    grid-template-columns: 1fr;
  }
}

.wycena-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

.benefit-card {
  margin: 0;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: linear-gradient(155deg, rgba(18, 24, 42, 0.96), rgba(10, 14, 24, 0.9));
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.18), 0 14px 36px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s ease, transform 0.4s var(--ease-out-expo);
}

.benefit-card.card-3d {
  transform: perspective(880px) rotateX(1.5deg);
}

.benefit-card:hover {
  border-color: rgba(107, 140, 255, 0.32);
}

.benefit-card.card-3d:hover {
  transform: perspective(880px) rotateX(0deg) translateY(-3px);
}

.benefit-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.benefit-card__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.benefit-card__text a {
  color: var(--accent);
}

.wycena-aside__lead {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(45, 212, 191, 0.22);
  background: rgba(45, 212, 191, 0.06);
}

.wycena-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}

.wycena-form__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 0.25rem;
}

/* —— Gwarancja / zaufanie —— */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 800px) {
  .guarantee-grid {
    grid-template-columns: 1fr;
  }
}

.guarantee-card {
  margin: 0;
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.guarantee-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.guarantee-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* —— O mnie — rozszerzenie —— */
.about-grid--extended {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}

@media (max-width: 800px) {
  .about-grid--extended {
    grid-template-columns: 1fr;
  }
}

.about-kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--teal);
  margin: 0 0 0.75rem;
}

.about-bullets {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.about-bullets li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.45rem;
}

.about-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.85;
}

.compare-block {
  padding-top: 0.5rem;
}

.compare-block__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-align: center;
  margin: 0 0 1.25rem;
}

.compare-table {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-elevated);
}

.compare-row {
  display: grid;
  grid-template-columns: minmax(100px, 0.9fr) 1.15fr 1.15fr;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  line-height: 1.45;
  align-items: start;
}

@media (max-width: 700px) {
  .compare-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1rem;
  }

  .compare-row--head {
    display: none;
  }

  .compare-row:not(.compare-row--head) .compare-cell:nth-child(1) {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    padding-bottom: 0.35rem;
    margin-bottom: 0.15rem;
    border-bottom: 1px solid var(--border);
  }

  .compare-row:not(.compare-row--head) .compare-cell:nth-child(2)::before,
  .compare-row:not(.compare-row--head) .compare-cell:nth-child(3)::before {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
  }

  .compare-row:not(.compare-row--head) .compare-cell:nth-child(2)::before {
    content: "SDIT";
    color: var(--teal);
  }

  .compare-row:not(.compare-row--head) .compare-cell:nth-child(3)::before {
    content: "Często w agencji";
  }
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row--head {
  background: rgba(107, 140, 255, 0.08);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.compare-cell--yes {
  color: var(--text);
}

.compare-cell--muted {
  color: var(--text-muted);
}

.compare-cta {
  text-align: center;
  margin: 1.5rem 0 0;
}

/* —— Realizacje —— */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }
}

.case-card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}

.case-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}

.case-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 1rem;
}

.case-card__metrics {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.case-card__metrics li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: baseline;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.case-metric__val {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text);
}

.case-metric__lbl {
  color: var(--text-muted);
  font-weight: 500;
}

.case-card__note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.case-card.card-3d {
  transform: perspective(920px) rotateX(1.2deg);
  transition: transform 0.45s var(--ease-out-expo), border-color 0.3s ease, box-shadow 0.4s ease;
}

.case-card.card-3d:hover {
  transform: perspective(920px) translateY(-5px) rotateX(0deg);
  border-color: rgba(107, 140, 255, 0.32);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

/* —— Opinie —— */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  margin: 0;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(165deg, rgba(18, 24, 42, 0.9), rgba(12, 16, 28, 0.95));
  font-style: normal;
}

.testimonial-card p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}

.testimonial-card footer {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.testimonial-card strong {
  color: var(--text);
}

/* —— FAQ —— */
.container--narrow {
  max-width: 720px;
  margin-inline: auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0 1rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1rem;
  padding-bottom: 0.15rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.faq-footer-cta {
  text-align: center;
  margin-top: 1.75rem;
}

/* —— Kontakt — mini karty —— */
.contact-meta--cards {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-style: normal;
}

.contact-card-mini {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(18, 24, 42, 0.5);
}

.contact-card-mini__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-card-mini a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.contact-card-mini a:hover {
  text-decoration: underline;
}

/* —— Stopka rozszerzona —— */
.footer-wide {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 280px;
}

.footer-tag {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.5rem;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-nav-h {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.footer-nav-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-nav-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  margin: 0;
  font-size: 0.85rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

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

/* —— Mobile / małe ekrany: brak ucinania, safe-area, kompaktowy układ —— */
@media (max-width: 480px) {
  :root {
    --header-h: 64px;
  }

  body {
    font-size: 1rem;
  }

  .section {
    padding: clamp(2.5rem, 9vw, 4rem) 0;
  }

  .hero {
    padding: calc(var(--header-h) + 2rem) 0 3rem;
  }

  .brand {
    min-width: 0;
    gap: 0.45rem;
  }

  .brand-text {
    font-size: 1.2rem;
    letter-spacing: 0.01em;
  }

  .cart-app__sheet {
    width: 100%;
    max-width: 100%;
    border-left: none;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
  }

  .cart-app__head {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .cart-app__body,
  .cart-app__foot {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .contact-form,
  .wycena-form {
    padding: 1.2rem 1rem;
  }
}

@media (max-width: 540px) {
  .modal-checkout {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
    width: 100%;
    max-width: none;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: min(88dvh, calc(100dvh - env(safe-area-inset-bottom, 0px) - 0.35rem));
    padding: 1.35rem max(1rem, env(safe-area-inset-left, 0px)) max(1.15rem, env(safe-area-inset-bottom, 0px))
      max(1rem, env(safe-area-inset-right, 0px));
    animation: modal-sheet-up 0.42s var(--ease-out-expo) both;
  }

  .modal-checkout:not([hidden]) .modal-lead-anim {
    animation-delay: 0.08s;
  }

  .modal-close {
    top: 10px;
    right: max(10px, env(safe-area-inset-right, 0px));
  }
}

@keyframes modal-sheet-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 380px) {
  .price-plan.price-card {
    padding: 1.1rem 0.75rem;
    gap: 0.45rem 0.5rem;
  }

  .impact-col {
    padding: 1.1rem 1rem 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-figure-3d,
  .hero-figure-3d.tilt-hover:hover,
  .tech-strip-fig.fig-3d,
  .tech-strip-fig.fig-3d:hover,
  .trust-strip-item,
  .trust-strip-item:hover,
  .benefit-card.card-3d,
  .benefit-card.card-3d:hover,
  .case-card.card-3d,
  .case-card.card-3d:hover,
  .grid-floor,
  .form-glow {
    transform: none !important;
  }

  .services-globe-wire--a,
  .services-globe-wire--b {
    animation: none !important;
  }

  .dvd-astronaut,
  .dvd-astronaut__pose .dvd-astronaut__arm--l,
  .dvd-astronaut__pose .dvd-astronaut__arm--r,
  .dvd-astronaut__pose .dvd-astronaut__leg--l,
  .dvd-astronaut__pose .dvd-astronaut__leg--r {
    animation: none !important;
  }

  .hero-title-3d,
  .section-title.title-3d,
  .about-highlight .quote-3d p {
    text-shadow: none;
  }
}

