/* ============================================================
   SklepiX — ERAZER XP6
   style.css | Mobile-first | CSS3 | Bez frameworków
   ============================================================ */

/* ============================================================
   1. ZMIENNE CSS (Design Tokens)
   ============================================================ */
:root {
  /* Tła */
  --bg-primary:    #0A0A0A;
  --bg-secondary:  #111111;
  --bg-card:       #161616;
  --bg-glass:      rgba(255,255,255,0.04);

  /* Kolory marki */
  --orange:        #FF6B00;
  --orange-hover:  #E65C00;
  --orange-glow:   rgba(255,107,0,0.15);
  --red:           #CC0000;
  --red-soft:      rgba(204,0,0,0.12);

  /* Tekst */
  --text-primary:  #F0F0F0;
  --text-secondary:#A0A0A0;
  --text-muted:    #555555;

  /* Obramowania */
  --border:        rgba(255,107,0,0.15);
  --border-strong: rgba(255,107,0,0.4);

  /* Typografia */
  --font-main:     'Sora', sans-serif;
  --font-mono:     'Space Mono', monospace;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --radius:        12px;
  --radius-lg:     20px;

  /* Gradienty */
  --gradient-cta:  linear-gradient(135deg, #FF6B00, #CC0000);
  --gradient-hero: radial-gradient(ellipse at 60% 50%, rgba(255,107,0,0.08) 0%, transparent 70%);
}

/* ============================================================
   2. CSS RESET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* ============================================================
   3. TYPOGRAFIA
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.mono {
  font-family: var(--font-mono);
}

/* ============================================================
   4. UKŁAD / LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: var(--section-padding);
  position: relative;
}

.section-bg-alt {
  background-color: var(--bg-secondary);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
}

/* ============================================================
   5. KOMPONENTY POMOCNICZE
   ============================================================ */

/* Przyciski */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-main);
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-cta);
  color: #fff;
  box-shadow: 0 0 30px rgba(255,107,0,0.3), 0 4px 20px rgba(0,0,0,0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 45px rgba(255,107,0,0.45), 0 8px 30px rgba(0,0,0,0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-glow);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
}

.btn-outline:hover {
  background: var(--orange);
  color: #fff;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 20px 48px;
  font-size: 1.125rem;
  border-radius: var(--radius-lg);
}

/* Badge */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-orange {
  background: var(--orange-glow);
  color: var(--orange);
  border: 1px solid rgba(255,107,0,0.3);
}

.badge-green {
  background: rgba(0,200,80,0.12);
  color: #00c850;
  border: 1px solid rgba(0,200,80,0.25);
}

/* Karta glass */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 8px 40px rgba(255,107,0,0.08);
  transform: translateY(-4px);
}

.card-glass {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Ikony */
.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--orange-glow);
  border: 1px solid rgba(255,107,0,0.2);
  margin-bottom: 20px;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.icon-lg {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  font-size: 1.8rem;
}

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-strong), transparent);
  margin: 0;
}

/* ============================================================
   6. ANIMACJE
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* Pulowanie */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255,107,0,0.2); }
  50%       { box-shadow: 0 0 40px rgba(255,107,0,0.4); }
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes countUp {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

/* ============================================================
   7. NAWIGACJA
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--orange);
}

.nav-logo img {
  height: 36px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  flex-shrink: 0;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 24px 20px;
  flex-direction: column;
  gap: 20px;
}

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

.nav-mobile a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile .btn {
  text-align: center;
  margin-top: 8px;
}

/* ============================================================
   8. HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}

.hero-grid {
  display: flex;
  flex-direction: column-reverse;
  gap: 48px;
  align-items: center;
}

.hero-content {
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-glow);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
  box-shadow: 0 0 0 3px rgba(255,107,0,0.2);
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s 0.1s ease both;
}

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

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 32px;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-price-block {
  margin-bottom: 32px;
  animation: fadeInUp 0.6s 0.25s ease both;
}

.hero-price {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-primary);
  font-family: var(--font-mono);
}

.hero-price-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 36px;
  animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
  animation: fadeInUp 0.6s 0.4s ease both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.trust-item .trust-icon {
  font-size: 1rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease both;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 0 80px rgba(255,107,0,0.12);
  aspect-ratio: 1 / 1;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.85rem;
  min-height: 360px;
}

.hero-image-placeholder .ph-icon {
  font-size: 4rem;
  opacity: 0.4;
}

.hero-float-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
}

.hero-float-1 {
  bottom: 24px;
  left: -20px;
  animation: float 4s ease-in-out infinite;
}

.hero-float-2 {
  top: 24px;
  right: -20px;
  animation: float 4s 2s ease-in-out infinite;
}

/* Particle canvas */
#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

/* ============================================================
   9. PASEK ZAUFANIA (Trust Bar)
   ============================================================ */
.trust-bar {
  padding: 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 0;
}

.trust-bar-inner::-webkit-scrollbar {
  display: none;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 36px;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
  white-space: nowrap;
}

.trust-bar-item:last-child {
  border-right: none;
}

.trust-bar-icon {
  font-size: 1.4rem;
  color: var(--orange);
}

.trust-bar-text strong {
  display: block;
  font-size: 1.1rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-primary);
}

.trust-bar-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   10. PROBLEM / ROZWIĄZANIE
   ============================================================ */
.problem-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-cta);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.problem-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,107,0,0.08);
}

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

.problem-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.problem-text {
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.solution-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 8px;
}

.solution-text {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ============================================================
   11. JAK TO DZIAŁA (Steps)
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
}

.step:hover {
  border-color: var(--border-strong);
  box-shadow: 0 8px 32px rgba(255,107,0,0.07);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(255,107,0,0.3);
}

.step-content h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.step-content p {
  font-size: 0.92rem;
  margin: 0;
}

/* ============================================================
   12. CECHY PRODUKTU (Feature Grid)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(255,107,0,0.1);
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,107,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.feature-headline {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--font-mono);
}

.feature-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.feature-card .badge {
  font-size: 0.68rem;
}

/* ============================================================
   13. SPECYFIKACJA TECHNICZNA
   ============================================================ */
.specs-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

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

.specs-table table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table tr:hover {
  background: rgba(255,107,0,0.03);
}

.specs-table td {
  padding: 12px 20px;
  font-size: 0.9rem;
}

.specs-table td:first-child {
  color: var(--text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: 45%;
}

.specs-table td:last-child {
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.88rem;
}

.specs-contents {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 20px;
}

.specs-contents h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 16px;
}

.specs-contents-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.specs-contents-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.specs-contents-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
}

/* ============================================================
   14. STATYSTYKI (Stats)
   ============================================================ */
.stats-section {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-item {
  background: var(--bg-secondary);
  padding: 40px 24px;
  text-align: center;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   15. OPINIE KLIENTÓW
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Mobile: horizontal scroll / slider */
.reviews-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 85vw;
  max-width: 340px;
}

.review-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 8px 32px rgba(255,107,0,0.06);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.avatar-orange { background: rgba(255,107,0,0.2); color: var(--orange); }
.avatar-red    { background: rgba(204,0,0,0.2); color: #ff4444; }
.avatar-blue   { background: rgba(0,100,255,0.2); color: #4488ff; }
.avatar-green  { background: rgba(0,180,80,0.2); color: #00c850; }
.avatar-purple { background: rgba(130,0,255,0.2); color: #aa44ff; }
.avatar-teal   { background: rgba(0,180,160,0.2); color: #00b4a0; }

.review-meta {
  flex: 1;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-stars {
  font-size: 0.85rem;
  color: #FFB800;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #00c850;
  background: rgba(0,200,80,0.1);
  border: 1px solid rgba(0,200,80,0.2);
  border-radius: 100px;
  padding: 3px 10px;
}

.review-badge::before {
  content: '✓';
  font-size: 0.65rem;
}

/* Scroll indicators */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.reviews-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: all 0.3s;
  cursor: pointer;
}

.reviews-dot.active {
  background: var(--orange);
  width: 20px;
  border-radius: 3px;
}

/* ============================================================
   16. GWARANCJE ZAUFANIA
   ============================================================ */
.trust-guarantees {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.guarantee-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
}

.guarantee-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 8px 32px rgba(255,107,0,0.08);
}

.guarantee-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.guarantee-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.guarantee-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.guarantee-link {
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 500;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.guarantee-link:hover {
  color: var(--orange-hover);
  text-decoration: underline;
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.payment-logo {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

/* ============================================================
   17. FINALNE CTA
   ============================================================ */
.final-cta-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,107,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Timer */
.promo-timer {
  display: inline-block;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  margin-bottom: 40px;
  animation: pulse-glow 3s infinite;
}

.timer-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.timer-digits {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.timer-number {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--orange);
  min-width: 56px;
  background: var(--bg-primary);
  border-radius: 8px;
  padding: 8px;
  line-height: 1;
}

.timer-unit-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.timer-sep {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
}

/* Stock counter */
.stock-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-soft);
  border: 1px solid rgba(204,0,0,0.3);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ff4444;
  margin-bottom: 32px;
}

.stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff4444;
  animation: pulse-glow 1.5s infinite;
  box-shadow: 0 0 0 3px rgba(255,68,68,0.2);
}

/* CTA price */
.cta-price-block {
  margin: 28px 0;
}

.cta-price-old {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.cta-price-current {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--text-primary);
}

.cta-price-save {
  display: inline-block;
  background: rgba(255,107,0,0.12);
  color: var(--orange);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 8px;
}

.cta-price-intro {
  font-size: 0.85rem;
  color: var(--orange);
  margin: 4px 0;
}

.cta-price-future {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.cta-btn-wrap {
  margin: 28px auto;
  max-width: 380px;
}

.cta-btn-wrap .btn {
  width: 100%;
  font-size: 1.1rem;
  padding: 20px 32px;
}

.cta-micro {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.cta-payment-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

/* ============================================================
   18. FAQ
   ============================================================ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: var(--border-strong);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: color 0.2s;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-main);
}

.faq-question:hover {
  color: var(--orange);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--orange);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer-inner {
  padding: 0 24px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer-inner a {
  color: var(--orange);
  text-decoration: underline;
}

/* ============================================================
   19. FOOTER
   ============================================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.footer-main {
  padding: 64px 0 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin: 12px 0;
  max-width: 260px;
}

.footer-email {
  font-size: 0.85rem;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--text-primary);
}

.footer-security {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   20. STICKY MOBILE BAR
   ============================================================ */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-price {
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--text-primary);
}

.sticky-price small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-main);
  font-weight: 400;
}

.sticky-bar .btn {
  flex-shrink: 0;
  padding: 12px 24px;
  font-size: 0.9rem;
}

/* ============================================================
   21. STRONA DZIĘKUJEMY
   ============================================================ */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.thankyou-card {
  max-width: 600px;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
}

.checkmark-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0,200,80,0.12);
  border: 2px solid rgba(0,200,80,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2.5rem;
  animation: fadeInUp 0.6s ease both;
}

.thankyou-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
  margin: 36px 0;
}

.thankyou-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 20px;
}

.thankyou-step .step-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.thankyou-step h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.thankyou-step p {
  font-size: 0.85rem;
  margin: 0;
}

.app-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.2s;
}

.app-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ============================================================
   22. FORMULARZ ZWROTU
   ============================================================ */
.form-page {
  min-height: 100vh;
  padding: 120px 20px 60px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.form-header {
  margin-bottom: 40px;
}

.info-box {
  background: rgba(255,107,0,0.07);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 32px;
}

.info-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.form-section {
  margin-bottom: 36px;
}

.form-section-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group label .required {
  color: var(--orange);
  margin-left: 3px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-family: var(--font-main);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}

.form-input:disabled {
  color: var(--text-muted);
  cursor: not-allowed;
}

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

.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-radio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.form-radio input[type="radio"] {
  accent-color: var(--orange);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  accent-color: var(--orange);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-checkbox a {
  color: var(--orange);
  text-decoration: underline;
}

.form-success {
  display: none;
  text-align: center;
  background: rgba(0,200,80,0.08);
  border: 1px solid rgba(0,200,80,0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-success.show {
  display: block;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

/* ============================================================
   23. FOCUS STYLES (Dostępność)
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   24. MEDIA QUERIES — TABLET (768px+)
   ============================================================ */
@media (min-width: 768px) {

  .nav-hamburger {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .hero-grid {
    flex-direction: row;
    gap: 60px;
  }

  .hero-content {
    text-align: left;
    flex: 1;
  }

  .hero-badge {
    animation-delay: 0s;
  }

  .hero-ctas {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .hero-trust {
    justify-content: flex-start;
  }

  .hero-visual {
    flex: 1;
    max-width: none;
  }

  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .problem-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .specs-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Reviews: switch to grid on tablet */
  .reviews-slider {
    display: none;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .review-card {
    width: auto;
    max-width: none;
    scroll-snap-align: unset;
    flex-shrink: unset;
  }

  .reviews-dots {
    display: none;
  }

  .trust-guarantees {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .trust-bar-inner {
    overflow-x: visible;
    justify-content: center;
  }

  .sticky-bar {
    display: none !important;
  }
}

/* ============================================================
   25. MEDIA QUERIES — DESKTOP (1024px+)
   ============================================================ */
@media (min-width: 1024px) {

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .step {
    flex-direction: column;
    text-align: center;
    align-items: flex-start;
  }

  .trust-guarantees {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   26. MOBILE STICKY BAR (pokazuj tylko na mobile)
   ============================================================ */
@media (max-width: 767px) {
  .sticky-bar {
    display: flex;
  }

  body {
    padding-bottom: 80px;
  }

  /* Mobile: reviews jako slider */
  .reviews-grid {
    display: none;
  }
}

/* ============================================================
   27. WIDE (1200px+)
   ============================================================ */
@media (min-width: 1200px) {
  .container {
    padding: 0 40px;
  }
}

/* ============================================================
   28. DARK SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orange);
}

/* ============================================================
   30. VIEWER 360°
   ============================================================ */
.viewer-360 {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  background: radial-gradient(ellipse at 50% 55%, rgba(255,107,0,0.05) 0%, transparent 68%);
  border-radius: var(--radius-lg);
  overflow: visible;
  user-select: none;
  -webkit-user-select: none;
}

.viewer-360__canvas {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  cursor: grab;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.viewer-360__canvas.loaded {
  opacity: 1;
}

.viewer-360__canvas.dragging {
  cursor: grabbing;
}

.viewer-360__spinner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 4;
}

.viewer-360__spinner.hidden {
  display: none;
}

.v360-ring {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255,107,0,0.15);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: v360-spin 0.9s linear infinite;
  box-shadow: 0 0 16px rgba(255,107,0,0.18);
}

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

.v360-progress-track {
  width: 130px;
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 99px;
  overflow: hidden;
}

.v360-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), #ffaa33);
  border-radius: 99px;
  transition: width 0.15s linear;
  box-shadow: 0 0 8px rgba(255,107,0,0.55);
}

.viewer-360__autorotate {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--orange);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 5;
  box-shadow: 0 2px 8px rgba(255,107,0,0.4);
}

.viewer-360__autorotate:hover {
  opacity: 1;
  transform: scale(1.08);
}

.viewer-360__autorotate.paused {
  opacity: 0.45;
}

.viewer-360__hint {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.05em;
  transition: opacity 0.4s;
  pointer-events: none;
}

.viewer-360__hint.hidden {
  opacity: 0;
}

.viewer-hint {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
  transition: opacity 0.4s ease;
  letter-spacing: 0.05em;
}

/* ============================================================
   29. PRINT
   ============================================================ */
@media print {
  .nav, .sticky-bar, .hero-float-1, .hero-float-2 {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }
}

/* ============================================================
   FREE SHIPPING BANNER
   ============================================================ */
.free-shipping-banner {
  display: inline-block;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.4);
  color: #FF6B00;
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111111;
  border-top: 1px solid #FF6B00;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  font-family: 'Sora', sans-serif;
}

#cookie-banner p {
  color: #A0A0A0;
  font-size: 13px;
  margin: 0;
}

#cookie-banner a {
  color: #FF6B00;
  text-decoration: underline;
}

#cookie-banner button {
  background: #FF6B00;
  color: #F0F0F0;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
}
