/* ==============================================
   ASUMPT — CYBER-PUNK CLEAN INTERFACE
   Granat #040F21 + neony (cyan / pomarańcz / fiolet)
   ============================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:       #040F21;
  --bg-card:  rgba(11, 34, 64, 0.35);
  --text:     #E2E8F0;
  --muted:    #94A3B8;
  --cyan:     #00BFFF;
  --orange:   #FB923C;
  --purple:   #C084FC;
  --white:    #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  padding: 65px 20px 20px 20px;
}

.app-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Ukryty wizualnie, ale czytany przez Google i czytniki ekranu (nagłówki kart) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== TŁO NEONOWE ===== */
.cyber-bg {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 1; pointer-events: none; opacity: 0.4;
}
.neon-line { position: absolute; border-radius: 50%; border: 2px solid transparent; }
.line-1 { top: 10%; left: -10%; width: 120%; height: 40%;
  border-top: 2px solid rgba(0,191,255,0.2); transform: rotate(-5deg); }
.line-2 { bottom: 10%; left: -10%; width: 120%; height: 40%;
  border-top: 2px solid rgba(251,146,60,0.15); transform: rotate(5deg); }

/* ===== PASEK NAWIGACYJNY ===== */
.cyber-nav {
  position: fixed; top: 0; left: 0; width: 100%; height: 65px;
  background: rgba(4,15,33,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 100;
}
.nav-container {
  max-width: 1300px; height: 100%; margin: 0 auto; padding: 0 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-logo-wrapper { height: 56px; display: flex; align-items: center; }
.nav-logo-img { height: 54px; width: auto; display: block; }
.nav-actions { display: flex; gap: 18px; align-items: center; }

.nav-link-text {
  color: var(--muted); text-decoration: none; font-size: 0.85rem;
  font-weight: 600; transition: color 0.2s;
}
.nav-link-text:hover { color: var(--cyan); }

/* ===== PRZYCISKI ===== */
.btn { text-decoration: none; font-weight: 600; transition: all 0.2s; display: inline-block; }
.btn-cyber-sm {
  padding: 7px 15px; border-radius: 6px; font-size: 0.8rem; color: var(--white);
  background: linear-gradient(135deg, #EA580C 0%, #A855F7 100%);
}
.btn-cyber-sm:hover { box-shadow: 0 0 15px rgba(234,88,12,0.4); }

.btn-cyber-lg {
  padding: 13px 26px; border-radius: 8px; font-size: 1rem; color: var(--white);
  background: linear-gradient(135deg, #EA580C 0%, #A855F7 100%);
}
.btn-cyber-lg:hover { box-shadow: 0 0 22px rgba(234,88,12,0.45); transform: translateY(-2px); }

.btn-outline-lg {
  padding: 13px 26px; border-radius: 8px; font-size: 1rem; color: var(--white);
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.02);
}
.btn-outline-lg:hover { background: rgba(255,255,255,0.08); border-color: rgba(0,191,255,0.4); }

/* ===== HERO (TEKST + ZDJĘCIE SKLEPU) ===== */
.hero-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center; padding: 45px 0 30px 0;
}
.brand-row { display: flex; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }

.cyber-badge, .location-badge {
  background: rgba(255,255,255,0.02); padding: 5px 13px; border-radius: 6px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 1px;
  border: 1px solid rgba(192,132,252,0.4); color: var(--purple);
}
.location-badge { border-color: rgba(251,146,60,0.4); color: var(--orange); }
.location-badge-link { text-decoration: none; display: inline-block; transition: transform 0.2s; }
.location-badge-link:hover { transform: scale(1.05); }

.main-title-mega {
  font-size: 4.5rem; font-weight: 800; letter-spacing: 6px; color: var(--white);
  margin-bottom: 12px; line-height: 1; text-shadow: 0 0 20px rgba(255,255,255,0.1);
}
.single-line-sub {
  font-size: 1.7rem; font-weight: 800; color: var(--white);
  margin-bottom: 16px; line-height: 1.2;
}
.neon-text {
  background: linear-gradient(90deg, var(--orange) 0%, var(--purple) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub { color: var(--muted); font-size: 1.05rem; line-height: 1.6; margin-bottom: 26px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-image-wrapper {
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,191,255,0.06);
}
.hero-image { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== NAGŁÓWKI SEKCJI ===== */
.section-head { text-align: center; max-width: 700px; margin: 0 auto 30px auto; padding-top: 40px; }
.section-title { font-size: 2.2rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.section-desc { color: var(--muted); font-size: 1rem; line-height: 1.6; }

/* ===== SIATKA KART USŁUG ===== */
.cyber-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px; padding: 10px 0;
}
.cyber-card {
  position: relative; background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05); border-radius: 14px;
  overflow: hidden; backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
}
.cyber-card:hover {
  transform: translateY(-4px); border-color: rgba(0,191,255,0.3);
  box-shadow: 0 14px 34px rgba(0,191,255,0.1);
}
/* Cała grafika kategorii widoczna — bez przycinania (napis wypalony na obrazku musi być w kadrze) */
.card-photo { width: 100%; background: #0a1a30; }
.card-photo img {
  width: 100%; height: auto; display: block;
}

.card-content { padding: 18px 24px 24px 24px; }
.card-status {
  font-size: 0.65rem; font-weight: 600; color: var(--muted);
  letter-spacing: 1px; margin-bottom: 10px;
  display: flex; align-items: center; gap: 7px;
}
.pulse-dot { width: 6px; height: 6px; border-radius: 50%; }
.dot-blue   { background: var(--cyan);   box-shadow: 0 0 6px var(--cyan); }
.dot-orange { background: var(--orange); box-shadow: 0 0 6px var(--orange); }
.dot-purple { background: var(--purple); box-shadow: 0 0 6px var(--purple); }

.cyber-card h3 { font-size: 1.25rem; color: var(--white); margin-bottom: 10px; font-weight: 600; }
.cyber-card p  { color: var(--muted); font-size: 0.92rem; line-height: 1.55; }

/* ===== KARTA QR (szeroki pasek na 2 kafle) ===== */
.qr-card-style { border-color: rgba(192,132,252,0.15); display: flex; align-items: center; }
.qr-card-style:hover { border-color: rgba(192,132,252,0.4); box-shadow: 0 14px 34px rgba(192,132,252,0.12); }
/* Rozciągnięcie na 2 kolumny siatki — domyka ostatni rząd (10. kategoria + pasek QR) */
.qr-card-wide { grid-column: span 2; }
.qr-card-layout { display: flex; align-items: center; gap: 28px; padding: 26px 34px; width: 100%; }
.qr-image-wrapper {
  background: var(--white); padding: 10px; border-radius: 10px; flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.qr-card-img { width: 160px; height: 160px; display: block; }

/* ===== SEKCJA "DLACZEGO MY" ===== */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.why-item {
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px; padding: 26px 24px; backdrop-filter: blur(8px);
}
.why-num {
  font-size: 2.2rem; font-weight: 800; margin-bottom: 12px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.why-item h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 8px; font-weight: 600; }
.why-item p  { color: var(--muted); font-size: 0.9rem; line-height: 1.55; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; margin-bottom: 12px; padding: 0 22px;
  backdrop-filter: blur(8px); transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(0,191,255,0.25); }
.faq-item summary {
  cursor: pointer; padding: 18px 0; font-size: 1.05rem; font-weight: 600;
  color: var(--white); list-style: none; position: relative; padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 16px;
  font-size: 1.5rem; color: var(--cyan); transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; padding: 0 0 20px 0; }

/* ===== MAPA ===== */
.map-wrapper {
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
  filter: saturate(0.9);
}
.map-wrapper iframe { display: block; }

/* ===== STOPKA ===== */
.cyber-footer {
  margin-top: 60px; border-top: 1px solid rgba(255,255,255,0.08); padding: 28px 0 10px 0;
}
.footer-dash {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px;
  font-size: 0.95rem; color: var(--white); margin-bottom: 20px;
}
.footer-dash strong { color: var(--cyan); letter-spacing: 0.5px; font-weight: 800; margin-right: 4px; }
.footer-link { color: var(--text); text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--cyan); }
.footer-copy { color: rgba(255,255,255,0.25); font-size: 0.78rem; text-align: center; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.04); }

/* ===== MOBILNOŚĆ ===== */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; gap: 26px; }
  .hero-image-wrapper { order: -1; }
  .main-title-mega { font-size: 3.4rem; }
}
@media (max-width: 768px) {
  body { padding-top: 80px; }
  .main-title-mega { font-size: 3rem; letter-spacing: 4px; }
  .single-line-sub { font-size: 1.35rem; }
  .section-title { font-size: 1.8rem; }
  .nav-link-text { display: none; }
  .nav-logo-img { height: 46px; }
  .footer-dash { flex-direction: column; gap: 12px; }
  .qr-card-layout { flex-direction: column; text-align: center; }
  .card-status { justify-content: center; }
}

/* Gdy siatka schodzi do 1 kolumny — pasek QR wraca do pełnej szerokości pojedynczej karty */
@media (max-width: 719px) {
  .qr-card-wide { grid-column: span 1; }
}
