@media (max-width: 700px) {
  .hero-content {
    min-height: unset !important;
    height: unset !important;
    padding-top: 4vw !important;
    padding-bottom: 0 !important;
    align-items: stretch !important;
    display: block !important;
  }
  .hero {
    padding: 1.2rem 0 1.2rem 0 !important;
  }
  .hero-card {
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    margin-bottom: 2.2rem !important;
  }
  .stats {
    margin-top: 1rem !important;
    gap: 0.5rem !important;
  }
  header {
    min-height: 56px !important;
    height: 56px !important;
  }
  .nav {
    padding: 6px 0 !important;
  }
  .sticky-price-bar {
    top: 56px !important;
    z-index: 200 !important;
  }
}
@media (max-width: 700px) {
  .hero-content, .hero-video-bg, .hero, .hero-bg-video, .hero-bg-overlay {
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
  }
}
@media (max-width: 900px) {
  .grid-overlay {
    display: none !important;
  }
}
@media (max-width: 620px) {
  .hero, .hero-video-bg {
    min-height: 100dvh !important;
    height: auto !important;
    padding-bottom: 5vh !important;
  }
  .hero-content {
    height: auto !important;
    min-height: unset !important;
    align-items: stretch !important;
    display: block !important;
    padding-top: 7vw !important;
    padding-bottom: 0 !important;
  }
  .container.hero-content {
    width: 100vw !important;
    max-width: 100vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .hero-card {
    padding: 1.35rem;
    border-radius: 20px;
    margin-bottom: 5vh;
    max-width: 100vw;
    width: 100%;
    box-sizing: border-box;
  }
  .glow {
    opacity: 0 !important;
  }
  .stats {
    gap: 1rem;
  }
  .sticky-price-bar {
    z-index: 200 !important;
    top: 70px !important;
  }
}
/* --- HERO VIDEO BACKGROUND --- */
.hero-video-bg {
  position: relative;
  min-height: 100vh;
  height: 100dvh;
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
}
.hero-bg-video {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  object-fit: cover;
  z-index: 0;
  min-width: 100vw;
  min-height: 100vh;
  max-width: none;
  max-height: none;
  pointer-events: none;
  background: #000;
}
.hero-bg-overlay {
  position: absolute;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: linear-gradient(180deg,rgba(0,0,0,0.45) 0%,rgba(0,0,0,0.25) 60%,rgba(0,0,0,0.7) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: flex-start; /* podnieś ramkę wyżej */
  justify-content: center;
  padding-top: 7vh; /* dodatkowy margines od góry */
  box-sizing: border-box;
}
/* --- CIEŃ POD ANIMACJĄ HERO --- */
.hero-shadow {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100vw;
  height: 80px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.08) 40%, rgba(255,255,255,0.0) 100%);
  filter: blur(0.5px);
}
.hero-card {
  /* zachowaj dotychczasowe style, ewentualnie dodaj cień */
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
@media (max-width: 900px) {
  .hero-bg-video, .hero-bg-overlay, .hero-video-bg, .hero-content {
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
  }
}
@media (max-width: 600px) {
  .hero-bg-video, .hero-bg-overlay, .hero-video-bg, .hero-content {
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
  }
}
html {
  scroll-behavior: smooth;
}

section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
section.section-visible {
  opacity: 1;
  transform: none;
}
/* NOWOCZESNY PRZYCISK POKAŻ LOKALIZACJE */
#lokalizacjeToggle {
  min-width: 260px;
  font-size: 1.25rem;
  font-weight: 800;
  padding: 1.2rem 2.2rem;
  border-radius: 18px;
  background: linear-gradient(100deg, var(--primary) 60%, var(--secondary) 100%);
  color: #fff;
  box-shadow: 0 8px 32px 0 rgba(25,211,197,0.18), 0 2px 8px 0 rgba(92,169,255,0.10);
  letter-spacing: 0.04em;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  animation: lokalizacjeBtnIn 0.7s cubic-bezier(.6,-0.28,.74,1.25) 0.2s forwards;
  transition: box-shadow 0.22s, background 0.22s, color 0.18s, transform 0.18s;
}

#lokalizacjeToggle:hover, #lokalizacjeToggle:focus {
  background: linear-gradient(100deg, var(--secondary) 60%, var(--primary) 100%);
  color: #fff;
  box-shadow: 0 12px 40px 0 rgba(25,211,197,0.22), 0 4px 16px 0 rgba(92,169,255,0.16);
  transform: translateY(-2px) scale(1.03) rotate(-0.5deg);
}

@keyframes lokalizacjeBtnIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.04) rotate(1.5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}
/* Podświetlanie aktywnego linku w menu - delikatny efekt */
nav a.active, .nav a.active {
  background: rgba(25,211,197,0.10);
  color: var(--primary) !important;
  border-radius: 7px;
  box-shadow: 0 1px 6px rgba(25,211,197,0.07);
  transition: background 0.18s, color 0.18s;
}
/* ============================================
   DESIGN SYSTEM - ZMIENNE KOLORYSTYCZNE
   ============================================ */

:root {
  --bg: #070a10;
  --bg-soft: #0f1726;
  --surface: rgba(18, 28, 45, 0.72);
  --line: rgba(150, 187, 255, 0.2);
  --text: #e8f1ff;
  --muted: #9fb3d1;
  --primary: #19d3c5;
  --secondary: #5ca9ff;
  --accent: #ffd166;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

/* ============================================
   RESET I STANY BAZOWE
   ============================================ */

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 20% 10%, #1b2b4d 0%, transparent 35%),
              radial-gradient(circle at 85% 15%, #17324a 0%, transparent 30%),
              linear-gradient(160deg, #05070b 0%, #0c1320 60%, #060b14 100%);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  scroll-behavior: smooth;
}

/* ============================================
   ELEMENTY TŁA I EFEKTY WIZUALNE
   ============================================ */

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 40%, black 15%, transparent 75%);
  opacity: 0.35;
  animation: pan 26s linear infinite;
}

.glow {
  position: fixed;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -2;
  opacity: 0.25;
  pointer-events: none;
  animation: drift 14s ease-in-out infinite alternate;
}

.glow.a {
  top: -15vw;
  left: -8vw;
  background: #00ffd040;
}

.glow.b {
  bottom: -22vw;
  right: -10vw;
  background: #4da3ff42;
  animation-delay: 2s;
}

/* ============================================
   KONTENER I UKŁAD
   ============================================ */

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

/* ============================================
   NAGŁÓWEK I NAWIGACJA
   ============================================ */

header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(6, 10, 18, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
}

.brand a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--text);
  margin-left: 0;
}

.brand-logo {
  width: auto;
  height: clamp(26px, 2.2vw, 34px);
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  line-height: 1;
}

.brand span {
  color: var(--primary);
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 1.1rem;
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav a:hover {
  color: var(--text);
}

/* ============================================
   HAMBURGER MENU
   ============================================ */

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.4rem;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

nav {
  display: flex;
  gap: 1rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

nav a:hover {
  color: var(--text);
}

/* ============================================
   SEKCJA HERO
   ============================================ */

.hero {
  min-height: 90vh;
  display: grid;
  place-items: center;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-card {
  border: 1px solid rgba(128, 178, 255, 0.24);
  background: linear-gradient(135deg, rgba(14, 23, 38, 0.8), rgba(10, 17, 30, 0.58));
  box-shadow: var(--shadow);
  border-radius: 26px;
  padding: 2.4rem;
  max-width: 930px;
  position: relative;
  overflow: hidden;
  transform: translateY(24px);
  opacity: 0;
  animation: reveal 1s 0.15s ease forwards;
}

.hero-cta-standalone {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  text-align: center;
  transform: translateY(28px);
  opacity: 0;
  animation: reveal 1s 0.2s ease forwards;
}

.hero-tagline {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.08;
  text-transform: uppercase;
  margin: 0;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.88) 40%,
    rgba(22, 211, 193, 0.75) 70%,
    rgba(180, 235, 255, 0.6) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 32px rgba(22, 211, 193, 0.22));
}

.hero-cta-btns {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.btn-hero {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  padding: 1.1rem 2.8rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-hero.btn-primary {
  box-shadow: 0 0 0 1px rgba(22, 211, 193, 0.5), 0 16px 40px rgba(22, 211, 193, 0.38);
}

.btn-hero.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 225, 255, 0.45);
  color: #e8f3ff;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 1px rgba(150, 200, 255, 0.15), 0 10px 30px rgba(0, 0, 0, 0.25);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.07) 30%, transparent 44%);
  transform: translateX(-120%);
  animation: shine 7s ease-in-out infinite;
}

.badge {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  border-radius: 999px;
  background: rgba(22, 211, 193, 0.12);
  border: 1px solid rgba(22, 211, 193, 0.4);
  color: #8df6ed;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  font-size: 0.86rem;
}

/* ============================================
   TYPOGRAFIA - NAGŁÓWKI I TEKST
   ============================================ */

h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.05;
  margin: 1rem 0 1rem;
  letter-spacing: 0.01em;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 62ch;
  line-height: 1.65;
  margin-bottom: 1.8rem;
}

.section-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin: 0 0 1.2rem;
  text-align: center;
  letter-spacing: -0.01em;
}

.section-sub {
  color: var(--muted);
  max-width: 75ch;
  margin: 0 auto 2rem;
  line-height: 1.7;
  text-align: center;
}

/* ============================================
   PRZYCISKI
   ============================================ */

.cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  border: none;
  border-radius: 14px;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-block {
  width: 100%;
}

.btn:focus-visible {
  outline: 3px solid rgba(25, 211, 197, 0.6);
  outline-offset: 3px;
}

.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;
}

.form-feedback {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
  color: var(--text);
  display: none;
}

.form-feedback--error {
  border-color: rgba(255, 99, 100, 0.5);
  background: rgba(255, 99, 100, 0.12);
  color: #ffe5e5;
}

.form-feedback--success {
  border-color: rgba(25, 211, 197, 0.5);
  background: rgba(25, 211, 197, 0.12);
  color: #d8fffb;
}

.toast {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 200;
  max-width: 320px;
  background: rgba(6, 10, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  color: var(--text);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
  font-size: 0.9rem;
}

.toast.toast--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast--success {
  border-color: rgba(25, 211, 197, 0.75);
}

.toast--error {
  border-color: rgba(255, 99, 100, 0.75);
}

.btn-primary {
  background: linear-gradient(130deg, var(--primary), #49f0df);
  color: #001a1a;
  box-shadow: 0 12px 28px rgba(24, 211, 197, 0.3);
}

.btn-secondary {
  background: rgba(76, 118, 190, 0.2);
  color: #d8e8ff;
  border: 1px solid rgba(95, 151, 255, 0.4);
}

.btn:hover {
  transform: translateY(-2px);
}

/* ============================================
   STATYSTYKI
   ============================================ */

.stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stat {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(100, 150, 220, 0.15);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  backdrop-filter: blur(8px);
}

.stat strong {
  font-family: "Sora", sans-serif;
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #22d3ee;
  margin-bottom: 0.6rem;
  min-height: 2.6em;
}

.stat span {
  display: block;
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============================================
   SEKCJE
   ============================================ */

section {
  padding: 5rem 0;
}

/* ============================================
   KARTY USŁUG
   ============================================ */

.services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.service {
  background: var(--surface);
  border: 1px solid rgba(146, 185, 255, 0.2);
  border-radius: 18px;
  padding: 1.4rem;
  transition: transform 0.28s ease, border-color 0.28s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service:hover {
  transform: translateY(-6px);
  border-color: rgba(25, 211, 197, 0.58);
  background: rgba(18, 32, 50, 0.7);
}

.service h3 {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.service p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ============================================
   OŚ CZASOWA / PROCES
   ============================================ */

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.step {
  position: relative;
  background: rgba(8, 14, 24, 0.7);
  border: 1px solid rgba(114, 154, 228, 0.23);
  border-radius: 18px;
  padding: 1.6rem;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(25, 211, 197, 0.5);
}

.step .num {
  font-family: "Sora", sans-serif;
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  display: block;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.step p {
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
  font-size: 0.95rem;
}

.step a {
  color: #d4d4d4;
  text-decoration: underline;
  transition: color 0.25s ease;
}

.step a:hover {
  color: #ffffff;
}

/* ============================================
   SECTION LOKALIZACJI
   ============================================ */

.lokalizacje-hidden {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}

.lokalizacje-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
  justify-content: center;
  align-items: center;
}

.lokalizacje-filters select,
.lokalizacje-filters input {
  background: rgba(15, 23, 38, 0.6);
  border: 1px solid rgba(146, 185, 255, 0.3);
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.lokalizacje-filters select:hover,
.lokalizacje-filters input:hover,
.lokalizacje-filters select:focus,
.lokalizacje-filters input:focus {
  border-color: rgba(25, 211, 197, 0.6);
  background: rgba(15, 23, 38, 0.8);
  outline: none;
}

.lokalizacje-filters input::placeholder {
  color: var(--muted);
}

.lokalizacje-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  max-height: 10000px;
  opacity: 1;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}

.lokalizacja-card {
  background: var(--surface);
  border: 1px solid rgba(146, 185, 255, 0.2);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.5s ease forwards;
  opacity: 0;
  max-width: 400px;
  margin: 0 auto;
}

.lokalizacja-card:nth-child(1) { animation-delay: 0.05s; }
.lokalizacja-card:nth-child(2) { animation-delay: 0.1s; }
.lokalizacja-card:nth-child(3) { animation-delay: 0.15s; }
.lokalizacja-card:nth-child(n+4) { animation-delay: 0.2s; }

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lokalizacja-card:hover {
  transform: translateY(-6px);
  border-color: rgba(25, 211, 197, 0.58);
  box-shadow: 0 12px 28px rgba(24, 211, 197, 0.2);
}

.lok-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.lok-content {
  padding: 1.2rem;
}

.lok-content h3 {
  margin: 0 0 0.6rem;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  color: var(--text);
}

.lok-meta {
  margin: 0 0 0.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.lok-adres {
  margin: 0 0 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.lok-godziny {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* ============================================
   RESPONSIVE LOKALIZACJE
   ============================================ */

@media (max-width: 980px) {
  .lokalizacje-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .lokalizacje-filters {
    flex-direction: column;
    gap: 0.8rem;
  }

  .lokalizacje-filters select,
  .lokalizacje-filters input {
    width: 100%;
  }

  .lokalizacje-grid {
    grid-template-columns: 1fr;
  }

  .lok-image {
    height: 150px;
  }

  .lok-content {
    padding: 1rem;
  }
}

/* ============================================
   PANEL CALL-TO-ACTION
   ============================================ */

.cta-panel {
  border-radius: 22px;
  border: 1px solid rgba(143, 186, 255, 0.3);
  background: linear-gradient(130deg, rgba(18, 32, 50, 0.85), rgba(8, 15, 25, 0.9));
  padding: 2.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-panel h2 {
  margin-bottom: 1rem;
}

.cta-panel p {
  color: var(--muted);
  margin: 0 auto 1.8rem;
  max-width: 70ch;
  line-height: 1.7;
}

/* ============================================
   FORMULARZ KONTAKTOWY
   ============================================ */

.contact-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
  align-items: center;
}

.contact-form-wrapper {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(150, 187, 255, 0.2);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(15, 23, 38, 0.6);
  border: 1px solid rgba(146, 185, 255, 0.3);
  border-radius: 12px;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(25, 211, 197, 0.6);
  background: rgba(15, 23, 38, 0.8);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================
   STOPKA
   ============================================ */

footer {
  padding: 3rem 0 2.6rem;
  color: #9ab0d2;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid rgba(150, 187, 255, 0.1);
  letter-spacing: 0.02em;
}

/* ============================================
   ANIMACJE
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pan {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-44px, -44px, 0);
  }
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(6vw, -4vw) scale(1.08);
  }
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shine {
  0% {
    transform: translateX(-120%);
  }
  35% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

/* ============================================
   BUTTON CENTER UTILITY
   ============================================ */

.button-center {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

/* ============================================
   SUBSECTION TITLE
   ============================================ */

.subsection-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin: 1.5rem 0 1rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ============================================
   KALKULATOR WYCENY REKLAMY
   ============================================ */

#kalkulator {
  padding: 4rem 0;
  position: relative;
}

/* STICKY PRICE BAR */
.sticky-price-bar {
  position: sticky;
  top: 56px;
  z-index: 40;
  background: linear-gradient(135deg, rgba(25, 211, 197, 0.18), rgba(92, 169, 255, 0.18));
  backdrop-filter: blur(18px);
  border: 1px solid rgba(25, 211, 197, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  padding: 1.2rem 2rem;
  margin: 0 0 2rem 0;
  border-radius: 0 0 22px 22px;
  animation: slideDown 0.35s ease-out;
  transition: top 0.18s ease, box-shadow 0.18s ease;
  will-change: top;
}

.price-bar-details {
  font-size: 0.9rem;
  color: var(--muted);
  white-space: pre-wrap;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.price-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap;
  row-gap: 0.6rem;
}

.price-bar-info {
  min-width: 220px;
}

.price-bar-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.price-bar-info span:first-child {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
  font-family: "Sora", sans-serif;
}

.price-bar-details {
  font-size: 0.85rem;
  color: var(--muted);
}

.price-bar-price {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  min-width: max-content;
}

.price-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.price-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  font-family: "Sora", sans-serif;
  text-shadow: 0 0 16px rgba(255, 209, 102, 0.3);
}

/* CALCULATOR GRID LAYOUT */
.kalkulator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  align-items: stretch;
}

/* Lokalizacje: dopasuj wysokość do sąsiednich kolumn */
.location-column {
  display: flex;
  flex-direction: column;
}

.location-column .calc-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Lista lokalizacji powinna wypełniać dostępną wysokość */
.location-column .calc-locations-group {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.kalkulator-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.calc-card {
  background: rgba(15, 23, 38, 0.5);
  border: 1px solid rgba(146, 185, 255, 0.15);
  border-radius: 16px;
  padding: 1.8rem;
  transition: all 0.3s ease;
}

.calc-card:hover {
  border-color: rgba(25, 211, 197, 0.3);
  background: rgba(15, 23, 38, 0.7);
}

.calc-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1.2rem 0;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* RADIO BUTTONS */
.calc-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  background: rgba(18, 28, 45, 0.4);
  border: 1px solid rgba(146, 185, 255, 0.2);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.radio-label:hover {
  border-color: rgba(25, 211, 197, 0.4);
  background: rgba(18, 28, 45, 0.6);
}

.radio-label input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(92, 169, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.radio-label input[type="radio"]:hover {
  border-color: var(--secondary);
  box-shadow: 0 0 8px rgba(92, 169, 255, 0.3);
}

.radio-label input[type="radio"]:checked {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(25, 211, 197, 0.5);
}

.radio-text {
  flex: 1;
  font-weight: 600;
  color: var(--text);
  font-family: "Sora", sans-serif;
}

.radio-default,
.radio-discount {
  font-size: 0.8rem;
  color: var(--muted);
  margin-left: auto;
  text-align: right;
}

.radio-discount {
  color: var(--accent);
  font-weight: 600;
}

/* SLIDER */
.calc-slider-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(92, 169, 255, 0.2);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(25, 211, 197, 0.5);
  transition: all 0.25s ease;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(25, 211, 197, 0.7);
}

.slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 12px rgba(25, 211, 197, 0.5);
  transition: all 0.25s ease;
}

.slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(25, 211, 197, 0.7);
}

.slider::-moz-range-track {
  background: transparent;
  border: none;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.slider-labels label {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
}

.slider-labels strong {
  font-size: 1.3rem;
  color: var(--primary);
}

.slider-hint {
  font-size: 0.8rem;
  color: var(--muted);
  padding-top: 0.5rem;
  border-top: 1px solid rgba(146, 185, 255, 0.1);
}

.slider-hint span {
  color: var(--secondary);
  font-weight: 600;
}

/* LOCATIONS */
.calc-locations-info {
  background: rgba(25, 211, 197, 0.1);
  border: 1px solid rgba(25, 211, 197, 0.2);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  color: var(--text);
}

.calc-locations-info strong {
  color: var(--primary);
  font-weight: 700;
}

.calc-locations-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.calc-locations-group::-webkit-scrollbar {
  width: 6px;
}

.calc-locations-group::-webkit-scrollbar-track {
  background: transparent;
}

.calc-locations-group::-webkit-scrollbar-thumb {
  background: rgba(146, 185, 255, 0.3);
  border-radius: 3px;
}

.calc-locations-group::-webkit-scrollbar-thumb:hover {
  background: rgba(146, 185, 255, 0.5);
}

.location-city-group {
  margin-bottom: 1rem;
}

.location-city-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(92, 169, 255, 0.2);
  margin-bottom: 0.6rem;
}

.location-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem;
  background: rgba(18, 28, 45, 0.3);
  border: 1px solid rgba(146, 185, 255, 0.15);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.9rem;
  color: var(--text);
}

.location-checkbox-label:hover {
  border-color: rgba(25, 211, 197, 0.3);
  background: rgba(18, 28, 45, 0.5);
}

.location-checkbox-label.checked {
  border-color: rgba(25, 211, 197, 0.3);
  background: rgba(18, 28, 45, 0.5);
}

.location-checkbox-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(92, 169, 255, 0.5);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.location-checkbox-label input[type="checkbox"]:hover {
  border-color: var(--secondary);
  box-shadow: 0 0 6px rgba(92, 169, 255, 0.3);
}

.location-checkbox-label input[type="checkbox"]:checked {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(25, 211, 197, 0.5);
}

.individual-quote-message {
  background: rgba(255, 209, 102, 0.1);
  border: 1px solid rgba(255, 209, 102, 0.3);
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1rem;
  color: var(--accent);
  font-size: 0.9rem;
  line-height: 1.5;
}

.individual-quote-message strong {
  color: var(--accent);
  font-weight: 700;
}

.individual-quote-message small {
  display: block;
  color: var(--muted);
  margin-top: 0.4rem;
  font-size: 0.8rem;
}

/* FORM */
.calc-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.calc-form input,
.calc-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(15, 23, 38, 0.6);
  border: 1px solid rgba(146, 185, 255, 0.3);
  border-radius: 10px;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.calc-form input::placeholder,
.calc-form textarea::placeholder {
  color: var(--muted);
}

.calc-form input:focus,
.calc-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(15, 23, 38, 0.8);
  box-shadow: 0 0 12px rgba(25, 211, 197, 0.15);
}

.calc-form textarea {
  resize: vertical;
  min-height: 90px;
}

.calc-form .btn {
  margin-top: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ============================================
   RESPONSIVE - TABLET (998px i poniżej)
   ============================================ */


@media (max-width: 980px) {
  .services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .kalkulator-grid {
    grid-template-columns: 1fr;
  }

  .price-bar-content {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .price-bar-price {
    width: 100%;
    justify-content: space-between;
  }
}

/* ============================================
   RESPONSIVE - MOBILE (768px i poniżej)
   ============================================ */

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .brand-logo {
    height: 28px;
  }

  .brand {
    font-size: 0.98rem;
    letter-spacing: 0.04em;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: blur(10px);
    border-bottom: 0;
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, border-bottom-width 0.3s ease, background 0.3s ease;
  }

  nav.active {
    background: rgba(6, 10, 18, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
    max-height: 300px;
  }

  nav a {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  nav a:last-child {
    border-bottom: none;
  }

  .nav {
    position: relative;
  }
}

/* ============================================
   RESPONSIVE - MOBILE (620px i poniżej)
   ============================================ */

@media (max-width: 620px) {
  .hero,
  .hero-video-bg,
  .hero-content,
  .hero-bg-video,
  .hero-bg-overlay {
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
  }

  .hero {
    padding: 1.2rem 0 1.2rem 0 !important;
  }

  .brand {
    font-size: 0.9rem;
    letter-spacing: 0.02em;
  }

  .brand-logo {
    height: 24px;
  }

  .brand-text span {
    font-size: 0.75rem;
  }

  .hero-content {
    display: block !important;
    padding-top: 4vw !important;
    padding-bottom: 0 !important;
  }

  .container.hero-content {
    width: 100vw !important;
    max-width: 100vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero-card {
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    padding: 1.2rem;
    border-radius: 18px;
    margin-bottom: 2rem;
  }

  .stats {
    margin-top: 1rem !important;
    gap: 0.6rem;
  }

  .stat {
    padding: 1rem 0.8rem;
  }

  .stat strong {
    font-size: 1.6rem;
    min-height: 0;
  }

  .stat span {
    font-size: 0.82rem;
  }

  .grid-overlay,
  .glow {
    display: none !important;
  }

  header {
    min-height: 56px;
    z-index: 220;
  }

  .nav {
    position: relative;
    padding: 8px 0;
    min-height: 56px;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    padding: 0;
    border-bottom: 0;
    overflow: hidden;
    background: rgba(6, 10, 18, 0.97);
    transition: max-height 0.28s ease, padding 0.28s ease, border-bottom-width 0.28s ease;
  }

  nav.active {
    max-height: 320px;
    padding: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  nav a {
    padding: 0.72rem 0;
    font-size: 0.95rem;
  }

  .services,
  .timeline {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-form-wrapper {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .contact-links {
    flex-direction: column;
    gap: 0.8rem;
  }

  .contact-links .btn {
    width: 100%;
    text-align: center;
  }

  .cta-panel {
    padding: 1.8rem;
  }

  .sticky-price-bar {
    top: 64px !important;
    z-index: 210 !important;
    padding: 0.8rem 1rem;
    margin-bottom: 1.5rem;
  }

  .price-bar-content {
    flex-direction: column;
    gap: 0.8rem;
  }

  .price-bar-price {
    width: 100%;
    justify-content: space-between;
  }

  .price-value {
    font-size: 1.8rem;
  }

  .kalkulator-grid {
    gap: 1.2rem;
  }

  .calc-card {
    padding: 1.3rem;
  }

  .calc-card h3 {
    font-size: 0.95rem;
  }

  .radio-label {
    padding: 0.7rem 0.8rem;
    font-size: 0.85rem;
  }

  .radio-default,
  .radio-discount {
    font-size: 0.75rem;
  }

  .slider-labels label {
    font-size: 0.9rem;
  }

  .calc-locations-group {
    max-height: 300px;
  }

  .location-checkbox-label {
    padding: 0.5rem 0.6rem;
    font-size: 0.85rem;
  }

  .calc-form input,
  .calc-form textarea {
    padding: 0.8rem 0.8rem;
    font-size: 0.85rem;
  }
}
