@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

body {
  background: #070b14;
  color: #ffffff;
  overflow-x: hidden;
  cursor: default;
}

::selection {
  background: rgba(0, 255, 170, 0.3);
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 255, 170, 0.18), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(80, 120, 255, 0.18), transparent 30%),
    radial-gradient(circle at 50% 90%, rgba(255, 190, 60, 0.12), transparent 35%),
    #070b14;
}

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

/* ===== LOGOTYP W TLE ===== */
.logo-watermark {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: url("images/MW1.webp") center center / min(60vmin, 700px) no-repeat;
    opacity: 0.50;
    filter: brightness(1.15) blur(0.3px) drop-shadow(0 0 80px rgba(0, 255, 170, 0.08));
    animation: 
        watermark-float 20s ease-in-out infinite,
        watermark-glow 8s ease-in-out infinite,
        watermark-shimmer 12s ease-in-out infinite;
    will-change: filter, opacity;
}

@keyframes watermark-float {
    0%, 100% { background-position: center center; transform: translate(0, 0) scale(1); }
    25% { background-position: 52% 48%; transform: translate(-1%, -1%) scale(1.005); }
    50% { background-position: 48% 52%; transform: translate(1%, 1%) scale(0.998); }
    75% { background-position: 51% 49%; transform: translate(-0.5%, 0.5%) scale(1.002); }
}

@keyframes watermark-glow {
    0%, 100% { opacity: 0.05; filter: brightness(1.05) blur(0.5px) drop-shadow(0 0 40px rgba(0, 255, 170, 0.04)); }
    50% { opacity: 0.09; filter: brightness(1.25) blur(0) drop-shadow(0 0 120px rgba(0, 255, 170, 0.15)); }
}

@keyframes watermark-shimmer {
    0%, 100% { 
        background-image: url("images/MW1.webp"), linear-gradient(110deg, transparent 40%, rgba(0, 255, 170, 0.08) 50%, transparent 60%);
        background-size: min(60vmin, 700px), 300% 100%;
        background-position: center center, 300% 0;
        background-repeat: no-repeat, no-repeat;
    }
    50% { background-position: center center, -300% 0; }
}

/* ===== HEADER ===== */
header {
  width: 100%;
  padding: 24px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 11, 20, 0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
  height: 100px;
  width: auto;
  display: block;
  margin: -20px 0;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), filter 0.3s ease;
  animation: logo-float 6s ease-in-out infinite;
  will-change: transform, filter;
  cursor: pointer;
}

.logo::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0, 255, 170, 0.35) 0%, rgba(0, 255, 170, 0.15) 40%, transparent 70%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
  z-index: -1;
  filter: blur(8px);
}

.logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  background-size: 200% 100%;
  background-position: 200% 0;
  opacity: 0;
  pointer-events: none;
  border-radius: 12px;
  transition: opacity 0.3s ease;
}

.logo:hover {
  transform: translateZ(20px) scale(1.08);
  filter: drop-shadow(0 0 30px rgba(0, 255, 170, 0.5)) drop-shadow(0 0 60px rgba(0, 255, 170, 0.25));
  animation-play-state: paused;
}

.logo:hover::before {
  opacity: 1;
  transform: scale(1.4);
}

.logo:hover::after {
  opacity: 1;
  animation: logo-shimmer 1.2s ease forwards;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  25% { transform: translateY(-3px) rotate(0.5deg); }
  50% { transform: translateY(0) rotate(0deg); }
  75% { transform: translateY(2px) rotate(-0.3deg); }
}

@keyframes logo-shimmer {
  0% { background-position: 200% 0; opacity: 0; }
  20% { opacity: 1; }
  100% { background-position: -200% 0; opacity: 0; }
}

.logo[data-tilt] {
  transition: transform 0.08s linear, filter 0.3s ease;
}

nav {
  display: flex;
  gap: 26px;
  align-items: center;
}

nav a {
  color: #b8c0d4;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  cursor: pointer;
}

nav a:hover {
  color: #00ffaa;
}

.btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 22px;
  color: #06100d;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  background: linear-gradient(135deg, #00ffaa, #70ffcf);
  box-shadow: 0 0 30px rgba(0,255,170,0.25);
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 45px rgba(0,255,170,0.42);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: none;
  cursor: pointer;
}

/* ===== SEKCJE ===== */
section {
  padding: 110px 7%;
}

#oferta {
  padding-top: 50px;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  padding-top: 150px;
  perspective: 1200px;
}

.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  color: #00ffaa;
  background: rgba(0,255,170,0.08);
  border: 1px solid rgba(0,255,170,0.18);
  margin-bottom: 22px;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.3;
  cursor: default;
}

.hero h1 {
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  font-weight: 700;
  text-shadow: 0 2px 20px rgba(0,0,0,0.35);
  word-break: normal;
  white-space: normal;
}

.hero h1 span {
  background: linear-gradient(135deg, #00ffaa, #9fffe0, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline;
}

.hero p {
  max-width: 650px;
  color: #b8c0d4;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  cursor: default;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  will-change: transform, opacity;
}

.word-3d {
  display: inline-block;
  opacity: 0;
  will-change: transform, opacity;
  white-space: nowrap;
}

#custom-cursor {
  pointer-events: none;
  z-index: 99999;
}

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

#mouse-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,170,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

#floating-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
}

header {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#logoStage {
  display: block;
  width: 85%;
  max-width: 520px;
  height: auto;
  min-height: 300px;
  position: relative;
  backface-visibility: hidden;
  cursor: pointer;
  transform-origin: center center;
  transform: translateX(-7%) scale(1.45);
  transform-style: preserve-3d;
  animation: logoStageFloat 6s ease-in-out infinite;
  will-change: transform, filter;
}

#logoStage::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0, 255, 170, 0.35) 0%, rgba(0, 255, 170, 0.15) 40%, transparent 70%);
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
  z-index: -1;
  filter: blur(8px);
}

#logoStage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  background-size: 200% 100%;
  background-position: 200% 0;
  opacity: 0;
  pointer-events: none;
  border-radius: 12px;
  transition: opacity 0.3s ease;
}

#logoStage:hover {
  transform: translateX(-7%) translateZ(20px) scale(1.45);
  filter: drop-shadow(0 0 30px rgba(0, 255, 170, 0.5)) drop-shadow(0 0 60px rgba(0, 255, 170, 0.25));
  animation-play-state: paused;
}

#logoStage:hover::before {
  opacity: 1;
  transform: scale(1.4);
}

#logoStage:hover::after {
  opacity: 1;
  animation: logoStageShimmer 1.2s ease forwards;
}

@keyframes logoStageFloat {
  0%, 100% { transform: translateX(-7%) scale(1.45) translateY(0) rotate(-0.5deg); }
  25% { transform: translateX(-7%) scale(1.45) translateY(-3px) rotate(0.5deg); }
  50% { transform: translateX(-7%) scale(1.45) translateY(0) rotate(0deg); }
  75% { transform: translateX(-7%) scale(1.45) translateY(2px) rotate(-0.3deg); }
}

@keyframes logoStageShimmer {
  0% { background-position: 200% 0; opacity: 0; }
  20% { opacity: 1; }
  100% { background-position: -200% 0; opacity: 0; }
}

.logo-root {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 300px;
}

.logo-menu {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

.logo-menu::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 100%;
  width: 520px;
  height: 100px;
  margin-bottom: 10px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0,255,170,0.06) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  filter: blur(8px);
}

.logo-menu.open::before {
  opacity: 1;
}

.menu-btn {
  --i:0;
  --x:0px;
  --gap:24px;
  --r:0deg;

  position:absolute;
  left:calc(50% - 25px + var(--x));
  bottom:100%;
  margin-bottom:var(--gap);

  display:flex;
  align-items:center;
  gap:8px;

  padding:7px 15px 7px 10px;

  min-height:34px;

  border-radius:14px;

  background:
    linear-gradient(
      145deg,
      rgba(0,255,150,.12),
      rgba(255,255,255,.03)
    ),
    rgba(8,18,15,.72);

  border:1px solid rgba(0,255,150,.18);

  backdrop-filter:blur(22px);

  color:white;

  font-size:12px;
  font-weight:500;

  letter-spacing:.02em;

  cursor:pointer;
  white-space:nowrap;

  opacity:0;

  transform:
    translateX(-50%)
    translateY(45px)
    scale(.55)
    rotate(var(--r));

  pointer-events:none;

  transition:
    transform .55s cubic-bezier(.22,1.35,.4,1),
    opacity .35s ease,
    box-shadow .35s ease,
    border .35s ease,
    background .35s ease;

  box-shadow:
    0 10px 35px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.08);
}

/* ==========================
   POZYCJE
========================== */

.menu-btn:nth-child(1){
  --x:-225px;
  --gap:22px;
  --r:-4deg;
}

.menu-btn:nth-child(2){
  --x:-75px;
  --gap:34px;
  --r:-1.5deg;
}

.menu-btn:nth-child(3){
  --x:75px;
  --gap:34px;
  --r:1.5deg;
}

.menu-btn:nth-child(4){
  --x:225px;
  --gap:22px;
  --r:4deg;
}

/* ==========================
   IKONA
========================== */

.btn-icon{
  width:22px;
  height:22px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:8px;

  background:
    linear-gradient(
      135deg,
      rgba(0,255,150,.25),
      rgba(0,255,150,.05)
    );

  font-size:11px;

  color:#00ff99;

  box-shadow:
    inset 0 0 0 1px rgba(0,255,150,.15);

  transition:.35s ease;
}

.menu-btn:hover .btn-icon{
  background:
    linear-gradient(
      135deg,
      rgba(0,255,150,.4),
      rgba(0,255,150,.12)
    );

  box-shadow:
    0 0 20px rgba(0,255,150,.35);
}

/* ==========================
   TEKST
========================== */

.btn-label{
  background:
    linear-gradient(
      90deg,
      #ffffff,
      #9affd0
    );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  transition:.3s ease;
}

/* ==========================
   DOLNA LINIA
========================== */

.menu-btn::after{
  content:"";

  position:absolute;

  bottom:-4px;

  left:50%;

  width:0;

  height:2px;

  border-radius:20px;

  background:#00ff99;

  transform:translateX(-50%);

  transition:.35s ease;

  box-shadow:
    0 0 12px #00ff99;
}

.menu-btn:hover::after{
  width:60%;
}

/* ==========================
   HOVER
========================== */

.menu-btn:hover{
  background:
    linear-gradient(
      145deg,
      rgba(0,255,150,.18),
      rgba(255,255,255,.05)
    ),
    rgba(8,18,15,.85);

  border-color:
    rgba(0,255,150,.5);

  box-shadow:
    0 15px 45px rgba(0,255,150,.18),
    0 0 0 1px rgba(0,255,150,.15),
    inset 0 1px 0 rgba(255,255,255,.15);
}

.logo-menu.open .menu-btn:hover {
  transform:
    translateX(-50%)
    translateY(0)
    rotate(var(--r))
    scale(1);
}

/* ==========================
   CLICK
========================== */

.menu-btn:active{
  transform:
    translateX(-50%)
    translateY(0)
    scale(.94)
    rotate(var(--r));
}

/* ==========================
   OTWARCIE
========================== */

.logo-menu.open .menu-btn{
  opacity:1;

  transform:
    translateX(-50%)
    translateY(0)
    rotate(var(--r))
    scale(1);

  pointer-events:auto;
}

.logo-menu.open .menu-btn:nth-child(1){
  transition-delay:.00s;
}

.logo-menu.open .menu-btn:nth-child(2){
  transition-delay:.07s;
}

.logo-menu.open .menu-btn:nth-child(3){
  transition-delay:.14s;
}

.logo-menu.open .menu-btn:nth-child(4){
  transition-delay:.21s;
}

/* ==========================
   ZAMKNIĘCIE
========================== */

.logo-menu.closing .menu-btn{
  opacity:0;

  transform:
    translateX(-50%)
    translateY(35px)
    scale(.5)
    rotate(var(--r));
}

/* ==========================
   FOCUS
========================== */

.menu-btn:focus-visible{
  outline:none;

  box-shadow:
    0 0 0 3px rgba(0,255,150,.25),
    0 0 35px rgba(0,255,150,.25);
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media(max-width:768px){
  .menu-btn{
    padding:6px 12px 6px 9px;
    font-size:11px;
    gap:6px;
  }

  .btn-icon{
    width:20px;
    height:20px;
  }

  .menu-btn:nth-child(1){
    --x:-190px;
  }

  .menu-btn:nth-child(2){
    --x:-63px;
  }

  .menu-btn:nth-child(3){
    --x:63px;
  }

  .menu-btn:nth-child(4){
    --x:190px;
  }
}

@media(max-width:520px){
  .menu-btn{
    padding:5px 10px;
    font-size:10px;
    border-radius:12px;
  }

  .btn-icon{
    width:18px;
    height:18px;
    font-size:9px;
  }

  .menu-btn:nth-child(1){
    --x:-175px;
  }

  .menu-btn:nth-child(2){
    --x:-58px;
  }

  .menu-btn:nth-child(3){
    --x:58px;
  }

  .menu-btn:nth-child(4){
    --x:175px;
  }
}

.section-title {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
  cursor: default;
}

.section-title h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 16px;
  letter-spacing: 0px;
  line-height: 1.3;
}

.section-title p {
  color: #b8c0d4;
  line-height: 1.6;
  font-size: 15px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border-radius: 20px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(180deg, transparent, #00ffaa, transparent);
  border-radius: 3px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(0,255,170,0.25);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.card:hover::before {
  opacity: 1;
}

.card-step {
  font-size: 12px;
  font-weight: 700;
  color: rgba(0,255,170,0.35);
  letter-spacing: 0.08em;
  min-width: 28px;
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}

.card:hover .card-step {
  color: #00ffaa;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(0,255,170,0.08);
  border: 1px solid rgba(0,255,170,0.1);
  font-size: 22px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.card:hover .card-icon {
  background: rgba(0,255,170,0.16);
  border-color: #00ffaa;
  box-shadow: 0 0 30px rgba(0,255,170,0.12);
  transform: scale(1.06);
}

.card-info {
  flex: 1;
  min-width: 0;
}

.card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
  line-height: 1.3;
}

.card p {
  color: #b8c0d4;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.15);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.card:hover .card-arrow {
  color: #00ffaa;
  transform: translateX(6px);
}

/* ===== DLACZEGO WARTO – style bazowe ===== */

.benefits-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 20px;
}

.benefit-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: 100px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.benefit-badge::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(0,255,170,0.2), transparent, rgba(0,255,170,0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.benefit-badge:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(0,255,170,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 40px rgba(0,255,170,0.06);
}

.benefit-badge:hover::before {
  opacity: 1;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ffaa;
  box-shadow: 0 0 12px rgba(0,255,170,0.6);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.benefit-badge:hover .badge-dot {
  transform: scale(1.4);
  box-shadow: 0 0 20px rgba(0,255,170,0.8);
}

.badge-icon {
  font-size: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}

.benefit-badge:hover .badge-icon {
  transform: scale(1.15);
}

.badge-text {
  font-size: 14px;
  font-weight: 500;
  color: #f0f4ff;
  position: relative;
  z-index: 1;
}

/* ===== CENNIK ===== */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  padding: 34px;
  border-radius: 30px;
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.11);
  position: relative;
  transition: 0.35s;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: default;
}

.price-card.featured {
  border-color: rgba(0,255,170,0.55);
  transform: scale(1.04);
  box-shadow: 0 0 70px rgba(0,255,170,0.12);
}

.popular {
  position: absolute;
  top: -14px;
  right: 24px;
  background: #00ffaa;
  color: #06100d;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}

.price-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.price {
  font-size: 34px;
  font-weight: 800;
  margin: 18px 0;
  color: #00ffaa;
  line-height: 1.2;
}

.price small {
  font-size: 14px;
  color: #b8c0d4;
  line-height: 1.4;
  display: block;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 24px 0;
  color: #cdd5e8;
  font-size: 14px;
  line-height: 1.5;
}

.price-card li::before {
  content: "✓";
  color: #00ffaa;
  margin-right: 10px;
  font-weight: 700;
}

.cta {
  position: relative;
  overflow: hidden;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 7%;
  background: transparent;
}

/* Background warstwa */
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: ctaGlowFloat 14s ease-in-out infinite;
}

.cta-glow--1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 255, 170, 0.10);
  top: -8%;
  right: -3%;
  animation-delay: 0s;
}

.cta-glow--2 {
  width: 420px;
  height: 420px;
  background: rgba(80, 120, 255, 0.07);
  bottom: -8%;
  left: -3%;
  animation-delay: -5s;
}

.cta-glow--3 {
  width: 300px;
  height: 300px;
  background: rgba(0, 255, 170, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -10s;
  filter: blur(120px);
}

.cta-ring {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 170, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ctaRingRotate 30s linear infinite;
}

.cta-ring::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #00ffaa;
  border-radius: 50%;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(0, 255, 170, 0.5);
}

.cta-ring::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(80, 120, 255, 0.7);
  border-radius: 50%;
  bottom: -3px;
  right: 30%;
  box-shadow: 0 0 15px rgba(80, 120, 255, 0.4);
}

/* Content */
.cta-body {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 100px;
  background: rgba(0, 255, 170, 0.08);
  border: 1px solid rgba(0, 255, 170, 0.12);
  color: #00ffaa;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  position: relative;
}

.cta-tag::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(0,255,170,0.3), transparent, rgba(0,255,170,0.1));
  z-index: -1;
  opacity: 0.5;
  animation: ctaTagPulse 3s ease-in-out infinite;
}

.cta-heading {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #ffffff 50%, #70ffcf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  position: relative;
}

.cta-heading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: ctaShimmer 4s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.cta-desc {
  color: #b8c0d4;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 38px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #00ffaa, #70ffcf);
  color: #06100d;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 40px rgba(0, 255, 170, 0.15);
  position: relative;
  overflow: hidden;
}

.cta-action:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 70px rgba(0, 255, 170, 0.3);
}

.cta-action:active {
  transform: scale(0.97);
}

.cta-action svg {
  transition: transform 0.3s ease;
}

.cta-action:hover svg {
  transform: translateX(5px);
}

/* Keyframes */
@keyframes ctaGlowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -25px) scale(1.06); }
  50% { transform: translate(-25px, 35px) scale(0.94); }
  75% { transform: translate(25px, 20px) scale(1.02); }
}

@keyframes ctaRingRotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ctaTagPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

@keyframes ctaShimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -200% 0; }
}

footer {
  padding: 32px 7% 12px;
  text-align: center;
  color: #788299;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  line-height: 1.5;
  cursor: default;
}

/* ================================================================
   NOWY, ELEGANCKI MODAL Z EFEKTEM SZKŁA I NEONOWYMI AKCENTAMI
   ================================================================ */

/* ---- Modal overlay ---- */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
  animation: modalFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.modal.active {
  display: flex;
}

@keyframes modalFadeIn {
  0% { opacity: 0; transform: scale(0.94) translateY(16px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ---- Karta modala (szkło) ---- */
.modal-content {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  padding: 36px 32px 28px;
  border-radius: 28px;
  background: rgba(12, 18, 32, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 255, 170, 0.25) transparent;
  transition: box-shadow 0.3s ease;
}

.modal-content:hover {
  box-shadow: 0 50px 150px rgba(0, 0, 0, 0.8);
}

.modal-content::-webkit-scrollbar {
  width: 4px;
}
.modal-content::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 170, 0.3);
  border-radius: 4px;
}
.modal-content::-webkit-scrollbar-track {
  background: transparent;
}

/* ---- Dekoracyjne tło ---- */
.modal-glow {
  position: absolute;
  inset: -60px -40px;
  z-index: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(0, 255, 170, 0.08), transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(80, 120, 255, 0.06), transparent 50%);
  pointer-events: none;
  border-radius: 28px;
}

.modal-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  border-radius: 28px;
}

.modal-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(0, 255, 170, 0.15);
  border-radius: 50%;
  animation: particleFloat 12s infinite linear;
}

.modal-particles span:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; width: 8px; height: 8px; }
.modal-particles span:nth-child(2) { top: 20%; right: 10%; animation-delay: 2s; }
.modal-particles span:nth-child(3) { bottom: 30%; left: 15%; animation-delay: 4s; width: 10px; height: 10px; }
.modal-particles span:nth-child(4) { top: 60%; right: 5%; animation-delay: 1s; }
.modal-particles span:nth-child(5) { bottom: 10%; left: 40%; animation-delay: 3s; width: 7px; height: 7px; }
.modal-particles span:nth-child(6) { top: 40%; left: 25%; animation-delay: 5s; }
.modal-particles span:nth-child(7) { bottom: 15%; right: 25%; animation-delay: 2.5s; width: 9px; height: 9px; }
.modal-particles span:nth-child(8) { top: 5%; left: 60%; animation-delay: 4.5s; }
.modal-particles span:nth-child(9) { bottom: 40%; right: 15%; animation-delay: 1.5s; width: 5px; height: 5px; }
.modal-particles span:nth-child(10) { top: 75%; left: 80%; animation-delay: 3.5s; }

@keyframes particleFloat {
  0% { transform: translate(0, 0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translate(40px, -80px) scale(0.5); opacity: 0; }
}

/* ---- Przycisk zamknięcia ---- */
.modal-close {
  position: sticky;
  float: right;
  top: 0;
  right: 0;
  z-index: 5;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #00ffaa;
  transform: rotate(90deg) scale(1.05);
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

/* ---- Nagłówek modala ---- */
.modal-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 255, 170, 0.15), rgba(112, 255, 207, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ffaa;
  border: 1px solid rgba(0, 255, 170, 0.15);
  margin-bottom: 4px;
  cursor: default;
}

.modal-icon svg {
  width: 28px;
  height: 28px;
}

.modal-content h2 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin: 0;
}

.modal-subtitle {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

/* ---- Zakładki ---- */
.tabs {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px;
  border-radius: 14px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 1;
}

.tab {
  flex: 1;
  padding: 10px 14px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tab svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.tab:hover {
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

.tab.active {
  background: rgba(0, 255, 170, 0.1);
  color: #00ffaa;
  box-shadow: 0 0 20px rgba(0, 255, 170, 0.05);
}

/* ---- Formularze ---- */
form {
  display: none;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
}

form.active {
  display: flex;
}

/* ---- Floating input groups ---- */
.input-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.input-group .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.25s ease;
  pointer-events: none;
  z-index: 2;
  display: flex;
  align-items: center;
}

.input-group .input-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.input-group .input-icon.textarea-icon {
  top: 18px;
  transform: none;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 16px 14px 8px 44px;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  z-index: 1;
  resize: vertical;
  font-family: inherit;
  cursor: text;
}

.input-group textarea {
  padding-top: 18px;
  min-height: 80px;
  resize: vertical;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: #00ffaa;
}

.input-group label {
  position: absolute;
  left: 44px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.25s ease;
  pointer-events: none;
  z-index: 2;
  transform-origin: left center;
  cursor: default;
}

.input-group.textarea-group label {
  top: 18px;
  transform: none;
}

.input-group input:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
  top: 0;
  transform: translateY(0) scale(0.8);
  color: #00ffaa;
  left: 44px;
}

.input-group.textarea-group textarea:focus ~ label,
.input-group.textarea-group textarea:not(:placeholder-shown) ~ label {
  top: 0;
  transform: scale(0.8);
}

/* ---- Dolna kreska (animowana) ---- */
.input-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ffaa, #70ffcf);
  transition: width 0.35s ease;
  z-index: 2;
}

.input-group input:focus ~ .input-border,
.input-group textarea:focus ~ .input-border {
  width: 100%;
}

/* ---- Ikona walidacji ---- */
.input-valid-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #00ffaa;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.input-valid-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.input-group input:focus:valid ~ .input-valid-icon,
.input-group input:not(:placeholder-shown):valid ~ .input-valid-icon {
  opacity: 1;
}

/* ---- Licznik znaków ---- */
.char-counter {
  position: absolute;
  right: 12px;
  bottom: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  z-index: 2;
}

.char-counter span {
  color: rgba(255, 255, 255, 0.4);
}

/* ---- Newsletter badge ---- */
.newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 170, 0.08);
  padding: 6px 16px 6px 12px;
  border-radius: 999px;
  color: #00ffaa;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(0, 255, 170, 0.12);
  margin-bottom: 4px;
  align-self: flex-start;
  cursor: default;
}

.newsletter-badge svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.newsletter-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  line-height: 1.5;
  padding: 4px 0;
}

.newsletter-info svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* ---- Przycisk submit (z trzema stanami) ---- */
.btn-submit {
  position: relative;
  padding: 16px 28px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #00ffaa, #70ffcf);
  color: #06100d;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 30px rgba(0, 255, 170, 0.1);
  overflow: hidden;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-submit:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 0 50px rgba(0, 255, 170, 0.25);
}

.btn-submit:active {
  transform: scale(0.98);
}

.btn-submit .btn-text,
.btn-submit .btn-loading,
.btn-submit .btn-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.btn-submit .btn-text {
  opacity: 1;
}
.btn-submit .btn-loading {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: inherit;
  border-radius: inherit;
}
.btn-submit .btn-success {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: #00ffaa;
  border-radius: inherit;
  color: #06100d;
}

.btn-submit.loading .btn-text {
  opacity: 0;
  transform: scale(0.9);
}
.btn-submit.loading .btn-loading {
  opacity: 1;
}
.btn-submit.success .btn-text,
.btn-submit.success .btn-loading {
  opacity: 0;
  transform: scale(0.9);
}
.btn-submit.success .btn-success {
  opacity: 1;
}

.btn-submit svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
}

.spinner {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ---- Stopka modala ---- */
.modal-footer {
  margin-top: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.modal-shield {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  font-weight: 400;
  cursor: default;
}

.modal-shield svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

/* ---- Responsywność modala ---- */
/* ---- Ukrywanie placeholder'a (nie jest potrzebny, używamy floating label) ---- */
.input-group input::placeholder,
.input-group textarea::placeholder {
  color: transparent;
}

/* ===== PRELOADER ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: #03060c;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  opacity: 1;
  visibility: visible;
  cursor: default;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Tło */
#preloader .bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

#preloader .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  animation: pr-float 14s ease-in-out infinite;
}

#preloader .glow:nth-child(1) {
  width: 700px;
  height: 700px;
  background: #00ffe7;
  left: -180px;
  top: -180px;
}

#preloader .glow:nth-child(2) {
  width: 650px;
  height: 650px;
  background: #0066ff;
  right: -160px;
  bottom: -180px;
  animation-delay: -5s;
}

#preloader .glow:nth-child(3) {
  width: 500px;
  height: 500px;
  background: #00ffd0;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -9s;
  opacity: 0.18;
}

#preloader .grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle, #fff 20%, transparent 90%);
  animation: pr-gridMove 22s linear infinite;
}

/* Loader */
#preloader .loader {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pr-breathe 4s ease-in-out infinite;
}

/* Pierścienie */
#preloader .ring {
  position: absolute;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      transparent,
      rgba(0, 255, 220, .9),
      transparent,
      rgba(0, 120, 255, .9),
      transparent);
  animation: pr-rotate 6s linear infinite;
  filter: blur(.3px);
}

#preloader .ring::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #03060c;
  box-shadow: 0 0 70px rgba(0, 255, 220, .08) inset;
}

#preloader .ring2 {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .05);
  animation: pr-spin2 18s linear infinite;
}

#preloader .ring2::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #00ffe5;
  border-radius: 50%;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 25px #00ffe5, 0 0 70px #00ffe5;
}

/* Logo */
#preloader .logo {
  perspective: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pr-logoContainer 5s ease-in-out infinite;
}

#preloader .logo img {
  width: 220px;
  height: auto;
  display: block;
  animation: pr-logoSpin 7s ease-in-out infinite;
  filter:
    drop-shadow(0 0 15px rgba(0, 255, 255, 0.5))
    drop-shadow(0 0 50px rgba(0, 200, 255, 0.25));
  transition: filter 0.3s;
  will-change: transform, filter;
}

/* Scan line */
#preloader .scan {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00fff0, transparent);
  top: 50%;
  filter: blur(1px);
  animation: pr-scan 3s ease-in-out infinite;
}

/* Loading text */
#preloader .loading {
  position: absolute;
  bottom: -65px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: #b5ffff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.5), 0 0 25px rgba(0, 200, 255, 0.2);
  opacity: 0.85;
  animation: pr-flicker 2.2s ease-in-out infinite;
  white-space: nowrap;
  background: linear-gradient(90deg, #b5ffff, #7ae0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Cząsteczki */
#preloader .particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #00ffe7;
  border-radius: 50%;
  box-shadow: 0 0 12px #00ffe7;
  animation: pr-particle linear infinite;
  opacity: 0;
}

/* Keyframes */
@keyframes pr-rotate {
  100% { transform: rotate(360deg); }
}

@keyframes pr-spin2 {
  100% { transform: rotate(-360deg); }
}

@keyframes pr-logoContainer {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.97); }
}

@keyframes pr-logoSpin {
  0% {
    transform: rotateY(-8deg) translateY(0) scale(1);
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5)) drop-shadow(0 0 50px rgba(0, 200, 255, 0.25));
  }
  50% {
    transform: rotateY(8deg) translateY(-12px) scale(1.04);
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.9)) drop-shadow(0 0 80px rgba(0, 200, 255, 0.5));
  }
  100% {
    transform: rotateY(-8deg) translateY(0) scale(1);
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5)) drop-shadow(0 0 50px rgba(0, 200, 255, 0.25));
  }
}

@keyframes pr-scan {
  0%, 100% { transform: translateY(-90px); opacity: 0; }
  50% { transform: translateY(90px); opacity: 0.9; }
}

@keyframes pr-flicker {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 0.4; }
}

@keyframes pr-float {
  50% { transform: translateY(70px); }
}

@keyframes pr-gridMove {
  100% { background-position: 60px 60px; }
}

@keyframes pr-particle {
  0% { transform: translateY(140px) scale(0.4); opacity: 0; }
  20% { opacity: 0.8; }
  100% { transform: translateY(-300px) scale(1.6); opacity: 0; }
}

@keyframes pr-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.98); }
}

/* ===== MEDIA QUERIES ===== */
.hero .reveal {
  max-width: 700px;
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes wordReveal {
  0% { opacity: 0; transform: perspective(800px) rotateX(90deg) translateZ(-40px); }
  100% { opacity: 1; transform: perspective(800px) rotateX(0) translateZ(0); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes floatShapeFast {
  0%, 100% { transform: translate(-50%,-50%) translateY(0) scale(1); }
  50% { transform: translate(-50%,-50%) translateY(-30px) scale(1.05); }
}

@keyframes floatShapeSlow {
  0%, 100% { transform: translate(-50%,-50%) translateY(0) scale(1); }
  50% { transform: translate(-50%,-50%) translateY(-50px) scale(1.08); }
}




