/* font-display: swap override dla Font Awesome (CDN nie ustawia) */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-solid-900.woff2") format("woff2");
}
@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-brands-400.woff2") format("woff2");
}

:root {
  --primary: #0066ff;
  --primary-dark: #0050cc;
  --primary-light: #e8f0fe;
  --accent: #00e1f1;
  --accent-dark: #00b891;
  --accent-glow: rgba(0, 212, 170, 0.4);
  --dark: #0a0f1c;
  --dark-secondary: #111827;
  --gray-900: #1a1f2e;
  --gray-800: #252b3b;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --warning: #f59e0b;
  --success: #10b981;
  --gradient-primary: linear-gradient(135deg, #0066ff 0%, #00d4aa 100%);
  --gradient-dark: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 100%);
  --gradient-hero: linear-gradient(
    160deg,
    #060a14 0%,
    #0d1a3a 40%,
    #080d1a 100%
  );
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ====================== NAVBAR ====================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 10, 20, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(6, 10, 20, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

/* ====================== BRAND LOGO (PNG) + LINE ANIMATION ====================== */
/* Używa: assets/img/logo.png (białe VOLT + turkusowe EL) */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

/* Idle: ultra-subtelny puls glow (zamiast "pulse opacity") */
@keyframes energyIdleLine {
  0%,
  100% {
    box-shadow: 0 0 8px rgba(0, 212, 170, 0.18);
    filter: drop-shadow(0 0 8px rgba(0, 212, 170, 0.18));
  }
  50% {
    box-shadow: 0 0 10px rgba(0, 212, 170, 0.26);
    filter: drop-shadow(0 0 10px rgba(0, 212, 170, 0.26));
  }
}
@keyframes energyIdleLogo {
  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(0, 212, 170, 0.18));
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(0, 212, 170, 0.26));
  }
}

.brand-line {
  width: 4px;
  height: 38px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  display: block;
  background: linear-gradient(to bottom, #9ff5fb66, #00e1f17a, #00e1f182);
  animation: energyIdleLine 4.5s ease-in-out infinite;
}

/* Scan: co 4s leci "promień" w dół */
.brand-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 140%;
  transform: translateY(-140%);
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 212, 170, 0) 15%,
    rgba(0, 212, 170, 0.95) 45%,
    rgba(0, 212, 170, 0) 75%,
    transparent 100%
  );
  animation: scanIdle 4s infinite;
}

@keyframes scanIdle {
  0% {
    transform: translateY(-140%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  25% {
    transform: translateY(120%);
    opacity: 0;
  }
  100% {
    transform: translateY(120%);
    opacity: 0;
  }
}

.brand-logo {
  height: 34px;
  width: auto;
  display: block;
  /* ważne: żeby hover nic nie "podskakiwał" */
  transform: translateY(0);
  animation: energyIdleLogo 4.5s ease-in-out infinite;
}

/* Hover: natychmiastowy scan + mocniejszy glow (8px -> 12px odczuwalne) */
.brand:hover .brand-line::after {
  animation: scanHover 0.6s ease-out 1;
}
@keyframes scanHover {
  0% {
    transform: translateY(-140%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(120%);
    opacity: 0;
  }
}

.brand:hover .brand-line {
  animation: none;
  box-shadow: 0 0 12px rgba(0, 212, 170, 0.3);
  filter: drop-shadow(0 0 12px rgba(0, 212, 170, 0.3)) brightness(1.06);
}
.brand:hover .brand-logo {
  animation: none;
  filter: drop-shadow(0 0 12px rgba(0, 212, 170, 0.3)) brightness(1.06);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Footer: troszkę mniejsze, żeby nie dominowało */
.footer .brand-logo {
  height: 28px;
}
.footer .brand-line {
  height: 32px;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
}

.nav-logo-text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

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

.nav-links a {
  text-decoration: none;
  color: var(--gray-400);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta-link {
  background: var(--gradient-primary) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  font-weight: 600 !important;
}

.nav-cta-link:hover {
  box-shadow: 0 0px 15px rgba(0, 102, 255, 0.4) !important;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

.nav-phone:hover {
  color: var(--white);
}

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

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  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);
}

/* ====================== HERO ====================== */
.hero {
  --mx: -999px;
  --my: -999px;
  min-height: 100vh;
  min-height: 100svh;
  background: url("../img/bg.webp") center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.75;
  mix-blend-mode: multiply;
  z-index: 0;
  pointer-events: none;
  -webkit-mask: radial-gradient(
    circle 180px at var(--mx) var(--my),
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.35) 35%,
    rgba(0, 0, 0, 0.7) 65%,
    rgba(0, 0, 0, 0.92) 85%,
    black 100%
  );
  mask: radial-gradient(
    circle 180px at var(--mx) var(--my),
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.35) 35%,
    rgba(0, 0, 0, 0.7) 65%,
    rgba(0, 0, 0, 0.92) 85%,
    black 100%
  );
}

/* Circuit animation background */
.hero-circuit-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  opacity: 0.07;
}

.circuit-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.circuit-path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.circuit-node {
  fill: var(--accent);
}

.energy-pulse {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px var(--accent));
}

/* Canvas for animated particles */
#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Grid pattern */
.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(0, 102, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 102, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 140px 24px 100px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

/* Hero text */
.hero-content {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px 6px 6px;
  background: rgba(0, 212, 170, 0.08);
  border: 1px solid rgba(0, 212, 170, 0.15);
  border-radius: 50px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-badge-dot {
  width: 26px;
  height: 26px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge-dot i {
  font-size: 10px;
  color: var(--dark);
}

.hero h1 {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero h1 .accent-text {
  color: var(--accent);
}

.hero-description {
  font-size: 17px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 12px;
  max-width: 60%;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  background: rgba(6, 10, 20, 0.01);
  border-radius: 8px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-local {
  font-size: 14px;
  color: #a7b2c7;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.45s both;
}

.hero-local i {
  color: var(--accent);
  margin-right: 6px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.5s both;
}
/* HERO – wzmocnienie czytelności tekstu (tylko w hero) */
.hero .hero-description {
  font-size: 1.125rem; /* lekko większe */
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88); /* jaśniej, ale nadal premium */
  max-width: 70%;
}
.hero .hero-lead {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}
.hero .hero-micro {
  font-size: 0.92rem;
  color: #d7d7d7;
}

/* Mobile – wyłącz ciężkie efekty hero */
@media (max-width: 768px) {
  .hero {
    background-image: none;
    background-color: #060a14;
  }
  .hero::before {
    display: none;
  }
  .hero-circuit-bg,
  #heroCanvas {
    display: none;
  }
  .hero .hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
  }
  .hero .hero-micro {
    font-size: 0.95rem;
  }
  .navbar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(6, 10, 20, 0.97);
  }
  .service-glass,
  .service-badge,
  .service-card--featured .service-desc,
  .stats-bar,
  .hero-card,
  .cookie-banner {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-accent {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 0px 13px rgba(0, 221, 255, 0.2);
}

.btn-accent:hover {
  box-shadow: 0 0px 10px rgba(0, 149, 255, 0.8);
}

.hero-call-btn {
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  padding: 12px 28px;
}

.hero-call-btn i {
  display: none;
}

.hero-call-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  line-height: 1;
}

.hero-call-number {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.hero-micro {
  font-size: 13px;
  color: var(--gray-500);
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-micro span {
  margin: 0 6px;
}

/* Hero visual side */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.2rem;
}

.hero-card {
  width: 100%;
  max-width: 440px;
  background: rgba(6, 10, 20, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: fadeInUp 0.8s ease 0.5s both;
  transform: translateZ(0);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-card-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  flex-shrink: 0;
}

.hero-card-title {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
}

.hero-card-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  margin-top: 2px;
}

.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.hero-check-item:hover {
  background: rgba(0, 212, 170, 0.05);
  border-color: rgba(0, 212, 170, 0.15);
}

.hero-check-icon {
  width: 34px;
  height: 34px;
  background: rgba(0, 212, 170, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 13px;
  flex-shrink: 0;
}

.hero-check-text {
  color: var(--gray-300);
  font-size: 14px;
  font-weight: 500;
}

.hero-check-done {
  margin-left: auto;
  color: var(--accent);
  font-size: 13px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* === hero visual === */

.hero-card {
  position: relative;
  z-index: 2;
}

/* ====================== SECTIONS COMMON ====================== */
.section {
  padding: 35px 0;
}
.section-dark {
  background: var(--dark);
}
.section-gray {
  background: var(--gray-50);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-dark .section-tag {
  background: rgba(0, 102, 255, 0.12);
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-dark .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
}

.section-dark .section-subtitle {
  color: var(--gray-400);
}

/* ====================== BRANDS ====================== */
.brands-section {
  padding: 50px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.brands-header {
  text-align: center;
  margin-bottom: 32px;
}

.brands-header p {
  font-size: 13px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.brands-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  cursor: default;
}

.brand-item img {
  width: 90px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) opacity(0.3);
  transition: filter 0.3s ease;
}

.brand-item:hover img {
  filter: none;
}

.brand-item[data-brand="legrand"]:hover    { color: #E0001A; }
.brand-item[data-brand="schneider"]:hover  { color: #3DCD58; }
.brand-item[data-brand="abb"]:hover        { color: #FF000F; }
.brand-item[data-brand="hager"]:hover      { color: #E4600A; }
.brand-item[data-brand="fibaro"]:hover     { color: #5B2D8E; }
.brand-item[data-brand="loxone"]:hover     { color: #69C350; }
.brand-item[data-brand="hikvision"]:hover  { color: #D71820; }
.brand-item[data-brand="satel"]:hover      { color: #E30613; }

/* ====================== SERVICES ====================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--gradient-primary);
  color: var(--white);
}

.service-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-benefits {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-600);
}

.service-benefit i {
  color: var(--accent);
  font-size: 11px;
  width: 16px;
}

/* ====================== FEATURES ====================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 102, 255, 0.25);
  transform: translateY(-4px);
}

.feature-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(0, 102, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrap {
  background: var(--gradient-primary);
  color: white;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ====================== PROCESS ====================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--gray-200);
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  font-family: "JetBrains Mono", monospace;
  transition: all 0.3s ease;
}

.process-step:hover .process-number {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--primary);
}

.process-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ====================== PORTFOLIO ====================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.portfolio-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-img {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 15, 28, 0.88) 0%,
    rgba(10, 15, 28, 0.2) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.portfolio-overlay h3 {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
}
.portfolio-overlay p {
  color: var(--gray-400);
  font-size: 13px;
  margin-top: 4px;
}

/* ====================== GALLERY PREVIEW (index) ====================== */
.gallery-preview {
  margin-top: 48px;
}
.gallery-preview-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-preview-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-md);
  display: block;
  position: relative;
}
.gallery-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.gallery-preview-item:hover img {
  transform: scale(1.07);
}
.gallery-preview-item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-preview-item:hover::after {
  opacity: 1;
}
.gallery-preview-cta {
  text-align: center;
  margin-top: 32px;
}

/* ====================== GALLERY PAGE (realizacje.html) ====================== */
.page-hero {
  padding: 140px 0 60px;
  background: var(--bg-dark);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p {
  color: var(--gray-400);
  font-size: 18px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.gallery-filter {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gray-400);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.gallery-filter:hover,
.gallery-filter.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-md);
  display: block;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.gallery-item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item.hidden {
  display: none;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ====================== TESTIMONIALS ====================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: var(--warning);
  font-size: 14px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}

.testimonial-name {
  font-weight: 600;
  color: var(--dark);
  font-size: 15px;
}
.testimonial-role {
  font-size: 13px;
  color: var(--gray-500);
}

/* ====================== CTA ====================== */
.cta-section {
  padding: 100px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.cta-glow-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  background: rgba(0, 102, 255, 0.1);
}
.cta-glow-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: -100px;
  background: rgba(0, 212, 170, 0.08);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.cta-content p {
  font-size: 17px;
  color: var(--gray-400);
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-info {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-400);
  font-size: 14px;
}

.cta-info-item i {
  color: var(--accent);
  font-size: 16px;
}

/* ====================== COVERAGE ====================== */
.coverage-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.coverage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.coverage-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  color: var(--gray-300);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.coverage-item:hover {
  border-color: rgba(0, 212, 170, 0.2);
  background: rgba(0, 212, 170, 0.04);
}

.coverage-item i {
  color: var(--accent);
}

.coverage-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
}

#coverage-leaflet {
  width: 100%;
  height: 350px;
}

.map-label {
  background: rgba(6, 10, 20, 0.85) !important;
  border: 1px solid rgba(0, 225, 241, 0.4) !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 3px 8px !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  white-space: nowrap;
}
.map-label::before {
  display: none !important;
}

/* ====================== CONTACT ====================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-card p {
  font-size: 14px;
  color: var(--gray-500);
}
.contact-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}
.contact-card a:hover {
  text-decoration: underline;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form-wrap h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.contact-form-wrap > p {
  color: var(--gray-500);
  font-size: 14px;
  margin-bottom: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--dark);
  transition: all 0.2s ease;
  outline: none;
  background: var(--white);
}

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

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

.form-submit {
  margin-top: 8px;
}
.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
}

/* ====================== FOOTER ====================== */
.footer {
  background: var(--dark);
  color: var(--gray-400);
  padding: 80px 0 0;
}

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

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.footer h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.footer-bottom a {
  color: var(--gray-400);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--white);
}
.footer-legal {
  display: flex;
  gap: 20px;
}

/* ====================== SCROLL TOP ====================== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover {
  transform: translateY(-3px);
}

/* ====================== COOKIE ====================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 15, 28, 0.97);
  color: var(--gray-300);
  padding: 20px 24px;
  z-index: 9999;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: none;
  backdrop-filter: blur(20px);
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-inner p {
  font-size: 14px;
  flex: 1;
}

.cookie-btns {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.cookie-accept {
  background: var(--accent);
  color: var(--dark);
}
.cookie-decline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gray-300);
}

/* ====================== ANIMATIONS ====================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-description,
  .hero-local {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-micro {
    text-align: center;
  }
  .hero-visual {
    max-width: 440px;
    margin: 0 auto;
  }
  .services-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .process-grid::before {
    display: none;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid,
  .coverage-content {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(6, 10, 20, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px;
    gap: 8px;
    transform: translateY(-110%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    display: block;
    padding: 16px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 15px;
  }
  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
  }
  .nav-links .nav-cta-link {
    border-color: transparent;
    text-align: center;
    margin-top: 8px;
  }
  .nav-phone {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .services-grid,
  .features-grid,
  .portfolio-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .coverage-list {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 50px 0;
  }
  .container {
    padding: 0 16px;
  }
  .hero-container {
    padding: 110px 16px 60px;
  }
  .contact-form-wrap {
    padding: 24px;
  }
}

/* ====================== SERVICES (v2: featured + media cards) ====================== */

.services-grid {
  align-items: stretch;
}

/* Wspólny BG layer */
.service-card {
  position: relative;
}

.service-card .service-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  z-index: 0;
  transition: transform 0.35s ease;
}

/* Overlay dla czytelności */
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(10, 15, 28, 0.72) 0%,
    rgba(10, 15, 28, 0.55) 35%,
    rgba(10, 15, 28, 0.85) 100%
  );
  z-index: 0;
  pointer-events: none;
}

/* Treść ponad tłem */
.service-card > * {
  position: relative;
  z-index: 1;
}

/* Badge (cichy social proof) */
.service-featured-top {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 14px;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 225, 241, 0.14);
  border: 1px solid rgba(0, 225, 241, 0.22);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service-badge i {
  color: var(--accent);
}

.service-badge--alt {
  background: rgba(0, 102, 255, 0.16);
  border-color: rgba(0, 102, 255, 0.25);
}

.service-badge--alt i {
  color: rgba(255, 255, 255, 0.92);
}

/* Ostatni rząd (2 karty) – wyśrodkowane */
.services-row-center {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 769px) {
  .services-row-center {
    flex-direction: row;
    justify-content: center;
  }
  .services-row-center > .service-card {
    width: calc((100% - 48px) / 3);
    flex-shrink: 0;
  }
}

/* Małe karty: ciemny styl, podbijamy czytelność */
.service-card--media {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(6, 10, 20, 0.35);
}

/* Linia tytułu: ikona + tekst w jednej linii */
.service-titleline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.service-card--media h3 {
  color: var(--white);
  margin: 0;
}

.service-mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(0, 225, 241, 0.12);
  border: 1px solid rgba(0, 225, 241, 0.18);
  color: var(--accent);
  flex-shrink: 0;
}

/* Glass panel pod tekstem (blur + rounded) */
.service-glass {
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(6, 10, 20, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service-glass p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

/* FEATURED */
.service-card--featured {
  grid-column: 1 / -1;
  padding: 44px;
  border-radius: var(--radius-xl);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(6, 10, 20, 0.35);
}

.service-card--featured::after {
  border-radius: var(--radius-xl);
  background: linear-gradient(
    90deg,
    rgba(10, 15, 28, 0.82) 0%,
    rgba(10, 15, 28, 0.55) 45%,
    rgba(10, 15, 28, 0.88) 100%
  );
}

.service-card--featured .service-bg {
  border-radius: var(--radius-xl);
}

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

.service-card--featured h3 {
  color: var(--white);
  margin: 0;
  font-size: 24px;
}

.service-kicker {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 13px;
}

.service-card--featured .service-desc {
  color: rgba(255, 255, 255, 0.9);
  max-width: 78ch;
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(6, 10, 20, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.service-card--featured .service-benefits .service-benefit {
  color: rgba(255, 255, 255, 0.84);
}

.service-card--featured .service-benefits i {
  color: var(--accent);
}

/* Hover: premium, nie kasyno */
.service-card--media:hover,
.service-card--featured:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(0, 225, 241, 0.12);
  border-color: rgba(0, 225, 241, 0.18);
}

.service-card--media:hover .service-bg,
.service-card--featured:hover .service-bg {
  transform: scale(1.06);
}

/* Motion safety — covered by global prefers-reduced-motion rule */

/* Mobile: featured dalej premium, ale ciaśniej */
@media (max-width: 768px) {
  .service-card--featured {
    padding: 28px;
  }
  .service-top {
    align-items: flex-start;
  }
  .service-card--featured .service-desc {
    max-width: 100%;
  }
}

/* STATS BAR */
.stats-bar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(0, 225, 241, 0.18);
  border-radius: 16px;
  padding: 1.4rem 1.2rem;
  backdrop-filter: blur(10px);
  margin-bottom: 1.2rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.8rem;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 225, 241, 0.3),
    transparent
  );
}
.stat-icon {
  font-size: 1.1rem;
  color: rgba(0, 225, 241, 0.4);
  margin-bottom: 0.6rem;
}
.stat-number {
  font-family: "JetBrains Mono", monospace;
  font-size: 2rem;
  font-weight: 700;
  color: #00e1f1;
  line-height: 1;
  letter-spacing: -1px;
}
.stat-suffix {
  font-size: 1.2rem;
  color: rgba(0, 225, 241, 0.6);
}
.stat-prefix {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(0, 225, 241, 0.5);
  margin-right: 4px;
  vertical-align: middle;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 0.5rem;
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
}

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews-aggregate {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.reviews-score {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.reviews-stars-row {
  display: flex;
  gap: 0.25rem;
  font-size: 1.5rem;
  color: var(--warning);
}
.reviews-count {
  font-size: 0.9rem;
  color: var(--gray-400);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.review-card {
  background: var(--gray-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.25s, transform 0.25s;
}
.review-card:hover {
  border-color: rgba(0, 225, 241, 0.3);
  transform: translateY(-3px);
}
.review-stars {
  display: flex;
  gap: 0.2rem;
  color: var(--warning);
  font-size: 1rem;
}
.review-text {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.7;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  flex-shrink: 0;
}
.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}
.reviews-cta {
  text-align: center;
}
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .reviews-aggregate {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ====================== FAQ ====================== */
.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: border-color 0.2s;
}

.faq-list details:hover {
  border-color: rgba(0, 225, 241, 0.25);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  padding-right: 54px;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  list-style: none;
  position: relative;
  user-select: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  padding: 0 22px 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-size: 15px;
}

.faq-list details p + p {
  padding-top: 0;
  padding-bottom: 22px;
  margin-top: -10px;
}

@media (max-width: 768px) {
  .faq-list summary {
    font-size: 15px;
    padding: 16px 48px 16px 16px;
  }
  .faq-list details p {
    padding: 0 16px 16px;
  }
}
