:root{
  --bg: #070b10;
  --bg2: #0a1017;
  --text: rgba(234,240,246,.92);
  --muted: rgba(234,240,246,.70);
  --border: rgba(234,240,246,.10);
  --card: rgba(18,24,33,.55);

  --accent: rgba(24,224,255,1);
  --shadow: 0 18px 48px rgba(0,0,0,.22);
  --radius: 22px;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }

/* ✅ FIX: tło na całej stronie, zawsze */
html{
  background:
    radial-gradient(1100px 520px at 30% 0%, rgba(24,224,255,.08), transparent),
    radial-gradient(1000px 520px at 100% 0%, rgba(24,224,255,.05), transparent),
    linear-gradient(180deg, var(--bg), var(--bg2));
  background-attachment: fixed;
}

body{
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);

  /* ważne: body nie nadpisuje tła html, tylko jest przezroczyste */
  background: transparent;
}

/* ✅ FIX: jeśli gdzieś masz sekcje z tłem – zerujemy */
section, main, .section{
  background: transparent;
}

a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

.container{
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(8,12,16,.92), rgba(8,12,16,.82));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner{
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(24,224,255,.08);
}
.brand-title{
  font-weight: 900;
  letter-spacing: .08em;
  font-size: 13px;
}
.brand-title span{
  color: rgba(24,224,255,.9);
  font-weight: 900;
  margin-left: 4px;
}

.nav{
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a{
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: rgba(234,240,246,.82);
  transition: background .25s ease, color .25s ease, box-shadow .25s ease, transform .15s ease;
}
.nav a:hover{
  background: rgba(24,224,255,.12);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(24,224,255,.35), 0 6px 18px rgba(24,224,255,.18);
  transform: translateY(-1px);
}
.nav a.nav-active{
  background: rgba(24,224,255,.18);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(24,224,255,.45), 0 8px 22px rgba(24,224,255,.22);
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  background: linear-gradient(180deg, rgba(24,224,255,1), rgba(24,190,220,1));
  color: #001318;
  border: 0;
  box-shadow: 0 18px 38px rgba(24,224,255,.15);
}
.btn:hover{ filter: brightness(1.02); transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }
.btn-small{ padding: 10px 14px; border-radius: 999px; }

.btn-ghost{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  background: rgba(234,240,246,.04);
  color: rgba(234,240,246,.92);
  border: 1px solid rgba(234,240,246,.12);
}
.btn-ghost:hover{
  background: rgba(234,240,246,.06);
  border-color: rgba(24,224,255,.20);
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
  transform: translateY(-1px);
}

/* burger hidden on desktop, visible only on mobile */
.burger{
  display: none;
  width: 44px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(234,240,246,.12);
  background: rgba(234,240,246,.04);
  color: rgba(234,240,246,.92);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}
.burger:hover{
  background: rgba(234,240,246,.06);
  border-color: rgba(24,224,255,.20);
}

@media (max-width: 980px){
  .nav{ display: none; }
  .burger{ display: inline-flex; align-items: center; justify-content: center; }
}

/* Typography */
.kicker{
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(24,224,255,.85);
  font-weight: 900;
}
h1,h2,h3{ margin: 0; letter-spacing: -.02em; }
h1{ font-size: clamp(34px, 4.2vw, 58px); line-height: 1.05; }
h2{ font-size: clamp(28px, 3.2vw, 44px); }
.lead{ color: rgba(234,240,246,.82); line-height: 1.65; font-size: 16.5px; margin: 16px 0 0; }
.muted{ color: var(--muted); }

/* Sections */
.section{ padding: 56px 0; }
.section.section-tight{ padding: 42px 0; }

/* HERO TOP */
.hero-top{ padding-top: 28px; padding-bottom: 18px; }

.hero-photo{
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(24,224,255,.22);
  background: rgba(18,24,33,.45);
  box-shadow: 0 34px 100px rgba(0,0,0,.45);
  min-height: 440px;
}

.hero-photo img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.18) 55%, rgba(0,0,0,.55)),
    radial-gradient(700px 380px at 20% 40%, rgba(24,224,255,.12), transparent 60%);
}

.hero-photo-title{
  position: absolute;
  left: 28px;
  top: 26px;
  max-width: 520px;
}
.model-name{
  font-size: clamp(40px, 5.3vw, 74px);
  font-weight: 950;
  letter-spacing: -.03em;
  margin-top: 10px;
}
.model-sub{
  margin-top: 10px;
  color: rgba(234,240,246,.82);
  font-weight: 600;
}

.hero-photo-pills{
  position: absolute;
  left: 28px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(720px, calc(100% - 56px));
}
@media (max-width: 980px){
  .hero-photo{ min-height: 420px; }
  .hero-photo-title{ left: 18px; top: 18px; }
  .hero-photo-pills{
    left: 18px;
    width: calc(100% - 36px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pill{
  border-radius: 18px;
  background: rgba(8,12,16,.62);
  border: 1px solid rgba(234,240,246,.12);
  padding: 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  backdrop-filter: blur(10px);
}
.pill strong{ font-weight: 900; color: #fff; }
.pill span{ font-size: 12px; color: rgba(234,240,246,.62); }

/* HERO CONTENT */
.hero-content-box{ padding-top: 18px; }

.hero-card{
  border-radius: 28px;
  background: rgba(18,24,33,.52);
  border: 1px solid rgba(234,240,246,.10);
  box-shadow: 0 30px 90px rgba(0,0,0,.40);
  overflow: hidden;
  position: relative;
  padding: 28px;
}
.hero-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 300px at 20% 0%, rgba(24,224,255,.10), transparent),
    radial-gradient(700px 300px at 100% 20%, rgba(24,224,255,.06), transparent);
  pointer-events: none;
}
.hero-text{ position: relative; z-index: 2; max-width: 880px; }
.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* 3 CARDS */
.cards-3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
@media (max-width: 980px){
  .cards-3{ grid-template-columns: 1fr; }
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card-head{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.card h3{
  font-size: 18px;
  font-weight: 950;
  margin: 0;
}

.icon-badge{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(24,224,255,.14);
  border: 1px solid rgba(24,224,255,.25);
  color: rgba(24,224,255,.95);
  flex: 0 0 auto;
}

.ic{ width: 22px; height: 22px; }

.card p{
  margin: 0;
  color: rgba(234,240,246,.70);
  line-height: 1.6;
}

/* Stats */
.section-head{ max-width: 860px; margin-bottom: 18px; }
.section-head p{ margin: 10px 0 0; }

.stats{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
@media (max-width: 980px){
  .stats{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 520px){
  .stats{ grid-template-columns: 1fr; }
}
.stat{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.stat-v{
  font-size: 54px;
  font-weight: 950;
  letter-spacing: -.03em;
}
.stat-v span{
  font-size: 28px;
  color: rgba(24,224,255,.92);
  font-weight: 950;
  margin-left: 6px;
}
.stat-k{
  margin-top: 8px;
  color: rgba(234,240,246,.65);
  font-size: 13px;
}

.cta-row{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* FINAL */
.final-cta{ padding: 44px 0 72px; }
.final-box{
  border-radius: 24px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(24,224,255,.14), rgba(24,224,255,.06));
  border: 1px solid rgba(24,224,255,.30);
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
}
.final-actions{
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer{
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 22px 0;
  color: rgba(234,240,246,.65);
  font-size: 13px;
}
.footer-inner{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer a{ color: rgba(234,240,246,.72); }
.footer a:hover{ color: #fff; }
/* BEZPIECZNIK: nigdy nie przycinaj obrazów w lightboxie */
.lightbox .lightbox-img{
  object-fit: contain !important;
  transform: none !important;
}
.footer-link{
  color: rgba(24,224,255,.9);
  text-decoration: none;
  font-weight: 700;
  transition: color .2s ease, text-shadow .2s ease;
}

.footer-link:hover{
  color: #18e0ff;
  text-shadow: 0 0 12px rgba(24,224,255,.45);
}
.logo{
  display: flex;
  align-items: center;
  height: 56px; /* wysokość navbaru */
}

.logo-img{
  height: 34px;        /* kontrolujesz realny rozmiar */
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
  transition: transform .25s ease, filter .25s ease;
}

.logo:hover .logo-img{
  transform: scale(1.04);
  filter: drop-shadow(0 4px 12px rgba(24,224,255,.35));
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: radial-gradient(
    120% 120% at 50% 0%,
    #0b1f26 0%,
    #060b0f 70%
  );
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 44px;        /* ← TU JEST WIĘKSZE LOGO */
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.logo:hover img {
  transform: scale(1.05);
  opacity: 0.95;
}
/* CTA – Zapytaj */
.nav-link.cta {
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    #00e5ff,
    #00bcd4
  );
  color: #041318;
  font-weight: 600;
  box-shadow:
    0 0 0 0 rgba(0,229,255,0.0),
    0 6px 20px rgba(0,229,255,0.35);
  transition:
    box-shadow 0.25s ease,
    transform 0.2s ease,
    background 0.25s ease;
}

/* hover */
.nav-link.cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 6px rgba(0,229,255,0.15),
    0 10px 28px rgba(0,229,255,0.45);
}

/* aktywna strona (jak na screenie) */
.nav-link.cta.active {
  box-shadow:
    0 0 0 8px rgba(0,229,255,0.18),
    0 12px 34px rgba(0,229,255,0.55);
}
.nav-link.active {
  color: #ffffff;
  background: rgba(0,229,255,0.14);
  box-shadow:
    0 0 0 6px rgba(0,229,255,0.12);
}
/* Bazowy link menu */
.nav-link {
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 500;
  color: #cfd8dc;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Hover zwykłych zakładek */
.nav-link:hover {
  color: #ffffff;
  background: rgba(0,229,255,0.08);
}

/* 🔥 AKTYWNA ZAKŁADKA – JAK NA SCREENIE */
.nav-link.active {
  color: #ffffff;
  background: linear-gradient(
    180deg,
    rgba(0,229,255,0.22),
    rgba(0,229,255,0.12)
  );
  box-shadow:
    inset 0 0 0 1px rgba(0,229,255,0.35),
    0 0 18px rgba(0,229,255,0.35);
}

/* Hover na aktywnej (minimalny, premium) */
.nav-link.active:hover {
  box-shadow:
    inset 0 0 0 1px rgba(0,229,255,0.5),
    0 0 24px rgba(0,229,255,0.45);
}
/* FORCE: menu pills (na koniec CSS) */
header nav a,
.topbar nav a,
.nav a {
  padding: 8px 16px;
  border-radius: 999px;
  color: #cfd8dc;
  text-decoration: none;
  transition: all .25s ease;
}

header nav a:hover,
.topbar nav a:hover,
.nav a:hover {
  color: #fff;
  background: rgba(0,229,255,.08);
}

/* AKTYWNA ZAKŁADKA – dokładnie jak na screenie */
header nav a.active,
.topbar nav a.active,
.nav a.active {
  color: #fff;
  background: linear-gradient(180deg, rgba(0,229,255,.22), rgba(0,229,255,.12));
  box-shadow:
    inset 0 0 0 1px rgba(0,229,255,.35),
    0 0 18px rgba(0,229,255,.35);
}

header nav a.active:hover,
.topbar nav a.active:hover,
.nav a.active:hover {
  box-shadow:
    inset 0 0 0 1px rgba(0,229,255,.50),
    0 0 24px rgba(0,229,255,.45);
}
/* =========================
   MAINTENANCE OVERLAY
   ========================= */

/* żeby nie dało się scrollować pod spodem */
body.maintenance {
  overflow: hidden;
}

.maintenance{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 24px;

  background:
    radial-gradient(1200px 650px at 20% 0%, rgba(24,224,255,.14), transparent 60%),
    radial-gradient(900px 520px at 80% 10%, rgba(24,224,255,.08), transparent 60%),
    linear-gradient(180deg, #070b10, #0a1017);
}

.maintenance-card{
  width: min(640px, 100%);
  border-radius: 26px;
  border: 1px solid rgba(234,240,246,.12);
  background: rgba(12,16,22,.62);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 30px 120px rgba(0,0,0,.55);
  padding: 22px;
  text-align: left;
}

.maintenance-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(24,224,255,.22);
  background: rgba(24,224,255,.08);
  color: rgba(24,224,255,.95);
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 12px;
  text-transform: uppercase;
}

.maintenance-title{
  margin: 14px 0 10px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.04;
  letter-spacing: -.03em;
}

.maintenance-text{
  margin: 0;
  color: rgba(234,240,246,.74);
  line-height: 1.65;
  font-weight: 600;
}

.maintenance-actions{
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.m-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(234,240,246,.12);
  transition: transform .15s ease, box-shadow .25s ease, background .25s ease;
}

.m-btn.primary{
  background: linear-gradient(180deg, rgba(24,224,255,1), rgba(24,190,220,1));
  color: #001318;
  border: 0;
  box-shadow: 0 18px 38px rgba(24,224,255,.18);
}
.m-btn.primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 0 0 6px rgba(24,224,255,.14), 0 22px 50px rgba(24,224,255,.22);
}

.m-btn.ghost{
  background: rgba(234,240,246,.04);
  color: rgba(234,240,246,.92);
}
.m-btn.ghost:hover{
  transform: translateY(-1px);
  border-color: rgba(24,224,255,.20);
  box-shadow: 0 12px 28px rgba(0,0,0,.30);
}

.maintenance-footer{
  margin-top: 18px;
  color: rgba(234,240,246,.58);
  font-size: 13px;
}
