    :root {
  --bg-main: #0a0f2e;
  --bg-secondary: #0d1335;
  --accent: #3b82f6;
  --accent-soft: #8b5cf6;
  --text-main: #e5e7eb;
  --text-muted: #a1a1aa;
  --gradient: linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899);
  --danger: #ef4444;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  cursor: default; /* domyślny systemowy kursor */
}

/* Custom cursor removed - using system cursor */

/* URGENCY BANNER */
.urgency-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--danger);
  color: white;
  text-align: center;
  padding: 10px;
  z-index: 100;
  font-weight: bold;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

#stars, #stars2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  will-change: transform;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  will-change: transform, opacity;
}

.star-layer1 {
  animation: twinkle 5s infinite ease-in-out;
}

.star-layer2 {
  animation: twinkleSlow 8s infinite ease-in-out;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes twinkleSlow {
  0%, 100% { opacity: 0.1; transform: scale(0.6); }
  50% { opacity: 0.7; transform: scale(1); }
}

/* ANIMACJE WEJŚCIA Z PŁYNNYM EASING */
.fade-in-up {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.fade-in-up.animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.fade-in-left {
  opacity: 0;
  transform: translate3d(-50px, 0, 0);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.fade-in-left.animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.fade-in-right {
  opacity: 0;
  transform: translate3d(50px, 0, 0);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.fade-in-right.animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.slide-in-left {
  opacity: 0;
  transform: translate3d(-100px, 0, 0);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.slide-in-left.animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Opóźnienia */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* PULSOWANIE Z PŁYNNYM EASING */
.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  will-change: box-shadow, transform;
}

@keyframes pulse {
  0% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.5); transform: scale(1); }
  50% { box-shadow: 0 0 70px rgba(139, 92, 246, 0.9); transform: scale(1.03); }
  100% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.5); transform: scale(1); }
}

/* BIG PULSE dla finale */
.big.pulse {
  animation: pulseBig 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseBig {
  0% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.6); transform: scale(1); }
  50% { box-shadow: 0 0 100px rgba(139, 92, 246, 1); transform: scale(1.05); }
  100% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.6); transform: scale(1); }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

/* HEADER */
header {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0 40px;
}

header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 15px;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.4rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* STATS BAR */
.stats-bar {
  display: flex;
  justify-content: space-around;
  margin: 40px 0;
  padding: 25px;
  background: rgba(13, 19, 53, 0.7);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.stat-item {
  text-align: center;
  min-width: 150px;
}

.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--accent);
  text-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* BENEFIT BOX */
.benefit-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(59, 130, 246, 0.2));
  border: 2px solid rgba(239, 68, 68, 0.5);
  border-radius: 15px;
  padding: 20px;
  margin: 30px auto;
  max-width: 500px;
  font-size: 1.1rem;
  font-weight: bold;
  animation: glowRed 3s ease-in-out infinite;
}

@keyframes glowRed {
  0%, 100% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.3); }
  50% { box-shadow: 0 0 40px rgba(239, 68, 68, 0.6); }
}

/* PHONE */
.phone-wrapper {
  margin: 40px 0;
}

.phone {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.phone:hover {
  transform: scale3d(1.1, 1.1, 1) translate3d(0, -5px, 0);
  text-shadow: 0 0 40px rgba(139, 92, 246, 1);
}

.price-tag {
  color: var(--accent-soft);
  font-size: 1.2rem;
  margin-top: 10px;
  font-weight: bold;
}

/* CTA BUTTON */
.cta-button {
  display: inline-block;
  padding: 20px 50px;
  background: var(--gradient);
  color: white !important;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 20px;
  text-transform: uppercase;
  will-change: transform, box-shadow;
}

.cta-button:hover {
  transform: translate3d(0, -5px, 0) scale3d(1.05, 1.05, 1);
  box-shadow: 0 0 80px rgba(139, 92, 246, 0.9);
}

.disclaimer {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* SEKCJE */
section {
  padding: 100px 0;
}

section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 50px;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--bg-secondary);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.3;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial-card strong {
  color: var(--accent-soft);
}

/* ABOUT */
.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
  font-size: 1.2rem;
}

.about-text p {
  margin-bottom: 20px;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-secondary);
  padding: 35px;
  border-radius: 25px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, box-shadow;
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--accent);
}

/* GLOW HOVER EFFECT */
.glow-hover:hover {
  transform: translate3d(0, -10px, 0) scale3d(1.02, 1.02, 1);
  box-shadow: 
    0 0 30px rgba(59, 130, 246, 0.4),
    0 0 60px rgba(139, 92, 246, 0.3);
  border-color: var(--accent-soft);
}

/* FOMO CTA */
.fomo-cta {
  background: linear-gradient(135deg, var(--bg-secondary), rgba(239, 68, 68, 0.1));
  padding: 120px 0;
  text-align: center;
  border-top: 2px solid rgba(239, 68, 68, 0.5);
  border-bottom: 2px solid rgba(239, 68, 68, 0.5);
}

.fomo-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.fomo-cta p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: var(--text-muted);
}

/* FAQ */
.faq-item {
  margin-bottom: 20px;
  background: var(--bg-secondary);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.faq-item:hover {
  transform: translate3d(5px, 0, 0);
  border-left: 3px solid var(--accent);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.1rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '▼';
  transition: transform 0.3s;
}

.faq-question.active::after {
  transform: rotate(180deg);
}

.faq-question:hover {
  background: rgba(59, 130, 246, 0.1);
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--text-muted);
}

/* REGULATIONS */
.regulation-text {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(13, 19, 53, 0.4);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.regulation-text ol {
  padding-left: 20px;
}

.regulation-text li {
  margin-bottom: 15px;
}

/* FOOTER */
footer {
  padding: 60px 20px;
  background: var(--bg-secondary);
  text-align: center;
}

footer a {
  color: var(--accent);
  margin: 0 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

footer a:hover {
  color: var(--accent-soft);
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.footer-warning {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* STICKY CALL */
.sticky-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gradient);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  display: none;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.sticky-call:hover {
  transform: scale3d(1.1, 1.1, 1) translate3d(0, -5px, 0);
}

@media (max-width: 768px) {
  header { padding: 80px 0 40px; }
  header h1 { font-size: clamp(2rem, 6vw, 3rem); }
  .phone { font-size: clamp(2rem, 6vw, 3rem); }
  .stats-bar { flex-direction: column; gap: 20px; }
  .sticky-call { display: block; font-size: 1rem; padding: 12px 20px; }
  .cta-button { font-size: 1.2rem; padding: 18px 30px; }
  section { padding: 70px 0; }
}
