/* ============================================================
   style.css - GŁÓWNE STYLE STRONY TELEDO
   ============================================================ */

/* === KOLORY MARKI TELEDO - zmień tutaj, zmieni się wszędzie === */
:root {
  --color-black: #0A0A0F;
  --color-dark: #12121A;
  --color-dark-card: #1A1A2E;
  --color-gray: #8892A0;
  --color-light: #E5E7EB;
  --color-white: #FFFFFF;
  --color-blue: #0066FF;
  --color-blue-glow: #3388FF;
  --color-blue-dark: #0044CC;
  --color-gradient: linear-gradient(135deg, #0066FF, #00AAFF);

  /* === TYPOGRAFIA === */
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* === ODSTĘPY === */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --border-radius: 12px;
  --border-radius-sm: 8px;

  /* === EFEKTY === */
  --glow: 0 0 20px rgba(0, 102, 255, 0.3);
  --glow-strong: 0 0 30px rgba(0, 102, 255, 0.5);
  --glass-bg: rgba(26, 26, 46, 0.6);
  --glass-border: rgba(0, 102, 255, 0.15);
  --transition: all 0.3s ease;
}

/* === RESET I BAZOWE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 56px; /* navbar height minus gap */
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-black);
  color: var(--color-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Grid background removed for cleaner look */
body::before {
  display: none;
}

/* Cała treść nad animowanym tłem */
body > * {
  position: relative;
  z-index: 1;
}

/* === TYPOGRAFIA === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

p {
  color: var(--color-light);
  margin-bottom: 1rem;
}

a {
  color: var(--color-blue);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--color-blue-glow);
}

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

/* === KONTENER === */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* === NAGŁÓWEK SEKCJI === */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header .accent-line {
  width: 60px;
  height: 3px;
  background: var(--color-gradient);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-header p {
  color: var(--color-gray);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ============================================================
   NAWIGACJA
   ============================================================ */
/* <!-- SEKCJA: Nawigacja górna --> */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo img,
.navbar-logo .logo-img {
  height: 38px;
  width: auto;
  transition: var(--transition);
  filter: brightness(1.1);
}

.navbar.scrolled .logo-img {
  height: 32px;
}

.navbar-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.1em;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  color: var(--color-light);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  transition: var(--transition);
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gradient);
  transition: width 0.3s ease;
}

.navbar-links a:hover {
  color: var(--color-white);
}

.navbar-links a:hover::after {
  width: 100%;
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.95rem;
}

.navbar-phone .material-symbols-outlined {
  color: var(--color-blue);
  font-size: 20px;
}

/* Hamburger menu */
.hamburger,
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 100px 40px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--glass-border);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
}

.mobile-menu a {
  display: block;
  color: var(--color-light);
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-menu a:hover {
  color: var(--color-blue);
}

/* ============================================================
   HERO SEKCJA
   ============================================================ */
/* <!-- SEKCJA: Hero z animowanym tłem --> */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg canvas {
  width: 100%;
  height: 100%;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--color-blue-glow);
  backdrop-filter: blur(10px);
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 span {
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-gray);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero grid removed for clean look */

/* ============================================================
   HERO ORBITAL ANIMATION - ikony usług wokół logo
   ============================================================ */

.hero-orbital {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(750px, 92vw);
  height: min(750px, 92vw);
  z-index: 1;
  pointer-events: none;
}

/* Logo w centrum */
.orbital-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(10, 10, 15, 0.92);
  padding: 24px 36px;
  border-radius: 18px;
  border: 2px solid rgba(0, 170, 255, 0.35);
  box-shadow:
    0 0 40px rgba(0, 170, 255, 0.25),
    inset 0 0 25px rgba(0, 170, 255, 0.08);
  animation: orbitalPulse 3.5s ease-in-out infinite;
  z-index: 5;
}

.orbital-logo {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(1.3);
}

@keyframes orbitalPulse {
  0%, 100% {
    box-shadow:
      0 0 35px rgba(0, 170, 255, 0.2),
      inset 0 0 20px rgba(0, 170, 255, 0.06);
  }
  50% {
    box-shadow:
      0 0 60px rgba(0, 170, 255, 0.4),
      0 0 90px rgba(0, 170, 255, 0.12),
      inset 0 0 30px rgba(0, 170, 255, 0.12);
  }
}

/* Orbiting rings */
.orbital-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(0, 102, 255, 0.1);
}

.orbital-ring-1 {
  width: 60%; height: 60%;
  transform: translate(-50%, -50%);
  animation: ringRotate 60s linear infinite;
}

.orbital-ring-2 {
  width: 95%; height: 95%;
  transform: translate(-50%, -50%);
  animation: ringRotate 90s linear infinite reverse;
}

@keyframes ringRotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Service icons - positioned in a circle */
.orbital-icon {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(10, 10, 15, 0.9);
  border: 2px solid rgba(0, 102, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: iconFloat 4.5s ease-in-out infinite;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 4;
  pointer-events: auto;
  cursor: pointer;
}

.orbital-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--color-blue), rgba(0, 170, 255, 0.6));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s;
}

.orbital-icon:hover {
  transform: scale(1.2) translateY(0) !important;
  box-shadow: 0 0 30px rgba(0, 170, 255, 0.5);
  z-index: 10;
}

.orbital-icon:hover::before {
  opacity: 0.25;
}

.orbital-icon .material-symbols-outlined {
  font-size: 26px;
  color: var(--color-blue-glow);
  filter: drop-shadow(0 0 8px currentColor);
}

/* Icon label tooltip */
.orbital-icon[data-label]::after {
  content: attr(data-label);
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 15, 0.9);
  color: var(--color-light);
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border: 1px solid rgba(0, 102, 255, 0.15);
}

.orbital-icon:hover[data-label]::after {
  opacity: 1;
}

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

/* 8 icons positioned in circle */
.oi-1 { top: 1%;  left: 50%; margin-left: -32px; animation-delay: 0s; }
.oi-2 { top: 14%; right: 8%; animation-delay: 0.3s; }
.oi-3 { top: 44%; right: -2%;  animation-delay: 0.6s; }
.oi-4 { bottom: 14%; right: 8%; animation-delay: 0.9s; }
.oi-5 { bottom: 1%; left: 50%; margin-left: -32px; animation-delay: 1.2s; }
.oi-6 { bottom: 14%; left: 8%; animation-delay: 1.5s; }
.oi-7 { top: 44%; left: -2%; animation-delay: 1.8s; }
.oi-8 { top: 14%; left: 8%; animation-delay: 2.1s; }

/* Color accents per icon */
.oi-1 { border-color: rgba(0, 170, 255, 0.35); }
.oi-1 .material-symbols-outlined { color: #00aaff; }
.oi-2 { border-color: rgba(0, 102, 255, 0.35); }
.oi-3 { border-color: rgba(255, 107, 53, 0.35); }
.oi-3 .material-symbols-outlined { color: #ff6b35; }
.oi-4 { border-color: rgba(0, 255, 136, 0.35); }
.oi-4 .material-symbols-outlined { color: #00cc66; }
.oi-5 { border-color: rgba(153, 51, 255, 0.35); }
.oi-5 .material-symbols-outlined { color: #9933ff; }
.oi-6 { border-color: rgba(255, 170, 0, 0.35); }
.oi-6 .material-symbols-outlined { color: #ffaa00; }
.oi-7 { border-color: rgba(255, 0, 102, 0.35); }
.oi-7 .material-symbols-outlined { color: #ff3366; }
.oi-8 { border-color: rgba(0, 255, 204, 0.35); }
.oi-8 .material-symbols-outlined { color: #00ffcc; }

/* Connection lines (generated by JS) */
.orbital-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(0, 170, 255, 0.3) 25%,
    rgba(0, 170, 255, 0.3) 75%,
    transparent);
  transform-origin: left center;
  animation: lineGlow 3.5s ease-in-out infinite;
  z-index: 2;
}

@keyframes lineGlow {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.6; }
}

/* Pulse dots on connections */
.orbital-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: rgba(0, 170, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 170, 255, 0.7);
  animation: dotPulse 2.5s ease-in-out infinite;
  z-index: 3;
}

@keyframes dotPulse {
  0%, 100% { transform: scale(0.7); opacity: 0.4; }
  50% { transform: scale(1.4); opacity: 1; }
}

/* Hide orbital on small screens - too cluttered */
@media (max-width: 768px) {
  .hero-orbital { display: none; }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@media (max-width: 640px) {
  .whatsapp-float {
    bottom: 80px; /* above mobile CTA bar */
    right: 16px;
    width: 50px;
    height: 50px;
  }
}

/* ============================================================
   FORM ANTI-BOT (honeypot)
   ============================================================ */

.form-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.form-note {
  font-size: 0.8rem;
  color: var(--color-gray);
  text-align: center;
  margin-top: 12px;
}

.form-note a {
  color: var(--color-gray);
  text-decoration: underline;
}

/* WhatsApp icon in contact info */
.contact-icon-whatsapp {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(37, 211, 102, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  flex-shrink: 0;
}

/* ============================================================
   SEKCJA USŁUG
   ============================================================ */
/* <!-- SEKCJA: Karty usług --> */

.section-services {
  padding: var(--section-padding);
  background: rgba(18, 18, 26, 0.92);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ============================================================
   SEKCJA JAK DZIAŁAMY - PIONOWY TIMELINE (CENTRED / ALTERNATING)
   ============================================================ */
/* <!-- SEKCJA: Jak działamy - linia na środku, karty naprzemiennie --> */

.section-process {
  padding: var(--section-padding);
  background: rgba(10, 10, 15, 0.92);
}

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Linia pionowa - na środku */
.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0, 102, 255, 0.12);
  z-index: 0;
}

/* Linia animowana postępu */
.process-timeline-progress {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 2px;
  height: 0;
  background: var(--color-gradient);
  transition: height 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(0, 102, 255, 0.4);
  z-index: 1;
}

/* Krok */
.process-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  width: 100%;
  z-index: 2;
}

.process-step:last-child {
  margin-bottom: 0;
}

/* Numer w kółku - zawsze na środku linii, NAD linią */
.process-step-number {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 12px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #12121A;
  border: 2px solid rgba(0, 102, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-gray);
  transition: all 0.6s ease;
  z-index: 5;
}

.process-step.step-active .process-step-number {
  background: var(--color-gradient);
  border-color: var(--color-blue);
  color: var(--color-white);
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.5), 0 0 40px rgba(0, 102, 255, 0.15);
}

/* Karta - domyślnie po lewej (nieparzyste kroki) */
.process-step-card {
  width: calc(50% - 52px);
  background: var(--glass-bg);
  border: 1px solid rgba(0, 102, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 28px 32px;
  backdrop-filter: blur(10px);
  transition: all 0.6s ease;
  position: relative;
}

.process-step.step-active .process-step-card {
  border-color: rgba(0, 102, 255, 0.25);
  box-shadow: 0 0 30px rgba(0, 102, 255, 0.08);
}

/* Strzałka z karty w stronę linii */
.process-step-card::after {
  content: '';
  position: absolute;
  top: 22px;
  width: 14px;
  height: 14px;
  background: var(--glass-bg);
  border: 1px solid rgba(0, 102, 255, 0.08);
  transform: rotate(45deg);
  transition: border-color 0.6s ease;
}

.process-step.step-active .process-step-card::after {
  border-color: rgba(0, 102, 255, 0.25);
}

/* === LEWA STRONA (nieparzyste: 1, 3, 5) === */
.process-step.step-left {
  justify-content: flex-start;
}

.process-step.step-left .process-step-card {
  margin-right: auto;
}

.process-step.step-left .process-step-card::after {
  right: -8px;
  border-left: none;
  border-bottom: none;
}

/* === PRAWA STRONA (parzyste: 2, 4, 6) === */
.process-step.step-right {
  justify-content: flex-end;
}

.process-step.step-right .process-step-card {
  margin-left: auto;
}

.process-step.step-right .process-step-card::after {
  left: -8px;
  border-right: none;
  border-top: none;
}

/* Ikona i treść */
.process-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 102, 255, 0.1);
  margin-bottom: 14px;
}

.process-step-icon .material-symbols-outlined {
  font-size: 24px;
  color: var(--color-blue);
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.process-step p {
  color: var(--color-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3000;
  padding: 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 720px;
  margin: 0 auto 20px;
  background: rgba(18, 18, 26, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 28px 32px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
}

.cookie-banner-text {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.cookie-banner-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 102, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-banner-icon .material-symbols-outlined {
  color: var(--color-blue);
  font-size: 24px;
}

.cookie-banner-text h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

.cookie-banner-text p {
  font-size: 0.85rem;
  color: var(--color-gray);
  line-height: 1.6;
  margin: 0;
}

.cookie-link {
  background: none;
  border: none;
  color: var(--color-blue);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  margin-top: 6px;
  display: inline-block;
  font-family: var(--font-body);
}

/* Szczegóły kategorii */
.cookie-details {
  margin: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 16px;
}

.cookie-category {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

.cookie-category-header strong {
  color: var(--color-white);
  font-size: 0.9rem;
}

.cookie-category-header small {
  display: block;
  color: var(--color-gray);
  font-size: 0.75rem;
}

.cookie-category-desc {
  font-size: 0.8rem;
  color: var(--color-gray);
  line-height: 1.5;
  margin: 0;
  padding-left: 54px;
}

/* Toggle switch */
.cookie-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  transition: 0.3s;
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: var(--color-white);
  border-radius: 50%;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--color-blue);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(18px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Przyciski */
.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner-buttons .btn {
  flex: 1;
  justify-content: center;
  min-width: 140px;
}

.cookie-legal-link {
  font-size: 0.75rem;
  color: var(--color-gray);
  margin: 12px 0 0;
  text-align: center;
}

.cookie-legal-link a {
  color: var(--color-gray);
  text-decoration: underline;
}

@media (max-width: 640px) {
  .cookie-banner-inner {
    margin: 0;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    padding: 20px;
  }

  .cookie-banner-text {
    flex-direction: column;
    gap: 10px;
  }

  .cookie-banner-buttons {
    flex-direction: column;
  }

  .cookie-banner-buttons .btn {
    width: 100%;
  }

  .cookie-category-desc {
    padding-left: 0;
  }
}

/* ============================================================
   SEKCJA REALIZACJE / GALERIA
   ============================================================ */
/* <!-- SEKCJA: Galeria realizacji --> */

.section-gallery {
  padding: var(--section-padding);
  background: rgba(18, 18, 26, 0.92);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: rgba(26, 26, 46, 0.92);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay p {
  color: var(--color-white);
  font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--border-radius);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--color-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: var(--color-blue);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ============================================================
   SEKCJA KALKULATOR BANER
   ============================================================ */
/* <!-- SEKCJA: Baner kalkulatora --> */

.section-calculator-banner {
  padding: 80px 0;
  background: rgba(10, 10, 15, 0.92);
  position: relative;
  overflow: hidden;
}

.calculator-banner {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 60px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
}

.calculator-banner::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: var(--border-radius);
  background: var(--color-gradient);
  z-index: -1;
  opacity: 0.15;
}

.calculator-banner h2 {
  margin-bottom: 16px;
}

.calculator-banner p {
  color: var(--color-gray);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   SEKCJA OPINIE
   ============================================================ */
/* <!-- SEKCJA: Opinie klientów z Google --> */

.section-reviews {
  padding: var(--section-padding);
  background: rgba(18, 18, 26, 0.92);
  min-height: 420px; /* prevent layout shift when reviews load async */
}

.reviews-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  scrollbar-width: none;
}

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

.review-card {
  flex: 0 0 350px;
  scroll-snap-align: start;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.review-card:hover {
  border-color: var(--color-blue);
  box-shadow: var(--glow);
}

.review-stars {
  color: #FFB800;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--color-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-white);
  font-size: 1rem;
}

.review-author-name {
  font-weight: 600;
  color: var(--color-white);
  font-size: 0.95rem;
}

.review-google-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--color-gray);
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.reviews-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--color-white);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-nav button:hover {
  background: var(--color-blue);
  border-color: var(--color-blue);
}

.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gray);
  font-size: 0.9rem;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none;
}

.google-reviews-link:hover {
  border-color: var(--color-blue);
  color: var(--color-white);
  background: rgba(0, 102, 255, 0.05);
}

/* ============================================================
   SEKCJA KONTAKT / FORMULARZ
   ============================================================ */
/* <!-- SEKCJA: Formularz kontaktowy / wycena --> */

.section-contact {
  padding: var(--section-padding);
  background: rgba(10, 10, 15, 0.92);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 24px;
  font-size: 1.3rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item .material-symbols-outlined {
  color: var(--color-blue);
  font-size: 24px;
  margin-top: 2px;
}

.contact-info-item p {
  color: var(--color-light);
  margin: 0;
}

.contact-info-item a {
  color: var(--color-white);
  font-weight: 600;
}

.contact-form {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 40px;
  backdrop-filter: blur(10px);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-sm);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

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

.form-group select option {
  background: #12121A;
}

/* ============================================================
   FOOTER
   ============================================================ */
/* <!-- SEKCJA: Stopka --> */

.footer {
  background: rgba(18, 18, 26, 0.92);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  filter: brightness(1.05);
}

.footer-brand p {
  color: var(--color-gray);
  font-size: 0.9rem;
}

.footer h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: var(--color-white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--color-gray);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-blue);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--color-gray);
  font-size: 0.9rem;
}

.footer-contact-item .material-symbols-outlined {
  color: var(--color-blue);
  font-size: 18px;
}

.footer-contact-item a {
  color: var(--color-gray);
}

.footer-contact-item a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--color-gray);
  font-size: 0.85rem;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--color-blue);
  color: var(--color-white);
}

/* ============================================================
   STRONY PRAWNE (polityka prywatności, regulamin, cookies)
   ============================================================ */

.legal-page {
  padding: 140px 0 80px;
  background: rgba(10, 10, 15, 0.92);
  min-height: 100vh;
}

.legal-page .breadcrumbs {
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--color-gray);
}

.legal-page .breadcrumbs a {
  color: var(--color-gray);
}

.legal-page .breadcrumbs a:hover {
  color: var(--color-blue);
}

.legal-page .breadcrumbs span {
  color: var(--color-blue);
}

.legal-page h1 {
  margin-bottom: 40px;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.legal-content {
  max-width: 800px;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin: 40px 0 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 12px;
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-light);
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.legal-content li {
  padding: 8px 0 8px 20px;
  position: relative;
  font-size: 0.95rem;
  color: var(--color-light);
  line-height: 1.6;
}

.legal-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-blue);
  font-weight: 700;
}

.legal-content a {
  color: var(--color-blue);
}

.legal-updated {
  color: var(--color-gray);
  font-size: 0.85rem;
  font-style: italic;
  margin-bottom: 24px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.85rem;
}

.legal-table th,
.legal-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-light);
}

.legal-table th {
  background: rgba(26, 26, 46, 0.92);
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.legal-table td {
  background: var(--glass-bg);
}

@media (max-width: 640px) {
  .legal-table {
    font-size: 0.8rem;
  }

  .legal-table th,
  .legal-table td {
    padding: 8px 10px;
  }
}

/* ============================================================
   PODSTRONA USŁUGI - STYLE
   ============================================================ */

.service-hero {
  padding: 160px 0 80px;
  position: relative;
  background: rgba(18, 18, 26, 0.92);
  overflow: hidden;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0,102,255,0.1) 0%, transparent 50%);
}

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

.service-hero .breadcrumbs {
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--color-gray);
}

.service-hero .breadcrumbs a {
  color: var(--color-gray);
}

.service-hero .breadcrumbs a:hover {
  color: var(--color-blue);
}

.service-hero .breadcrumbs span {
  color: var(--color-blue);
}

.service-hero h1 {
  margin-bottom: 16px;
}

.service-hero p {
  font-size: 1.15rem;
  color: var(--color-gray);
  max-width: 600px;
}

/* Opis usługi */
.section-service-desc {
  padding: var(--section-padding);
  background: rgba(10, 10, 15, 0.92);
}

.service-desc-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-desc-text p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.service-scope {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 36px;
  backdrop-filter: blur(10px);
}

.service-scope h3 {
  margin-bottom: 20px;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.service-scope ul {
  list-style: none;
}

.service-scope li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-light);
  font-size: 0.95rem;
}

.service-scope li::before {
  content: '✓';
  color: var(--color-blue);
  font-weight: 700;
}

.service-scope li:last-child {
  border-bottom: none;
}

/* Producenci / partnerzy */
.section-partners {
  padding: 80px 0;
  background: rgba(18, 18, 26, 0.92);
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  align-items: center;
  justify-content: center;
}

.partners-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.partner-logo {
  background: transparent;
  border: none;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.3s, transform 0.3s;
  height: 80px; /* Consistent height across grid */
}

.partner-logo:hover {
  transform: translateY(-3px);
}

.partner-logo img {
  max-height: 50px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
}

.partner-logo span {
  color: var(--color-gray);
  font-size: 0.85rem;
}

/* CTA baner na podstronach */
.section-service-cta {
  padding: 80px 0;
  background: rgba(10, 10, 15, 0.92);
}

.service-cta-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(0,102,255,0.08) 0%, transparent 70%);
}

.service-cta-box h2 {
  position: relative;
  margin-bottom: 16px;
}

.service-cta-box p {
  position: relative;
  color: var(--color-gray);
  margin-bottom: 30px;
}

/* ============================================================
   KALKULATOR - STYLE
   ============================================================ */
/* <!-- SEKCJA: Kalkulator kosztów --> */

.calculator-page {
  padding: 140px 0 80px;
  background: rgba(10, 10, 15, 0.92);
  min-height: 100vh;
}

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

.calculator-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.calculator-progress::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.1);
}

.calculator-progress-bar {
  position: absolute;
  top: 20px;
  left: 0;
  height: 2px;
  background: var(--color-gradient);
  transition: width 0.5s ease;
}

.calc-step-indicator {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(26, 26, 46, 0.92);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gray);
  transition: var(--transition);
}

.calc-step-indicator.active {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: var(--color-white);
  box-shadow: var(--glow);
}

.calc-step-indicator.done {
  background: var(--color-blue-dark);
  border-color: var(--color-blue);
  color: var(--color-white);
}

.calculator-step {
  display: none;
  animation: fadeSlide 0.4s ease;
}

.calculator-step.active {
  display: block;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.calculator-step h2 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.calculator-step .step-subtitle {
  color: var(--color-gray);
  margin-bottom: 30px;
}

.calc-options {
  display: grid;
  gap: 12px;
}

.calc-option {
  background: var(--glass-bg);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: var(--border-radius-sm);
  padding: 18px 24px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-light);
  font-size: 0.95rem;
}

.calc-option:hover {
  border-color: var(--color-blue);
  background: rgba(0, 102, 255, 0.05);
}

.calc-option.selected {
  border-color: var(--color-blue);
  background: rgba(0, 102, 255, 0.1);
  box-shadow: var(--glow);
}

.calc-option-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  position: relative;
  transition: var(--transition);
}

.calc-option.selected .calc-option-radio {
  border-color: var(--color-blue);
}

.calc-option.selected .calc-option-radio::after {
  content: '';
  position: absolute;
  top: 4px; left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-blue);
}

.calc-option-check {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.calc-option.selected .calc-option-check {
  border-color: var(--color-blue);
  background: var(--color-blue);
}

.calc-option.selected .calc-option-check::after {
  content: '✓';
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 700;
}

.calculator-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

/* Wynik kalkulatora */
.calculator-result {
  text-align: center;
  padding: 40px;
}

.result-price-range {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
  margin: 24px 0;
  background: var(--color-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-disclaimer {
  color: var(--color-gray);
  font-size: 0.9rem;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.result-breakdown {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 24px;
  margin-bottom: 30px;
  text-align: left;
}

.result-breakdown h4 {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.result-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}

.result-item:last-child { border-bottom: none; }

.result-item span:first-child { color: var(--color-gray); }
.result-item span:last-child { color: var(--color-white); font-weight: 600; }

/* ============================================================
   STICKY CTA MOBILE
   ============================================================ */
/* <!-- Przycisk CTA przyklejony na dole ekranu (mobile) --> */

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  padding: 12px 20px;
  z-index: 900;
  gap: 10px;
}

.mobile-cta-bar .btn {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* Placeholder for gallery */
.gallery-placeholder {
  aspect-ratio: 4/3;
  background: rgba(26, 26, 46, 0.92);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  font-size: 0.85rem;
}



/* WhatsApp icon in contact section */
.contact-info-item .contact-icon-whatsapp,
.contact-info-item > span[style*="25D366"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* ============================================================
   GLOBAL FLOATING PARTICLES
   ============================================================ */
.global-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.g-particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: rgba(80, 150, 255, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 102, 255, 0.2);
  animation: particleFloat var(--dur) ease-in-out var(--delay) infinite;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.35;
  }
  25% {
    transform: translate(var(--drift), calc(var(--drift) * -0.7)) scale(1.1);
    opacity: 0.7;
  }
  50% {
    transform: translate(calc(var(--drift) * -0.5), var(--drift)) scale(0.9);
    opacity: 0.3;
  }
  75% {
    transform: translate(calc(var(--drift) * 0.8), calc(var(--drift) * 0.4)) scale(1.05);
    opacity: 0.6;
  }
}

/* Small bright dot particles */
.g-particle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 40%;
  transform: translate(-50%, -50%);
  background: rgba(100, 170, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(0, 102, 255, 0.6);
}

/* Reduce on mobile */
@media (max-width: 768px) {
  .g-particle:nth-child(n+8) { display: none; }
}

/* ============================================================
   OBSZAR DZIAŁANIA - local SEO (subtle, nearly invisible)
   ============================================================ */
.section-area {
  padding: 18px 0;
  background: rgba(10, 10, 15, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.area-text {
  font-size: 0.7rem;
  line-height: 1.8;
  color: rgba(180, 190, 210, 0.3);
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.area-label {
  color: rgba(180, 190, 210, 0.45);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.6rem;
  margin-right: 6px;
}

/* ============================================================
   IMAGE PROTECTION - prevent easy downloading of realizacje
   ============================================================ */
.gallery-item img,
.lightbox-image {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.gallery-item {
  -webkit-touch-callout: none;
  user-select: none;
}
