/* Modern Hero Section Styles - 2025 Corporate Design */
:root {
  --hero-primary: #ea384c;
  --hero-secondary: #3898EC;
  --hero-gradient-start: #ea384c;
  --hero-gradient-end: #c92a3a;
  --hero-text-light: #ffffff;
  --hero-text-dark: #0a1119;
  --hero-glass-bg: rgba(255, 255, 255, 0.08);
  --hero-glass-border: rgba(255, 255, 255, 0.15);
  --hero-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  --hero-blur: blur(8px);
  --hero-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --hero-spacing: 2rem;
  --hero-border-radius: 12px;
}

/* Modern Hero Section */
.modern-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  overflow: visible;
  background: linear-gradient(135deg, #0a1119 0%, #1a2332 50%, #0a1119 100%);
  contain: layout style paint;
  padding: 2rem 0;
  box-sizing: border-box;
}

.modern-hero-section > header.w-nav {
  align-self: stretch;
  width: 100%;
  padding: 1rem 0 0;
  z-index: 10;
}

.modern-hero-section > header.w-nav .kontant-nav-menu {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .modern-hero-section > header.w-nav .kontant-nav-menu {
    padding: 0 1rem;
  }
}

/* Parallax Container */
.hero-parallax-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.parallax-layer {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  will-change: transform;
}

.parallax-bg {
  background: 
    radial-gradient(circle at 15% 85%, rgba(var(--lava-primary), var(--lava-opacity-low)) 0%, transparent 60%),
    radial-gradient(circle at 85% 15%, rgba(var(--lava-secondary), var(--lava-opacity-low)) 0%, transparent 60%),
    radial-gradient(circle at 45% 45%, rgba(var(--lava-accent), var(--lava-opacity-low)) 0%, transparent 60%),
    var(--lava-base);
  animation: lavaFlow var(--lava-duration) var(--lava-easing) infinite;
}

/* Advanced CSS-only Lava Animation System */
:root {
  /* Animation timing */
  --lava-duration: 25s;
  --lava-easing: cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Base colors */
  --lava-primary: 234, 56, 76;
  --lava-secondary: 56, 152, 236;
  --lava-accent: 255, 193, 7;
  
  /* Opacity levels */
  --lava-opacity-low: 0.08;
  --lava-opacity-mid: 0.12;
  --lava-opacity-high: 0.18;
  
  /* Base gradient */
  --lava-base: linear-gradient(135deg, #0a1119 0%, #1a2332 50%, #0f1419 100%);
}

/* Optimized Lava Flow Animation */
@keyframes lavaFlow {
  0%, 100% {
    background: 
      radial-gradient(circle at 15% 85%, rgba(var(--lava-primary), var(--lava-opacity-low)) 0%, transparent 60%),
      radial-gradient(circle at 85% 15%, rgba(var(--lava-secondary), var(--lava-opacity-low)) 0%, transparent 60%),
      radial-gradient(circle at 45% 45%, rgba(var(--lava-accent), var(--lava-opacity-low)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1) rotate(0deg);
  }
  25% {
    background: 
      radial-gradient(circle at 65% 25%, rgba(var(--lava-primary), var(--lava-opacity-mid)) 0%, transparent 60%),
      radial-gradient(circle at 25% 65%, rgba(var(--lava-secondary), var(--lava-opacity-low)) 0%, transparent 60%),
      radial-gradient(circle at 75% 75%, rgba(var(--lava-accent), var(--lava-opacity-mid)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1.02) rotate(1deg);
  }
  50% {
    background: 
      radial-gradient(circle at 85% 65%, rgba(var(--lava-primary), var(--lava-opacity-high)) 0%, transparent 60%),
      radial-gradient(circle at 35% 85%, rgba(var(--lava-secondary), var(--lava-opacity-mid)) 0%, transparent 60%),
      radial-gradient(circle at 15% 25%, rgba(var(--lava-accent), var(--lava-opacity-high)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1.05) rotate(2deg);
  }
  75% {
    background: 
      radial-gradient(circle at 35% 75%, rgba(var(--lava-primary), var(--lava-opacity-mid)) 0%, transparent 60%),
      radial-gradient(circle at 75% 35%, rgba(var(--lava-secondary), var(--lava-opacity-high)) 0%, transparent 60%),
      radial-gradient(circle at 55% 55%, rgba(var(--lava-accent), var(--lava-opacity-mid)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1.02) rotate(1deg);
  }
}

/* Service-specific color schemes */
:root {
  /* Car Detailing - Blue/Teal */
  --detailing-primary: 56, 152, 236;
  --detailing-secondary: 0, 191, 255;
  --detailing-accent: 64, 224, 208;
  
  /* PPF Film - Purple/Violet */
  --ppf-primary: 138, 43, 226;
  --ppf-secondary: 75, 0, 130;
  --ppf-accent: 147, 51, 234;
  
  /* Paint Correction - Orange/Amber */
  --korekta-primary: 255, 140, 0;
  --korekta-secondary: 255, 193, 7;
  --korekta-accent: 255, 165, 0;
  
  /* Ceramic Coating - Emerald/Green */
  --ceramika-primary: 0, 201, 87;
  --ceramika-secondary: 34, 197, 94;
  --ceramika-accent: 16, 185, 129;
  
  /* Undercarriage Protection - Steel/Gray */
  --konserwacja-primary: 107, 114, 128;
  --konserwacja-secondary: 75, 85, 99;
  --konserwacja-accent: 55, 65, 81;
}

/* Optimized service-specific animations */
@keyframes lavaFlowDetailing {
  0%, 100% {
    background: 
      radial-gradient(circle at 15% 85%, rgba(var(--detailing-primary), var(--lava-opacity-low)) 0%, transparent 60%),
      radial-gradient(circle at 85% 15%, rgba(var(--detailing-secondary), var(--lava-opacity-low)) 0%, transparent 60%),
      radial-gradient(circle at 45% 45%, rgba(var(--detailing-accent), var(--lava-opacity-low)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1) rotate(0deg);
  }
  25% {
    background: 
      radial-gradient(circle at 65% 25%, rgba(var(--detailing-primary), var(--lava-opacity-mid)) 0%, transparent 60%),
      radial-gradient(circle at 25% 65%, rgba(var(--detailing-secondary), var(--lava-opacity-low)) 0%, transparent 60%),
      radial-gradient(circle at 75% 75%, rgba(var(--detailing-accent), var(--lava-opacity-mid)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1.02) rotate(1deg);
  }
  50% {
    background: 
      radial-gradient(circle at 85% 65%, rgba(var(--detailing-primary), var(--lava-opacity-high)) 0%, transparent 60%),
      radial-gradient(circle at 35% 85%, rgba(var(--detailing-secondary), var(--lava-opacity-mid)) 0%, transparent 60%),
      radial-gradient(circle at 15% 25%, rgba(var(--detailing-accent), var(--lava-opacity-high)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1.05) rotate(2deg);
  }
  75% {
    background: 
      radial-gradient(circle at 35% 75%, rgba(var(--detailing-primary), var(--lava-opacity-mid)) 0%, transparent 60%),
      radial-gradient(circle at 75% 35%, rgba(var(--detailing-secondary), var(--lava-opacity-high)) 0%, transparent 60%),
      radial-gradient(circle at 55% 55%, rgba(var(--detailing-accent), var(--lava-opacity-mid)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1.02) rotate(1deg);
  }
}

@keyframes lavaFlowPPF {
  0%, 100% {
    background: 
      radial-gradient(circle at 15% 85%, rgba(var(--ppf-primary), var(--lava-opacity-low)) 0%, transparent 60%),
      radial-gradient(circle at 85% 15%, rgba(var(--ppf-secondary), var(--lava-opacity-low)) 0%, transparent 60%),
      radial-gradient(circle at 45% 45%, rgba(var(--ppf-accent), var(--lava-opacity-low)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1) rotate(0deg);
  }
  25% {
    background: 
      radial-gradient(circle at 65% 25%, rgba(var(--ppf-primary), var(--lava-opacity-mid)) 0%, transparent 60%),
      radial-gradient(circle at 25% 65%, rgba(var(--ppf-secondary), var(--lava-opacity-low)) 0%, transparent 60%),
      radial-gradient(circle at 75% 75%, rgba(var(--ppf-accent), var(--lava-opacity-mid)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1.02) rotate(1deg);
  }
  50% {
    background: 
      radial-gradient(circle at 85% 65%, rgba(var(--ppf-primary), var(--lava-opacity-high)) 0%, transparent 60%),
      radial-gradient(circle at 35% 85%, rgba(var(--ppf-secondary), var(--lava-opacity-mid)) 0%, transparent 60%),
      radial-gradient(circle at 15% 25%, rgba(var(--ppf-accent), var(--lava-opacity-high)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1.05) rotate(2deg);
  }
  75% {
    background: 
      radial-gradient(circle at 35% 75%, rgba(var(--ppf-primary), var(--lava-opacity-mid)) 0%, transparent 60%),
      radial-gradient(circle at 75% 35%, rgba(var(--ppf-secondary), var(--lava-opacity-high)) 0%, transparent 60%),
      radial-gradient(circle at 55% 55%, rgba(var(--ppf-accent), var(--lava-opacity-mid)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1.02) rotate(1deg);
  }
}

@keyframes lavaFlowKorekta {
  0%, 100% {
    background: 
      radial-gradient(circle at 15% 85%, rgba(var(--korekta-primary), var(--lava-opacity-low)) 0%, transparent 60%),
      radial-gradient(circle at 85% 15%, rgba(var(--korekta-secondary), var(--lava-opacity-low)) 0%, transparent 60%),
      radial-gradient(circle at 45% 45%, rgba(var(--korekta-accent), var(--lava-opacity-low)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1) rotate(0deg);
  }
  25% {
    background: 
      radial-gradient(circle at 65% 25%, rgba(var(--korekta-primary), var(--lava-opacity-mid)) 0%, transparent 60%),
      radial-gradient(circle at 25% 65%, rgba(var(--korekta-secondary), var(--lava-opacity-low)) 0%, transparent 60%),
      radial-gradient(circle at 75% 75%, rgba(var(--korekta-accent), var(--lava-opacity-mid)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1.02) rotate(1deg);
  }
  50% {
    background: 
      radial-gradient(circle at 85% 65%, rgba(var(--korekta-primary), var(--lava-opacity-high)) 0%, transparent 60%),
      radial-gradient(circle at 35% 85%, rgba(var(--korekta-secondary), var(--lava-opacity-mid)) 0%, transparent 60%),
      radial-gradient(circle at 15% 25%, rgba(var(--korekta-accent), var(--lava-opacity-high)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1.05) rotate(2deg);
  }
  75% {
    background: 
      radial-gradient(circle at 35% 75%, rgba(var(--korekta-primary), var(--lava-opacity-mid)) 0%, transparent 60%),
      radial-gradient(circle at 75% 35%, rgba(var(--korekta-secondary), var(--lava-opacity-high)) 0%, transparent 60%),
      radial-gradient(circle at 55% 55%, rgba(var(--korekta-accent), var(--lava-opacity-mid)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1.02) rotate(1deg);
  }
}

@keyframes lavaFlowCeramika {
  0%, 100% {
    background: 
      radial-gradient(circle at 15% 85%, rgba(var(--ceramika-primary), var(--lava-opacity-low)) 0%, transparent 60%),
      radial-gradient(circle at 85% 15%, rgba(var(--ceramika-secondary), var(--lava-opacity-low)) 0%, transparent 60%),
      radial-gradient(circle at 45% 45%, rgba(var(--ceramika-accent), var(--lava-opacity-low)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1) rotate(0deg);
  }
  25% {
    background: 
      radial-gradient(circle at 65% 25%, rgba(var(--ceramika-primary), var(--lava-opacity-mid)) 0%, transparent 60%),
      radial-gradient(circle at 25% 65%, rgba(var(--ceramika-secondary), var(--lava-opacity-low)) 0%, transparent 60%),
      radial-gradient(circle at 75% 75%, rgba(var(--ceramika-accent), var(--lava-opacity-mid)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1.02) rotate(1deg);
  }
  50% {
    background: 
      radial-gradient(circle at 85% 65%, rgba(var(--ceramika-primary), var(--lava-opacity-high)) 0%, transparent 60%),
      radial-gradient(circle at 35% 85%, rgba(var(--ceramika-secondary), var(--lava-opacity-mid)) 0%, transparent 60%),
      radial-gradient(circle at 15% 25%, rgba(var(--ceramika-accent), var(--lava-opacity-high)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1.05) rotate(2deg);
  }
  75% {
    background: 
      radial-gradient(circle at 35% 75%, rgba(var(--ceramika-primary), var(--lava-opacity-mid)) 0%, transparent 60%),
      radial-gradient(circle at 75% 35%, rgba(var(--ceramika-secondary), var(--lava-opacity-high)) 0%, transparent 60%),
      radial-gradient(circle at 55% 55%, rgba(var(--ceramika-accent), var(--lava-opacity-mid)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1.02) rotate(1deg);
  }
}

@keyframes lavaFlowKonserwacja {
  0%, 100% {
    background: 
      radial-gradient(circle at 15% 85%, rgba(var(--konserwacja-primary), var(--lava-opacity-low)) 0%, transparent 60%),
      radial-gradient(circle at 85% 15%, rgba(var(--konserwacja-secondary), var(--lava-opacity-low)) 0%, transparent 60%),
      radial-gradient(circle at 45% 45%, rgba(var(--konserwacja-accent), var(--lava-opacity-low)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1) rotate(0deg);
  }
  25% {
    background: 
      radial-gradient(circle at 65% 25%, rgba(var(--konserwacja-primary), var(--lava-opacity-mid)) 0%, transparent 60%),
      radial-gradient(circle at 25% 65%, rgba(var(--konserwacja-secondary), var(--lava-opacity-low)) 0%, transparent 60%),
      radial-gradient(circle at 75% 75%, rgba(var(--konserwacja-accent), var(--lava-opacity-mid)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1.02) rotate(1deg);
  }
  50% {
    background: 
      radial-gradient(circle at 85% 65%, rgba(var(--konserwacja-primary), var(--lava-opacity-high)) 0%, transparent 60%),
      radial-gradient(circle at 35% 85%, rgba(var(--konserwacja-secondary), var(--lava-opacity-mid)) 0%, transparent 60%),
      radial-gradient(circle at 15% 25%, rgba(var(--konserwacja-accent), var(--lava-opacity-high)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1.05) rotate(2deg);
  }
  75% {
    background: 
      radial-gradient(circle at 35% 75%, rgba(var(--konserwacja-primary), var(--lava-opacity-mid)) 0%, transparent 60%),
      radial-gradient(circle at 75% 35%, rgba(var(--konserwacja-secondary), var(--lava-opacity-high)) 0%, transparent 60%),
      radial-gradient(circle at 55% 55%, rgba(var(--konserwacja-accent), var(--lava-opacity-mid)) 0%, transparent 60%),
      var(--lava-base);
    transform: scale(1.02) rotate(1deg);
  }
}

/* Optimized Service-specific background classes */
.modern-hero-section.felgi .parallax-bg {
  animation: lavaFlow var(--lava-duration) var(--lava-easing) infinite;
}

.modern-hero-section.detailing .parallax-bg {
  animation: lavaFlowDetailing var(--lava-duration) var(--lava-easing) infinite;
}

.modern-hero-section.ppf .parallax-bg {
  animation: lavaFlowPPF var(--lava-duration) var(--lava-easing) infinite;
}

.modern-hero-section.korekta .parallax-bg {
  animation: lavaFlowKorekta var(--lava-duration) var(--lava-easing) infinite;
}

.modern-hero-section.ceramika .parallax-bg {
  animation: lavaFlowCeramika var(--lava-duration) var(--lava-easing) infinite;
}

.modern-hero-section.konserwacja .parallax-bg {
  animation: lavaFlowKonserwacja var(--lava-duration) var(--lava-easing) infinite;
}

/* Hardware acceleration and performance optimizations */
.parallax-bg {
  will-change: transform, background;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .parallax-bg {
    animation: none !important;
    transform: none !important;
  }
  
  .modern-hero-section .parallax-bg {
    background: var(--lava-base);
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .parallax-bg {
    animation: none !important;
    background: var(--lava-base) !important;
  }
}

.parallax-overlay {
  background: 
    linear-gradient(135deg, rgba(10, 17, 25, 0.7) 0%, rgba(26, 35, 50, 0.5) 100%);
  backdrop-filter: var(--hero-blur);
  -webkit-backdrop-filter: var(--hero-blur);
}

.parallax-particles {
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(234, 56, 76, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(56, 152, 236, 0.2), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.1), transparent);
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Hero Content Container */
.hero-content-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: calc(100vh - 4rem);
  justify-content: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 900px;
  width: 100%;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--hero-glass-bg);
  border: 1px solid var(--hero-glass-border);
  border-radius: var(--hero-border-radius);
  backdrop-filter: var(--hero-blur);
  -webkit-backdrop-filter: var(--hero-blur);
  box-shadow: var(--hero-shadow);
  transition: var(--hero-transition);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--hero-text-light);
  margin-bottom: 0.5rem;
}

.hero-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.badge-icon {
  font-size: 1.2rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Hero Title */
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  color: var(--hero-text-light);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.title-line {
  display: block;
  opacity: 0;
  animation: slideInUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-gradient {
  background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.title-gradient::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(8px);
  opacity: 0.3;
  z-index: -1;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Subtitle */
.hero-subtitle {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 700px;
  margin-bottom: 0.5rem;
}

.subtitle-text {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--hero-text-light);
  margin: 0;
  opacity: 0.9;
  font-weight: 400;
  line-height: 1.4;
}

.subtitle-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: var(--hero-text-light);
  opacity: 0.8;
  font-weight: 500;
}

.highlight-text {
  font-weight: 500;
}

.highlight-accent {
  color: var(--hero-primary);
  font-weight: bold;
  font-size: 1.2em;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1rem 0;
}

/* Style dla button-darmowa-wycena w hero-actions */
.hero-actions .button-darmowa-wycena {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  max-width: 100%;
  flex-shrink: 0;
}

/* Dostosowanie odstępów między guzikami w hero-actions */
.hero-actions .button-darmowa-wycena + .btn {
  margin-top: 0.5rem;
}

/* Desktop - guziki obok siebie */
@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .hero-actions .button-darmowa-wycena {
    min-width: 300px;
    max-width: 400px;
  }
  
  .hero-actions .button-darmowa-wycena + .btn {
    margin-top: 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: var(--hero-border-radius);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--hero-transition);
  position: relative;
  overflow: hidden;
  min-width: 180px;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--hero-gradient-start) 0%, var(--hero-gradient-end) 100%);
  color: var(--hero-text-light);
  box-shadow: 0 4px 15px rgba(234, 56, 76, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(234, 56, 76, 0.35);
}

.btn-secondary {
  background: var(--hero-glass-bg);
  color: var(--hero-text-light);
  border: 1px solid var(--hero-glass-border);
  backdrop-filter: var(--hero-blur);
  -webkit-backdrop-filter: var(--hero-blur);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-icon {
  font-size: 1.2rem;
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active .btn-ripple {
  width: 300px;
  height: 300px;
}

/* Hero Trust */
.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.8rem 1rem;
  background: var(--hero-glass-bg);
  border: 1px solid var(--hero-glass-border);
  border-radius: var(--hero-border-radius);
  backdrop-filter: var(--hero-blur);
  -webkit-backdrop-filter: var(--hero-blur);
  transition: var(--hero-transition);
  min-width: 140px;
}

.trust-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

.trust-icon {
  font-size: 1.5rem;
}

.trust-text {
  font-size: 0.8rem;
  color: var(--hero-text-light);
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
}

/* Floating Elements */
.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(234, 56, 76, 0.06) 0%, rgba(56, 152, 236, 0.06) 100%);
  animation: floatElement 20s ease-in-out infinite;
}

.element-1 {
  width: 80px;
  height: 80px;
  top: 15%;
  left: 8%;
  animation-delay: 0s;
}

.element-2 {
  width: 50px;
  height: 50px;
  top: 65%;
  right: 12%;
  animation-delay: 7s;
}

.element-3 {
  width: 60px;
  height: 60px;
  bottom: 25%;
  left: 15%;
  animation-delay: 14s;
}

@keyframes floatElement {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-30px) rotate(120deg); }
  66% { transform: translateY(15px) rotate(240deg); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--hero-text-light);
  opacity: 0.6;
  cursor: pointer;
  transition: var(--hero-transition);
  z-index: 3;
}

.scroll-indicator:hover {
  opacity: 0.9;
  transform: translateX(-50%) translateY(-3px);
}

.scroll-line {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--hero-primary), transparent);
  animation: scrollPulse 3s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}

.scroll-text {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content-container {
    padding: 0 1rem;
    min-height: calc(100vh - 2rem);
  }
  
  .hero-content {
    gap: 1.2rem;
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 0.3rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin: 0.8rem 0;
  }
  
  .hero-actions .button-darmowa-wycena {
    min-width: 100%;
    max-width: 320px;
    font-size: clamp(16px, 4vw, 24px);
    padding: clamp(12px, 3vw, 20px) clamp(20px, 4vw, 32px);
  }
  
  .btn {
    min-width: 220px;
    padding: 1rem 1.5rem;
  }
  
  .hero-trust {
    gap: 1rem;
    margin-top: 1.2rem;
  }
  
  .trust-item {
    min-width: 120px;
    padding: 0.7rem 0.8rem;
  }
  
  .subtitle-highlight {
    flex-direction: column;
    gap: 0.3rem;
  }
  
  .floating-element {
    display: none; /* Hide on mobile for better performance */
  }
}

@media (max-width: 480px) {
  .hero-badge {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
    margin-bottom: 0.2rem;
  }
  
  .subtitle-text {
    font-size: clamp(1rem, 4vw, 1.3rem);
  }
  
  .btn {
    min-width: 200px;
    padding: 0.9rem 1.3rem;
    font-size: 0.9rem;
  }
  
  .trust-item {
    min-width: 100px;
    padding: 0.6rem 0.7rem;
  }
  
  .trust-icon {
    font-size: 1.3rem;
  }
  
  .trust-text {
    font-size: 0.75rem;
  }
  
  .scroll-indicator {
    bottom: 1rem;
  }
}

/* Performance Optimizations */
.modern-hero-section * {
  will-change: auto;
}

.modern-hero-section:hover * {
  will-change: transform;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .parallax-layer,
  .floating-element,
  .badge-icon,
  .scroll-line {
    animation: none;
  }
  
  .title-line {
    animation: none;
    opacity: 1;
  }
  
  .btn,
  .trust-item,
  .hero-badge {
    transition: none;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .hero-badge,
  .btn-secondary,
  .trust-item {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--hero-text-light);
  }
  
  .title-gradient {
    color: var(--hero-primary);
    -webkit-text-fill-color: var(--hero-primary);
  }
}

/* Cookie Management System Styles */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #0a1119 0%, #1a2332 100%);
  border-top: 3px solid #ea384c;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  padding: 20px;
  font-family: 'Unbounded', sans-serif;
  color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 800;
  color: #ea384c;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  opacity: 0.9;
}

.cookie-privacy-link {
  color: #ea384c;
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-privacy-link:hover {
  color: #ffffff;
  text-decoration: none;
  opacity: 1;
}

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

.cookie-buttons .btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Unbounded', sans-serif;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-width: 120px;
  /* Enhanced touch support for mobile */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.cookie-buttons .btn-primary {
  background: linear-gradient(135deg, #ea384c 0%, #c92a3a 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(234, 56, 76, 0.4);
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  min-width: 140px;
  position: relative;
  overflow: hidden;
}

.cookie-buttons .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.cookie-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #c92a3a 0%, #b02533 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(234, 56, 76, 0.5);
}

.cookie-buttons .btn-primary:hover::before {
  left: 100%;
}

.cookie-buttons .btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(234, 56, 76, 0.4);
}

.cookie-buttons .btn-secondary {
  background: linear-gradient(135deg, #3898EC 0%, #2c7cd6 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(56, 152, 236, 0.3);
  border: 2px solid transparent;
  font-weight: 600;
}

.cookie-buttons .btn-secondary:hover {
  background: linear-gradient(135deg, #2c7cd6 0%, #2563eb 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 152, 236, 0.4);
}

.cookie-buttons .btn-outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-weight: 500;
  opacity: 0.8;
  position: relative;
}

.cookie-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
  opacity: 0.9;
}

.cookie-buttons .btn-outline:active {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(0);
  opacity: 0.7;
}

/* Cookie Modal Styles */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.cookie-modal-content {
  background: linear-gradient(135deg, #0a1119 0%, #1a2332 100%);
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(234, 56, 76, 0.2);
}

.cookie-modal-header {
  padding: 24px 24px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.cookie-modal-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: #ea384c;
  font-family: 'Unbounded', sans-serif;
}

.close-modal {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: rgba(234, 56, 76, 0.2);
  color: #ea384c;
}

.cookie-modal-body {
  padding: 0 24px 24px 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Unbounded', sans-serif;
}

.cookie-category p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
  opacity: 0.8;
}

/* Toggle Switch Styles */
.switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 52px;
  height: 28px;
  /* Enhanced touch support */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .3s ease;
  border-radius: 999px;
  height: 100%;
  width: 100%;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  top: 3px;
  background-color: white;
  transition: .3s ease;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input:checked + .slider {
  background-color: #ea384c;
}

input:checked + .slider:before {
  transform: translateX(24px);
}

input:disabled + .slider {
  background-color: #3898EC;
  cursor: not-allowed;
}

input:disabled + .slider:before {
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cookie-modal-footer .btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Unbounded', sans-serif;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-width: 140px;
}

.cookie-modal-footer .btn-primary {
  background: linear-gradient(135deg, #ea384c 0%, #c92a3a 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(234, 56, 76, 0.4);
  border: 2px solid transparent;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  min-width: 160px;
  position: relative;
  overflow: hidden;
}

.cookie-modal-footer .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.cookie-modal-footer .btn-primary:hover {
  background: linear-gradient(135deg, #c92a3a 0%, #b02533 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(234, 56, 76, 0.5);
}

.cookie-modal-footer .btn-primary:hover::before {
  left: 100%;
}

.cookie-modal-footer .btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(234, 56, 76, 0.4);
}

.cookie-modal-footer .btn-secondary {
  background: linear-gradient(135deg, #3898EC 0%, #2c7cd6 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(56, 152, 236, 0.3);
  border: 2px solid transparent;
  font-weight: 600;
}

.cookie-modal-footer .btn-secondary:hover {
  background: linear-gradient(135deg, #2c7cd6 0%, #2563eb 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 152, 236, 0.4);
}

/* Responsive Design - Enhanced Mobile Experience */
@media (max-width: 768px) {
  #cookie-banner {
    padding: 16px;
    border-top-width: 2px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    max-width: 100%;
  }
  
  .cookie-text {
    min-width: auto;
    width: 100%;
  }
  
  .cookie-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .cookie-text p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 0;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
    gap: 8px;
    flex-wrap: wrap;
  }
  
  .cookie-buttons .btn {
    flex: 1;
    min-width: 100px;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 8px;
  }
  
  .cookie-buttons .btn-primary {
    font-size: 14px;
    padding: 12px 20px;
    min-width: 120px;
  }
  
  .cookie-buttons .btn-outline {
    opacity: 0.7;
  }
  
  .cookie-modal-content {
    margin: 16px;
    max-height: 90vh;
    border-radius: 16px;
  }
  
  .cookie-modal-header {
    padding: 20px 20px 0 20px;
  }
  
  .cookie-modal-header h2 {
    font-size: 22px;
  }
  
  .cookie-modal-body {
    padding: 0 20px 20px 20px;
  }
  
  .cookie-category {
    padding: 16px;
    margin-bottom: 16px;
  }
  
  .cookie-category-header {
    margin-bottom: 8px;
  }
  
  .cookie-category-header h3 {
    font-size: 16px;
  }
  
  .cookie-category p {
    font-size: 13px;
    line-height: 1.4;
  }
  
  .cookie-modal-footer {
    padding: 20px;
    flex-direction: column;
    gap: 12px;
  }
  
  .cookie-modal-footer .btn {
    width: 100%;
    min-width: auto;
    padding: 14px 20px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  #cookie-banner {
    padding: 12px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
  }
  
  .cookie-content {
    gap: 12px;
  }
  
  .cookie-text h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  
  .cookie-text p {
    font-size: 12px;
    line-height: 1.3;
  }
  
  .cookie-buttons {
    gap: 6px;
  }
  
  .cookie-buttons .btn {
    padding: 10px 12px;
    font-size: 12px;
    min-width: 80px;
    border-radius: 6px;
  }
  
  .cookie-buttons .btn-primary {
    font-size: 12px;
    padding: 10px 16px;
    min-width: 100px;
  }
  
  .cookie-buttons .btn-outline {
    opacity: 0.6;
    font-size: 11px;
  }
  
  .cookie-modal-content {
    margin: 12px;
    max-height: 95vh;
    border-radius: 12px;
  }
  
  .cookie-modal-header {
    padding: 16px 16px 0 16px;
  }
  
  .cookie-modal-header h2 {
    font-size: 18px;
  }
  
  .cookie-modal-body {
    padding: 0 16px 16px 16px;
  }
  
  .cookie-category {
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 6px;
  }
  
  .cookie-category-header h3 {
    font-size: 14px;
  }
  
  .cookie-category p {
    font-size: 12px;
    line-height: 1.3;
  }
  
  .cookie-modal-footer {
    padding: 16px;
    gap: 8px;
    flex-direction: column;
  }
  
  .cookie-modal-footer .btn {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  /* Toggle switches - smaller on mobile */
  .switch {
    width: 44px;
    height: 22px;
  }
  
  .slider:before {
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
  }
  
  input:checked + .slider:before {
    transform: translateX(22px);
  }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 360px) {
  #cookie-banner {
    padding: 10px;
  }
  
  .cookie-text h3 {
    font-size: 15px;
  }
  
  .cookie-text p {
    font-size: 11px;
  }
  
  .cookie-buttons .btn {
    padding: 8px 10px;
    font-size: 11px;
    min-width: 70px;
  }
  
  .cookie-buttons .btn-primary {
    font-size: 11px;
    padding: 8px 12px;
    min-width: 80px;
  }
  
  .cookie-buttons .btn-outline {
    opacity: 0.5;
    font-size: 10px;
  }
  
  .cookie-modal-content {
    margin: 8px;
  }
  
  .cookie-modal-header h2 {
    font-size: 16px;
  }
  
  .cookie-category-header h3 {
    font-size: 13px;
  }
  
  .cookie-category p {
    font-size: 11px;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  #cookie-banner {
    padding: 12px 16px;
  }
  
  .cookie-content {
    flex-direction: row;
    text-align: left;
    gap: 20px;
  }
  
  .cookie-text {
    flex: 1;
  }
  
  .cookie-buttons {
    flex-direction: row;
    width: auto;
  }
  
  .cookie-buttons .btn {
    min-width: 90px;
  }
  
  .cookie-modal-content {
    max-height: 85vh;
  }
}

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* --- Nav/Menu: force no background anywhere --- */
/* Header/nav container: strip all backgrounds, blur, shadows, borders */
.w-nav {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* Menu container and items: ensure transparent backgrounds */
.w-nav-menu,
.nav-menu,
.w-nav-link,
.nav-link,
.w-dropdown,
.w-dropdown-toggle,
.dropdown-toggle,
.w-nav-button,
.w-icon-nav-menu,
.kontant-nav-menu {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}

/* Hover/focus states: keep transparent */
.w-nav-link:hover,
.nav-link:hover,
.w-dropdown-toggle:hover,
.dropdown-toggle:hover,
.w-nav-link:focus,
.nav-link:focus,
.w-dropdown-toggle:focus,
.dropdown-toggle:focus {
  background: transparent !important;
  background-color: transparent !important;
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. CUSTOM FOR WEBFLOW: Removed the input[type="submit"] selector to reduce
 *    specificity and defer to the .w-button selector
 */
button,
html input[type="button"],
input[type="reset"] {
  -webkit-appearance: button;
  appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type='checkbox'],
input[type='radio'] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. CUSTOM FOR WEBFLOW: changed from `textfield` to `none` to normalize iOS rounded input
 * 2. CUSTOM FOR WEBFLOW: box-sizing: content-box rule removed
 *    (similar to normalize.css >=4.0.0)
 */
input[type='search'] {
  -webkit-appearance: none;
  appearance: none;
  /* 1 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

@font-face {
  font-family: 'webflow-icons';
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBiUAAAC8AAAAYGNtYXDpP+a4AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZmhS2XEAAAGAAAADHGhlYWQTFw3HAAAEnAAAADZoaGVhCXYFgQAABNQAAAAkaG10eCe4A1oAAAT4AAAAMGxvY2EDtALGAAAFKAAAABptYXhwABAAPgAABUQAAAAgbmFtZSoCsMsAAAVkAAABznBvc3QAAwAAAAAHNAAAACAAAwP4AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gPpA//9//8AAAAAACDmAOkA//3//wAB/+MaBBcIAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEBIAAAAyADgAAFAAAJAQcJARcDIP5AQAGA/oBAAcABwED+gP6AQAABAOAAAALgA4AABQAAEwEXCQEH4AHAQP6AAYBAAcABwED+gP6AQAAAAwDAAOADQALAAA8AHwAvAAABISIGHQEUFjMhMjY9ATQmByEiBh0BFBYzITI2PQE0JgchIgYdARQWMyEyNj0BNCYDIP3ADRMTDQJADRMTDf3ADRMTDQJADRMTDf3ADRMTDQJADRMTAsATDSANExMNIA0TwBMNIA0TEw0gDRPAEw0gDRMTDSANEwAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFVz+fAGEAAAAAAL//f+9BAMDwwAEAAkAABcBJwEXAwE3AQdpA5ps/GZsbAOabPxmbEMDmmz8ZmwDmvxmbAOabAAAAgAA/8AEAAPAAB0AOwAABSInLgEnJjU0Nz4BNzYzMTIXHgEXFhUUBw4BBwYjNTI3PgE3NjU0Jy4BJyYjMSIHDgEHBhUUFx4BFxYzAgBqXV6LKCgoKIteXWpqXV6LKCgoKIteXWpVSktvICEhIG9LSlVVSktvICEhIG9LSlVAKCiLXl1qal1eiygoKCiLXl1qal1eiygoZiEgb0tKVVVKS28gISEgb0tKVVVKS28gIQABAAABwAIAA8AAEgAAEzQ3PgE3NjMxFSIHDgEHBhUxIwAoKIteXWpVSktvICFmAcBqXV6LKChmISBvS0pVAAAAAgAA/8AFtgPAADIAOgAAARYXHgEXFhUUBw4BBwYHIxUhIicuAScmNTQ3PgE3NjMxOAExNDc+ATc2MzIXHgEXFhcVATMJATMVMzUEjD83NlAXFxYXTjU1PQL8kz01Nk8XFxcXTzY1PSIjd1BQWlJJSXInJw3+mdv+2/7c25MCUQYcHFg5OUA/ODlXHBwIAhcXTzY1PTw1Nk8XF1tQUHcjIhwcYUNDTgL+3QFt/pOTkwABAAAAAQAAmM7nP18PPPUACwQAAAAAANciZKUAAAAA1yJkpf/9/70FtgPDAAAACAACAAAAAAAAAAEAAAPA/8AAAAW3//3//QW2AAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAASAEAADgBAAAwAQAAJ0EAP/9BAAAAAQAAAAFtwAAAAAAAAAKABQAHgAyAEYAjACiAL4BFgE2AY4AAAABAAAADAA8AAMAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADQAAAAEAAAAAAAIABwCWAAEAAAAAAAMADQBIAAEAAAAAAAQADQCrAAEAAAAAAAUACwAnAAEAAAAAAAYADQBvAAEAAAAAAAoAGgDSAAMAAQQJAAEAGgANAAMAAQQJAAIADgCdAAMAAQQJAAMAGgBVAAMAAQQJAAQAGgC4AAMAAQQJAAUAFgAyAAMAAQQJAAYAGgB8AAMAAQQJAAoANADsd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzUmVndWxhcgBSAGUAZwB1AGwAYQByd2ViZmxvdy1pY29ucwB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==") format('truetype');
  font-weight: normal;
  font-style: normal;
}

[class^="w-icon-"],
[class*=" w-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'webflow-icons' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.w-icon-nav-menu:before {
  content: "\e602";
}

.w-icon-arrow-down:before,
.w-icon-dropdown-toggle:before {
  content: "\e603";
}

.w-icon-file-upload-remove:before {
  content: "\e900";
}

.w-icon-file-upload-icon:before {
  content: "\e903";
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* max-width: 100%; */
}

html {
  height: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background-color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #333;
  overflow-x: hidden;
  max-width: 100%;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

html.w-mod-touch * {
  background-attachment: scroll !important;
}

.w-block {
  display: block;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.w-clearfix:before,
.w-clearfix:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-clearfix:after {
  clear: both;
}

.w-hidden {
  display: none;
}

.w-button {
  display: inline-block;
  padding: 9px 15px;
  background-color: #3898EC;
  color: white;
  border: 0;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
}

.button-darmowa-wycena {
  --borderWidth: 3px;
  --buttonRadius: 100px;
  --btn-bg: #0a1119;
  --btn-bg-hover: #0d1520;
  --g1: #1098ad;
  --g2: #0ea5e9;
  --g3: #3898EC;
  --g4: #0ea5e9;
  --g5: #1098ad;
  --g6: #0ea5e9;
  --g7: #3898EC;
  --g8: #1098ad;
  position: relative;
  display: block;
  margin: 20px auto;
  align-items: center;
  justify-content: center;
  z-index: 0;
  border: var(--borderWidth) solid transparent;
  border-radius: var(--buttonRadius);
  background: linear-gradient(var(--btn-bg), var(--btn-bg)) padding-box,
    linear-gradient(60deg, var(--g1), var(--g2), var(--g3), var(--g4), var(--g5), var(--g6), var(--g7), var(--g8)) border-box;
  background-size: auto, 300% 300%;
  color: #ffffff;
  padding: 20px 32px;
  font-size: clamp(18px, 2vw + 8px, 28px);
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  animation: animatedgradient 11s ease infinite alternate;
}

.button-darmowa-wycena:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px rgba(16, 152, 173, 0.3), 0 8px 16px rgba(0, 0, 0, 0.2);
  border-color: rgba(16, 152, 173, 0.8);
  background: linear-gradient(#0d1520, #0d1520) padding-box,
    linear-gradient(60deg, #1098ad, #0ea5e9, #3898EC, #0ea5e9, #1098ad, #0ea5e9, #3898EC, #1098ad) border-box;
  color: #ffffff;
  animation: colorShift 3s ease-in-out infinite alternate;
}

@keyframes colorShift {
  0% {
    border-color: rgba(16, 152, 173, 0.8);
    box-shadow: 0 20px 40px rgba(16, 152, 173, 0.3), 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  25% {
    border-color: rgba(14, 165, 233, 0.8);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3), 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  50% {
    border-color: rgba(56, 152, 236, 0.8);
    box-shadow: 0 20px 40px rgba(56, 152, 236, 0.3), 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  75% {
    border-color: rgba(14, 165, 233, 0.8);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.3), 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  100% {
    border-color: rgba(16, 152, 173, 0.8);
    box-shadow: 0 20px 40px rgba(16, 152, 173, 0.3), 0 8px 16px rgba(0, 0, 0, 0.2);
  }
}

.button-darmowa-wycena:active {
  transform: translateY(-1px) scale(1.01);
  transition: all 0.1s ease;
}

@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

input.w-button {
  -webkit-appearance: button;
  appearance: button;
}

html[data-w-dynpage] [data-w-cloak] {
  color: transparent !important;
}

.w-code-block {
  margin: unset;
}

pre.w-code-block code {
  all: inherit;
}

.w-optimization {
  display: contents;
}

.w-webflow-badge,
.w-webflow-badge>img {
  box-sizing: unset;
  width: unset;
  height: unset;
  max-height: unset;
  max-width: unset;
  min-height: unset;
  min-width: unset;
  margin: unset;
  padding: unset;
  float: unset;
  clear: unset;
  border: unset;
  border-radius: unset;
  background: unset;
  background-image: unset;
  background-position: unset;
  background-size: unset;
  background-repeat: unset;
  background-origin: unset;
  background-clip: unset;
  background-attachment: unset;
  background-color: unset;
  box-shadow: unset;
  transform: unset;
  transition: unset;
  direction: unset;
  font-family: unset;
  font-weight: unset;
  color: unset;
  font-size: unset;
  line-height: unset;
  font-style: unset;
  font-variant: unset;
  text-align: unset;
  letter-spacing: unset;
  text-decoration: unset;
  text-indent: unset;
  text-transform: unset;
  list-style-type: unset;
  text-shadow: unset;
  vertical-align: unset;
  cursor: unset;
  white-space: unset;
  word-break: unset;
  word-spacing: unset;
  word-wrap: unset;
}

.w-webflow-badge {
  position: fixed !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 2147483647 !important;
  top: auto !important;
  right: 12px !important;
  bottom: 12px !important;
  left: auto !important;
  color: #aaadb0 !important;
  background-color: #fff !important;
  border-radius: 3px !important;
  padding: 6px !important;
  font-size: 12px !important;
  line-height: 14px !important;
  text-decoration: none !important;
  transform: none !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  overflow: unset !important;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.w-webflow-badge>img {
  position: unset;
  display: inline-block !important;
  visibility: unset !important;
  opacity: 1 !important;
  vertical-align: middle !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  margin-bottom: 10px;
}

h1 {
  font-size: 38px;
  line-height: 44px;
  margin-top: 20px;
}

h2 {
  font-size: 32px;
  line-height: 36px;
  margin-top: 20px;
}

h3 {
  font-size: 24px;
  line-height: 30px;
  margin-top: 20px;
}

h4 {
  font-size: 18px;
  line-height: 24px;
  margin-top: 10px;
}

h5 {
  font-size: 14px;
  line-height: 20px;
  margin-top: 10px;
}

h6 {
  font-size: 12px;
  line-height: 18px;
  margin-top: 10px;
}

p {
  margin-top: 0;
  margin-bottom: 10px;
}

blockquote {
  margin: 0 0 10px 0;
  padding: 10px 20px;
  border-left: 5px solid #E2E2E2;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
}

figure {
  margin: 0;
  margin-bottom: 10px;
}

figcaption {
  margin-top: 5px;
  text-align: center;
}

ul,
ol {
  margin-top: 0px;
  margin-bottom: 10px;
  padding-left: 40px;
}




fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

button,
[type='button'],
[type='reset'] {
  border: 0;
  cursor: pointer;
  -webkit-appearance: button;
  appearance: button;
}


label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.w-input,
.w-select {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}

.w-input::placeholder,
.w-select::placeholder {
  color: #999;
}

.w-input:focus,
.w-select:focus {
  border-color: #3898EC;
  outline: 0;
}

.w-input[disabled],
.w-select[disabled],
.w-input[readonly],
.w-select[readonly],
fieldset[disabled] .w-input,
fieldset[disabled] .w-select {
  cursor: not-allowed;
}

.w-input[disabled]:not(.w-input-disabled),
.w-select[disabled]:not(.w-input-disabled),
.w-input[readonly],
.w-select[readonly],
fieldset[disabled]:not(.w-input-disabled) .w-input,
fieldset[disabled]:not(.w-input-disabled) .w-select {
  background-color: #eeeeee;
}

textarea.w-input,
textarea.w-select {
  height: auto;
}

.w-select {
  background-color: #f3f3f3;
}

.w-select[multiple] {
  height: auto;
}




.w-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 940px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.w-container:before,
.w-container:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-container:after {
  clear: both;
}

.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}

.w-row:before,
.w-row:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-row:after {
  clear: both;
}

.w-row .w-row {
  margin-left: 0;
  margin-right: 0;
}

.w-col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}

.w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}

.w-col-1 {
  width: 8.33333333%;
}

.w-col-2 {
  width: 16.66666667%;
}

.w-col-3 {
  width: 25%;
}

.w-col-4 {
  width: 33.33333333%;
}

.w-col-5 {
  width: 41.66666667%;
}

.w-col-6 {
  width: 50%;
}

.w-col-7 {
  width: 58.33333333%;
}

.w-col-8 {
  width: 66.66666667%;
}

.w-col-9 {
  width: 75%;
}

.w-col-10 {
  width: 83.33333333%;
}

.w-col-11 {
  width: 91.66666667%;
}

.w-col-12 {
  width: 100%;
}

.w-hidden-main {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .w-container {
    max-width: 728px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .button-darmowa-wycena {
    width: 80%;
    font-size: 13px;
    padding: 6px 12px;
  }

  .w-hidden-main {
    display: inherit !important;
  }

  .w-hidden-medium {
    display: none !important;
  }

  .w-col-medium-1 {
    width: 8.33333333%;
  }

  .w-col-medium-2 {
    width: 16.66666667%;
  }

  .w-col-medium-3 {
    width: 25%;
  }

  .w-col-medium-4 {
    width: 33.33333333%;
  }

  .w-col-medium-5 {
    width: 41.66666667%;
  }

  .w-col-medium-6 {
    width: 50%;
  }

  .w-col-medium-7 {
    width: 58.33333333%;
  }

  .w-col-medium-8 {
    width: 66.66666667%;
  }

  .w-col-medium-9 {
    width: 75%;
  }

  .w-col-medium-10 {
    width: 83.33333333%;
  }

  .w-col-medium-11 {
    width: 91.66666667%;
  }

  .w-col-medium-12 {
    width: 100%;
  }

  .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }
}

@media screen and (max-width: 767px) {
  .w-hidden-main {
    display: inherit !important;
  }

  .w-hidden-medium {
    display: inherit !important;
  }

  .w-hidden-small {
    display: none !important;
  }

  .w-row,
  .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }

  .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }

  .w-col-small-1 {
    width: 8.33333333%;
  }

  .w-col-small-2 {
    width: 16.66666667%;
  }

  .w-col-small-3 {
    width: 25%;
  }

  .w-col-small-4 {
    width: 33.33333333%;
  }

  .w-col-small-5 {
    width: 41.66666667%;
  }

  .w-col-small-6 {
    width: 50%;
  }

  .w-col-small-7 {
    width: 58.33333333%;
  }

  .w-col-small-8 {
    width: 66.66666667%;
  }

  .w-col-small-9 {
    width: 75%;
  }

  .w-col-small-10 {
    width: 83.33333333%;
  }

  .w-col-small-11 {
    width: 91.66666667%;
  }

  .w-col-small-12 {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .w-container {
    max-width: none;
  }

  .w-hidden-main {
    display: inherit !important;
  }

  .w-hidden-medium {
    display: inherit !important;
  }

  .w-hidden-small {
    display: inherit !important;
  }

  .w-hidden-tiny {
    display: none !important;
  }

  .w-col {
    width: 100%;
  }

  .w-col-tiny-1 {
    width: 8.33333333%;
  }

  .w-col-tiny-2 {
    width: 16.66666667%;
  }

  .w-col-tiny-3 {
    width: 25%;
  }

  .w-col-tiny-4 {
    width: 33.33333333%;
  }

  .w-col-tiny-5 {
    width: 41.66666667%;
  }

  .w-col-tiny-6 {
    width: 50%;
  }

  .w-col-tiny-7 {
    width: 58.33333333%;
  }

  .w-col-tiny-8 {
    width: 66.66666667%;
  }

  .w-col-tiny-9 {
    width: 75%;
  }

  .w-col-tiny-10 {
    width: 83.33333333%;
  }

  .w-col-tiny-11 {
    width: 91.66666667%;
  }

  .w-col-tiny-12 {
    width: 100%;
  }
}

.w-widget {
  position: relative;
}

.w-widget-map {
  width: 100%;
  height: 400px;
}

.w-widget-map label {
  width: auto;
  display: inline;
}

.w-widget-map img {
  max-width: inherit;
}

.w-widget-map .gm-style-iw {
  text-align: center;
}

.w-widget-map .gm-style-iw>button {
  display: none !important;
}

.w-widget-twitter {
  overflow: hidden;
}

.w-widget-twitter-count-shim {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 28px;
  height: 20px;
  text-align: center;
  background: white;
  border: #758696 solid 1px;
  border-radius: 3px;
}

.w-widget-twitter-count-shim * {
  pointer-events: none;
  user-select: none;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-inner {
  position: relative;
  font-size: 15px;
  line-height: 12px;
  text-align: center;
  color: #999;
  font-family: serif;
}

.w-widget-twitter-count-shim .w-widget-twitter-count-clear {
  position: relative;
  display: block;
}

.w-widget-twitter-count-shim.w--large {
  width: 36px;
  height: 28px;
}

.w-widget-twitter-count-shim.w--large .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 18px;
}

.w-widget-twitter-count-shim:not(.w--vertical) {
  margin-left: 5px;
  margin-right: 8px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large {
  margin-left: 6px;
}

.w-widget-twitter-count-shim:not(.w--vertical):before,
.w-widget-twitter-count-shim:not(.w--vertical):after {
  top: 50%;
  left: 0;
  border: solid transparent;
  content: ' ';
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.w-widget-twitter-count-shim:not(.w--vertical):before {
  border-color: rgba(117, 134, 150, 0);
  border-right-color: #5d6c7b;
  border-width: 4px;
  margin-left: -9px;
  margin-top: -4px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:before {
  border-width: 5px;
  margin-left: -10px;
  margin-top: -5px;
}

.w-widget-twitter-count-shim:not(.w--vertical):after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: white;
  border-width: 4px;
  margin-left: -8px;
  margin-top: -4px;
}

.w-widget-twitter-count-shim:not(.w--vertical).w--large:after {
  border-width: 5px;
  margin-left: -9px;
  margin-top: -5px;
}

.w-widget-twitter-count-shim.w--vertical {
  width: 61px;
  height: 33px;
  margin-bottom: 8px;
}

.w-widget-twitter-count-shim.w--vertical:before,
.w-widget-twitter-count-shim.w--vertical:after {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: ' ';
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.w-widget-twitter-count-shim.w--vertical:before {
  border-color: rgba(117, 134, 150, 0);
  border-top-color: #5d6c7b;
  border-width: 5px;
  margin-left: -5px;
}

.w-widget-twitter-count-shim.w--vertical:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: white;
  border-width: 4px;
  margin-left: -4px;
}

.w-widget-twitter-count-shim.w--vertical .w-widget-twitter-count-inner {
  font-size: 18px;
  line-height: 22px;
}

.w-widget-twitter-count-shim.w--vertical.w--large {
  width: 76px;
}

.w-background-video {
  position: relative;
  overflow: hidden;
  /* prevent horizontal scroll from video bleed */
  height: auto;
  color: white;
}

.w-background-video>video {
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  margin: auto;
  width: 100%;
  height: 100%;
  right: -100%;
  bottom: -100%;
  top: -100%;
  left: -100%;
  object-fit: cover;
  z-index: -100;
}

.w-background-video>video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.w-background-video--control {
  position: absolute;
  bottom: 1em;
  right: 1em;
  background-color: transparent;
  padding: 0;
}

.w-background-video--control>[hidden] {
  display: none !important;
}


.w-dropdown {
  display: inline-block;
  position: relative;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  z-index: 900;
}

.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
  position: relative;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}

.w-dropdown-toggle {
  user-select: none;
  display: inline-block;
  cursor: pointer;
  padding-right: 40px;
}

.w-dropdown-toggle:focus {
  outline: 0;
}

.w-icon-dropdown-toggle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  margin-right: 20px;
  width: 1em;
  height: 1em;
}

.w-dropdown-list {
  position: absolute;
  background: #DDDDDD77;
  display: none;
  min-width: 100%;
}

.w-dropdown-list.w--open {
  display: block;
}

.w-dropdown-link {
  padding: 10px 20px;
  display: block;
  color: #222222;
}

.w-dropdown-link.w--current {
  color: #0082f3;
}

.w-dropdown-link:focus {
  outline: 0;
}

@media screen and (max-width: 767px) {
  .w-nav-brand {
    padding-left: 10px;
  }
}

/**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn't handle them at
 * all in `calc()`.
 */
/**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox.
 */
.w-lightbox-backdrop {
  cursor: auto;
  font-style: normal;
  letter-spacing: normal;
  list-style: disc;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 300;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  outline: 0;
  /* 1 */
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  /* 2 */
}

/**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll.
 */
.w-lightbox-backdrop,
.w-lightbox-container {
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.w-lightbox-content {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.w-lightbox-view {
  position: absolute;
  width: 100vw;
  height: 100vh;
  opacity: 0;
}

.w-lightbox-view:before {
  content: "";
  height: 100vh;
}

/* .w-lightbox-content */
.w-lightbox-group,
.w-lightbox-group .w-lightbox-view,
.w-lightbox-group .w-lightbox-view:before {
  height: 86vh;
}

.w-lightbox-frame,
.w-lightbox-view:before {
  display: inline-block;
  vertical-align: middle;
}

/*
 * 1. Remove default margin set by user-agent on the <figure> element.
 */
.w-lightbox-figure {
  position: relative;
  margin: 0;
  /* 1 */
}

.w-lightbox-group .w-lightbox-figure {
  cursor: pointer;
}

/**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling.
 */
.w-lightbox-img {
  width: auto;
  height: auto;
  max-width: none;
}

/**
 * 1. Reset if style is set by user on "All Images"
 */
.w-lightbox-image {
  display: block;
  float: none;
  /* 1 */
  max-width: 100vw;
  max-height: 100vh;
}

.w-lightbox-group .w-lightbox-image {
  max-height: 86vh;
}

.w-lightbox-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.5em 1em;
  background: rgba(0, 0, 0, 0.4);
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.w-lightbox-embed {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.w-lightbox-control {
  position: absolute;
  top: 0;
  width: 4em;
  background-size: 24px;

  background-position: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.w-lightbox-left {
  display: none;
  bottom: 0;
  left: 0;
  /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==");
}

.w-lightbox-right {
  display: none;
  right: 0;
  bottom: 0;
  /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+");
}

/*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer)
 */
.w-lightbox-close {
  right: 0;
  height: 2.6em;
  /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
  background-size: 18px;
}

/**
 * 1. All IE versions add extra space at the bottom without this.
 */
.w-lightbox-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 1vh;
  line-height: 0;
  /* 1 */
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

/*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn't work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior.
 */
.w-lightbox-item {
  display: inline-block;
  width: 10vh;
  padding: 2vh 1vh;
  box-sizing: content-box;
  /* 1 */
  cursor: pointer;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  /* 2 */
}

.w-lightbox-active {
  opacity: 0.3;
}

.w-lightbox-thumbnail {
  position: relative;
  height: 10vh;
  background: #222;
  overflow: hidden;
}

.w-lightbox-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
}

.w-lightbox-thumbnail .w-lightbox-tall {
  top: 50%;
  width: 100%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.w-lightbox-thumbnail .w-lightbox-wide {
  left: 50%;
  height: 100%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

/*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track.
 */
.w-lightbox-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border: 5px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  -webkit-animation: spin 0.8s infinite linear;
  animation: spin 0.8s infinite linear;
}

.w-lightbox-spinner:after {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  border: 3px solid transparent;
  border-bottom-color: #fff;
  border-radius: 50%;
}

/*
 * Utility classes
 */
.w-lightbox-hide {
  display: none;
}

.w-lightbox-noscroll {
  overflow: hidden;
}

@media (min-width: 768px) {
  .w-lightbox-content {
    height: 96vh;
    margin-top: 2vh;
  }

  .w-lightbox-view,
  .w-lightbox-view:before {
    height: 96vh;
  }

  /* .w-lightbox-content */
  .w-lightbox-group,
  .w-lightbox-group .w-lightbox-view,
  .w-lightbox-group .w-lightbox-view:before {
    height: 84vh;
  }

  .w-lightbox-image {
    max-width: 96vw;
    max-height: 96vh;
  }

  .w-lightbox-group .w-lightbox-image {
    max-width: 82.3vw;
    max-height: 84vh;
  }

  .w-lightbox-left,
  .w-lightbox-right {
    display: block;
    opacity: 0.5;
  }

  .w-lightbox-close {
    opacity: 0.8;
  }

  .w-lightbox-control:hover {
    opacity: 1;
  }
}

.w-lightbox-inactive,
.w-lightbox-inactive:hover {
  opacity: 0;
}

.w-richtext:before,
.w-richtext:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-richtext:after {
  clear: both;
}

.w-richtext[contenteditable="true"]:before,
.w-richtext[contenteditable="true"]:after {
  white-space: initial;
}

.w-richtext ol,
.w-richtext ul {
  overflow: hidden;
}

.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-video div:after,
.w-richtext .w-richtext-figure-selected[data-rt-type="video"] div:after {
  outline: 2px solid #2895f7;
}

.w-richtext .w-richtext-figure-selected.w-richtext-figure-type-image div,
.w-richtext .w-richtext-figure-selected[data-rt-type="image"] div {
  outline: 2px solid #2895f7;
}

.w-richtext figure.w-richtext-figure-type-video>div:after,
.w-richtext figure[data-rt-type="video"]>div:after {
  content: '';
  position: absolute;
  display: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.w-richtext figure {
  position: relative;
  max-width: 60%;
}

.w-richtext figure>div:before {
  cursor: default !important;
}

.w-richtext figure img {
  width: 100%;
}

.w-richtext figure figcaption.w-richtext-figcaption-placeholder {
  opacity: 0.6;
}

.w-richtext figure div {
  /* fix incorrectly sized selection border in the data manager */
  font-size: 0px;
  color: transparent;
}

.w-richtext figure.w-richtext-figure-type-image,
.w-richtext figure[data-rt-type="image"] {
  display: table;
}

.w-richtext figure.w-richtext-figure-type-image>div,
.w-richtext figure[data-rt-type="image"]>div {
  display: inline-block;
}

.w-richtext figure.w-richtext-figure-type-image>figcaption,
.w-richtext figure[data-rt-type="image"]>figcaption {
  display: table-caption;
  caption-side: bottom;
}

.w-richtext figure.w-richtext-figure-type-video,
.w-richtext figure[data-rt-type="video"] {
  width: 60%;
  height: 0;
}

.w-richtext figure.w-richtext-figure-type-video iframe,
.w-richtext figure[data-rt-type="video"] iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.w-richtext figure.w-richtext-figure-type-video>div,
.w-richtext figure[data-rt-type="video"]>div {
  width: 100%;
}

.w-richtext figure.w-richtext-align-center {
  margin-right: auto;
  margin-left: auto;
  clear: both;
}

.w-richtext figure.w-richtext-align-center.w-richtext-figure-type-image>div,
.w-richtext figure.w-richtext-align-center[data-rt-type="image"]>div {
  max-width: 100%;
}

.w-richtext figure.w-richtext-align-normal {
  clear: both;
}

.w-richtext figure.w-richtext-align-fullwidth {
  width: 100%;
  max-width: 100%;
  text-align: center;
  clear: both;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.w-richtext figure.w-richtext-align-fullwidth>div {
  display: inline-block;
  /* padding-bottom is used for aspect ratios in video figures
      we want the div to inherit that so hover/selection borders in the designer-canvas
      fit right*/
  padding-bottom: inherit;
}

.w-richtext figure.w-richtext-align-fullwidth>figcaption {
  display: block;
}

.w-richtext figure.w-richtext-align-floatleft {
  float: left;
  margin-right: 15px;
  clear: none;
}

.w-richtext figure.w-richtext-align-floatright {
  float: right;
  margin-left: 15px;
  clear: none;
}

.w-nav {
  position: relative;
  background: #dddddd;
  z-index: 1000;
}

.w-nav:before,
.w-nav:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-nav:after {
  clear: both;
}

.w-nav-brand {
  position: relative;
  float: left;
  text-decoration: none;
  color: #333333;
}

.w-nav-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

.w-nav-link.w--current {
  color: #0082f3;
}

.w-nav-menu {
  position: relative;
  float: right;
}

[data-nav-menu-open] {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  text-align: left;
  overflow: visible;
  min-width: 280px;
  padding: 20px 0;
  z-index: 1000;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(177, 18, 18, 0.6) rgba(22, 37, 54, 0.3);
}

/* Custom scrollbar for webkit browsers */
[data-nav-menu-open]::-webkit-scrollbar {
  width: 6px;
}

[data-nav-menu-open]::-webkit-scrollbar-track {
  background: rgba(22, 37, 54, 0.3);
  border-radius: 3px;
}

[data-nav-menu-open]::-webkit-scrollbar-thumb {
  background: rgba(177, 18, 18, 0.6);
  border-radius: 3px;
}

[data-nav-menu-open]::-webkit-scrollbar-thumb:hover {
  background: rgba(177, 18, 18, 0.8);
}

[data-nav-menu-open] .nav-link,
[data-nav-menu-open] .uslugi,
[data-nav-menu-open] .dropdown-toggle {
  font-size: 18px !important;
  padding: 16px 24px !important;
  margin: 0 !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s ease !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

[data-nav-menu-open] .dropdown-list {
  background-color: rgba(22, 37, 54, 0.95) !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-left: 3px solid rgba(177, 18, 18, 0.6) !important;
  margin-left: 24px !important;
}

[data-nav-menu-open] .dropdown-link {
  font-size: 16px !important;
  padding: 12px 24px !important;
  margin: 0 !important;
  background-color: transparent !important;
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s ease !important;
}

[data-nav-menu-open] .dropdown-link:hover {
  background-color: #b11212a6 !important;
}

[data-nav-menu-open] .button-adres-top,
[data-nav-menu-open] .button-top-telefon {
  font-size: 16px !important;
  padding: 16px 24px !important;
  margin: 8px 24px !important;
  display: block !important;
  background-color: rgba(177, 18, 18, 0.1) !important;
  border: 1px solid rgba(177, 18, 18, 0.3) !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
}

.w--nav-link-open {
  display: block;
  position: relative;
}

.w-nav-overlay {
  position: absolute;
  overflow: hidden;
  display: none;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
}

.w-nav-overlay [data-nav-menu-open] {
  top: 0;
}

.w-nav[data-animation='over-left'] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation='over-left'] .w-nav-overlay,
.w-nav[data-animation='over-left'] [data-nav-menu-open] {
  right: auto;
  z-index: 1;
  top: 0;
}

.w-nav[data-animation='over-right'] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation='over-right'] .w-nav-overlay,
.w-nav[data-animation='over-right'] [data-nav-menu-open] {
  left: auto;
  z-index: 1;
  top: 0;
}

.w-nav-button {
  position: relative;
  float: right;
  padding: 18px;
  font-size: 24px;
  display: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  user-select: none;
}

.w-nav-button:focus {
  outline: 0;
}

.w-nav-button.w--open {
  background-color: #C8C8C8;
  color: white;
}

.w-nav[data-collapse='all'] .w-nav-menu {
  display: none;
}

.w-nav[data-collapse='all'] .w-nav-button {
  display: block;
}

.w--nav-dropdown-open {
  display: block;
}

.w--nav-dropdown-toggle-open {
  display: block;
}

.w--nav-dropdown-list-open {
  position: static;
}

@media screen and (max-width: 991px) {
  .w-nav[data-collapse='medium'] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse='medium'] .w-nav-button {
    display: flex !important;
    align-items: center;
    gap: 8px;
  }

  /* Ujednolicone style przycisku menu mobilnego */
  .w-nav-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(22, 37, 54, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin-right: 20px;
    padding: clamp(10px, 2.2vw, 16px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .w-nav-button:hover {
    background-color: rgba(22, 37, 54, 1);
    border-color: rgba(177, 18, 18, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  .w-nav-button .icon-2 {
    color: #fff;
    font-size: clamp(18px, 2.6vw, 24px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }

  .w-nav-button .menu-label {
    color: #fff;
    font-size: clamp(14px, 2.6vw, 16px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: .2px;
    display: inline-block;
    white-space: nowrap;
  }
}

@media screen and (max-width: 767px) {
  .w-nav[data-collapse='small'] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse='small'] .w-nav-button {
    display: flex !important;
    align-items: center;
    gap: 8px;
  }

  .w-nav-brand {
    padding-left: 10px;
  }

  .w-nav-button {
    background-color: rgba(22, 37, 54, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin-right: 15px;
    padding: clamp(10px, 2.2vw, 14px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .w-nav-button:hover {
    background-color: rgba(22, 37, 54, 1);
    border-color: rgba(177, 18, 18, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  .w-nav-button .icon-2 {
    font-size: clamp(18px, 2.6vw, 20px);
  }

  .w-nav-button .menu-label {
    font-size: clamp(13px, 2.6vw, 15px);
    display: inline-block;
    white-space: nowrap;
  }
}

@media screen and (max-width: 479px) {
  .w-nav[data-collapse='tiny'] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse='tiny'] .w-nav-button {
    display: flex !important;
    align-items: center;
    gap: 8px;
  }

  .w-nav-button {
    background-color: rgba(22, 37, 54, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin-right: 10px;
    padding: clamp(8px, 2.2vw, 12px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .w-nav-button:hover {
    background-color: rgba(22, 37, 54, 1);
    border-color: rgba(177, 18, 18, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }

  .w-nav-button .icon-2 {
    font-size: clamp(16px, 2.6vw, 18px);
  }

  .w-nav-button .menu-label {
    font-size: clamp(12px, 2.6vw, 14px);
    display: inline-block;
    white-space: nowrap;
  }
}



@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.w-dyn-empty {
  padding: 10px;
  background-color: #dddddd;
}

.w-dyn-hide {
  display: none !important;
}

.w-dyn-bind-empty {
  display: none !important;
}

.w-condition-invisible {
  display: none !important;
}

.wf-layout-layout {
  display: grid;
}

@font-face {
  font-family: "Intro Rust G Base 2 Line";
  src: url('../fonts/Intro-Rust-G-Base-2-Line.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Clashdisplay;
  src: url('../fonts/ClashDisplay-Extralight.otf') format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Clashdisplay;
  src: url('../fonts/ClashDisplay-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Clashdisplay;
  src: url('../fonts/ClashDisplay-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Clashdisplay;
  src: url('../fonts/ClashDisplay-Semibold.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Clashdisplay;
  src: url('../fonts/ClashDisplay-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Clashdisplay;
  src: url('../fonts/ClashDisplay-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --red: var(--white);
  --white: white;
  --black: black;
  --color: white;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  /*padding: 20px;*/
}

.w-layout-cell {
  flex-direction: column;
  justify-content: center;
  align-items: center !important;
  display: flex;
  min-width: 0 !important;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.body {
  background-color: #0a1119;
  font-family: Clashdisplay, sans-serif;
}

.navbar,
.w-nav {
  background-color: transparent;
  background-image: none;
  position: relative;
  z-index: 10000;
}

.index-sekcja-top-napis {
  height: 1000px;
}

.img-logo-top {
  max-width: 100%;
}

.div-logo-top {
  width: 125px;
}

.nav-link {
  color: #fff;
  font-size: 22px;
}

.nav-link.link_foot.w--current {
  color: #fff;
}

.uslugi {
  color: #fff;
  mix-blend-mode: normal;
  font-size: 22px;
  transition: color .3s;
}

.uslugi:hover {
  color: red;
}

.icon {
  color: #fff;
  margin-top: 3px;
}

.kontant-nav-menu {
  width: auto;
  max-width: 1280px;
  display: flex;
  align-items: center;
}

.nav-menu {
  display: block;
}

.dropdown-list {
  background-color: #162536cc;
  border-bottom: 1px solid red;
}

.dropdown-link {
  color: #fff;
  width: auto;
  margin-left: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 18px;
}

.dropdown-link:hover {
  background-color: #b11212a6;
}

.dropdown-link.w--current {
  color: #fff;
}

/* Shared base/hover for top contact buttons */
.button-adres-top,
.button-top-telefon,
.button-adres-top-2,
.button-top-telefon-2 {
  background-color: #3898ec00;
  border-bottom: 1px solid #ffffff40;
  font-size: 22px;
  transition: border-color .5s;
}

.button-adres-top:hover,
.button-top-telefon:hover,
.button-adres-top-2:hover,
.button-top-telefon-2:hover {
  background-color: #ec4d3800;
  border-bottom-color: red;
}

.button-adres-top {
  /* background-image: url('../images/address.png'); */
  background-position: 0%;
  background-size: 25px;
  margin-left: 86px;
  margin-right: 17px;
  padding-top: 20px;
  padding-left: 30px;
  padding-right: 10px;
}

.button-top-telefon {
  background-position: 0 0;
  background-size: 30px;
  padding-left: 30px;
  margin-right: 30px;
}

.dropdown-toggle {
  margin-top: -3px;
  padding-top: 0;
}

.cell-napis-top-dreamcar {
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 145px;
  text-align: center;
  width: 100%;
}

.text-napis-top-dreamcar {
  outline-offset: 0px;
  pointer-events: auto;
  text-transform: uppercase;
  mix-blend-mode: normal;
  outline: 3px #fff;
  font-size: 135px;
  font-weight: 700;
  transition: opacity .525s;
  text-align: center;
  margin: 0 auto;
}

.quick-stack {
  margin-top: 5%;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.text-kolor-czerwony {
  color: red;
}

.cell-4 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  text-align: center;
  width: 80%;
}

.div_bg_linietop {
  z-index: 1;
  background-image: url('../images/kreska_1.png');
  background-position: 0 0;
  background-size: auto;
  width: 10px;
  height: 180px;
  position: relative;

}

.quick-stack-index-top {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.h1-68px-white {
  color: #fff;
  text-transform: uppercase;
  line-height: 0.9;
  margin-top: 5%;
  margin-bottom: 0;
  font-family: Unbounded, sans-serif;
  font-size: 68px;
  font-weight: 200;
}

.cell-napis-top-h1 {
  text-align: center;
  line-height: 0.9;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
}

.cell-napis-top-podh1 {
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  text-align: center;
  width: 100%;
}

.sekcja-index-uslugi-boxy {
  margin-left: 10px;
  margin-right: 10px;
  position: relative;
}

.sekcja-studio-box-txt .w-layout-blockcontainer {
  max-width: 85%;
}

.kontener-index-uslugi {
  max-width: 85%;
}

.quick-stack-index-uslugi {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
}

/* Existing styles */
.w-layout-layout.quick-stack-index-uslugi {
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

/* Add this new rule for desktop */
@media screen and (min-width: 992px) {
  .w-layout-layout.quick-stack-index-uslugi {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
  }
}

.cell-naglowek-uslugi {
  justify-content: flex-start;
  align-items: center;
  padding-top: 15px;
}

.naglowek-35px {
  color: #fff;
  text-transform: uppercase;
  font-family: Unbounded, sans-serif;
  font-size: 35px;
  font-weight: 300;
}

.pisanie24px {
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
}

.cell-5 {
  justify-content: flex-start;
  align-items: center;
  padding-top: 0;
  padding-bottom: 40px;
}

.cell-6 {
  background-image: url('../images/box-powloki_1.webp');
  background-position: 50%;

}

.cell-7 {
  background-image: none;
}

/* Shared base for all services boxes */
.div-box-uslugi1,
.div-box-uslugi2,
.div-box-uslugi3,
.div-box-uslugi4,
.div-box-uslugi5,
.div-box-uslugi6 {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  max-width: 582px;
  height: auto;
  min-height: 600px;
  display: flex;
  background-size: 900px;
}

.div-box-uslugi1 {
  background-image: url('../images/box-powloki_1.webp');
}

.div-klawisz-box-uslugi {
  padding-bottom: 28px;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.pisanie {
  color: #fff;
}

/* Shared styles for service buttons */
.button-box-uslugi,
.button-box-wycena,
.button-box-top-zobacz,
.button-box-uslugi-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, rgba(31, 44, 59, .65), rgba(22, 37, 54, .85));
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 12px;
  padding: clamp(12px, 1.6vw, 20px) clamp(18px, 2.2vw, 30px);
  font-size: clamp(16px, 1.3vw, 22px);
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease, background .2s ease;
}

/* Shared hover for service buttons */
.button-box-uslugi:hover,
.button-box-wycena:hover,
.button-box-top-zobacz:hover,
.button-box-uslugi-2:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.9);
  background: linear-gradient(180deg, rgba(40, 56, 75, .75), rgba(22, 37, 54, .95));
}

.button-box-wycena:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(0,0,0,.3) inset;
}

/* Unique hover extras */
.button-box-uslugi:hover {
  box-shadow: 3px 4px 0 0 var(--red);
}

.div-box-uslugi2 {
  background-image: url('../images/box-folia_1.webp');
}

.div-box-uslugi4 {
  background-image: url('../images/box-detailing_1.webp');
}

.div-box-uslugi3 {
  background-image: url('../images/box-korekts_1.webp');
}

.div-box-uslugi5 {
  background-image: url('../images/box-felgi_1.webp');
}

.div-box-uslugi6 {
  background-image: url('../images/box-konserwacja_1.webp');
}

/* Responsive styles for service boxes */
@media screen and (max-width: 991px) {

  .div-box-uslugi1,
  .div-box-uslugi2,
  .div-box-uslugi3,
  .div-box-uslugi4,
  .div-box-uslugi5,
  .div-box-uslugi6 {
    width: 100%;
    height: 300px;
    max-width: none;
  }

  .div-klawisz-box-uslugi {
    padding-left: 30px;
    padding-bottom: 20px;
  }

  .button-box-uslugi {
    padding: 15px 25px;
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-layout.quick-stack-index-uslugi {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }

  .sekcja-index-uslugi-boxy {
    margin-left: 15px;
    margin-right: 15px;
  }

  .div-box-uslugi1,
  .div-box-uslugi2,
  .div-box-uslugi3,
  .div-box-uslugi4,
  .div-box-uslugi5,
  .div-box-uslugi6 {
    width: 100%;
    height: 250px;
    background-size: cover;
  }

  .div-klawisz-box-uslugi {
    padding-left: 20px;
    padding-bottom: 15px;
    text-align: center;
    align-items: center;
  }

  .pisanie24px-unbonded {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: center;
  }

  .button-box-uslugi {
    padding: 12px 20px;
    font-size: 16px;
    width: 100%;
    max-width: 200px;
  }
}

@media screen and (max-width: 479px) {
  .sekcja-index-uslugi-boxy {
    margin-left: 10px;
    margin-right: 10px;
  }

  .div-box-uslugi1,
  .div-box-uslugi2,
  .div-box-uslugi3,
  .div-box-uslugi4,
  .div-box-uslugi5,
  .div-box-uslugi6 {
    height: 200px;
  }

  .div-klawisz-box-uslugi {
    padding-left: 15px;
    padding-bottom: 10px;
  }

  .pisanie24px-unbonded {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
  }

  .button-box-uslugi {
    padding: 10px 15px;
    font-size: 14px;
  }
}

.sekcja-index-opis {
  /*background-image: url('../images/bg_white.jpg');*/
  background-position: 50% 105%;
  background-repeat: repeat-x;
  background-size: auto;
  margin-top: 42px;
}

.hero-heading-left {
  background-color: #f5f7fa00;
  border-bottom: 1px #e4ebf3;
  padding: 80px 30px;
  position: static;
}

.container {
  width: 100%;
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 46%;
  display: flex;
  gap: 20px;
}

.margin-bottom-24px {
  margin-bottom: 24px;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.shadow-two {
  box-shadow: 0 4px 24px #96a3b514;
}

.div-block {
  display: block;
}

.paragraf-odstep-25px {
  margin-bottom: 40px;
}

.paragraf-odstep-25px.pisanie24px {
  text-align: center;
  margin-bottom: 6px;
}

.div-onas-lewa {
  /* width: 366px;*/
  height: 713px; 
  max-height: none;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.div-onas-prawa {
  width: 366px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}


/* Ensure right-side hero image is always visible */
.div-onas-prawa {
  position: relative;
  z-index: 1;
}

.div-onas-prawa .img-prawa {
  display: block !important;
  width: 100% !important;
  /* height: auto !important; */
  opacity: 1 !important;
  visibility: visible !important;
}

.div-onas-lewa {
  position: relative;
  z-index: 0;
}

/* Homepage-specific fallback: ensure visible image even if lazy load/JS fails */
body.body .div-onas-prawa {
  background-image: url('../images/onas-img2.webp');
  background-position: 50% 50%;
  background-size: cover;
  min-height: 360px;
}

@media (min-width: 768px) {
  body.body .div-onas-prawa {
    min-height: 520px;
  }
}

/* Wspólna baza dla bloków 'onas-dol' */
.div-onas-dol,
.div-onas-dol-copy,
.div-onas-dol-index,
.div-onas-dol-felga,
.div-onas-dol2,
.div-onas-dol3,
.div-onas-dol4,
.div-onas-dol5,
.div-onas-dol-6 {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 415px;
  display: flex;
  position: relative;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.quick-stack-2 {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}

.quick-stack-3 {
  width: 100%;
  padding-top: 49px;
  padding-left: 0;
}

.naglowek-30px {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  color: #ffffff;
}

.naglowek-30px.text-kolor-czerwony {
  font-weight: 400;
}

.div-opinie-liczba {
  justify-content: flex-start;
  align-items: center;
  padding-right: 40px;
  display: flex;
}

.cell-9 {
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

.klawisz-video {
  transition: transform .2s;
}

.klawisz-video:hover {
  transform: scale(.9);
}

.div-vide {
  width: 100px;
  height: 100px;
}

.div_bg_linie_prawa_uslugi {
  background-image: url('../images/kreska_1.png');
  background-position: 0 0;
  background-size: auto;
  justify-content: flex-start;
  align-items: center;
  width: 10px;
  height: 600px;
  display: flex;
  position: relative;
  left: 15px;
}

.index-sekcja-realizacje {
  z-index: 0;
  background: #091119;
  background: linear-gradient(180deg, rgba(9, 17, 25, 1) 3%, rgba(173, 0, 0, 1) 18%, rgba(255, 0, 0, 1) 47%, rgba(9, 17, 25, 1) 67%);
  height: auto; /* FIX: Allow content to expand */
  min-height: auto; /* FIX: Allow content to expand */
  position: static;
  overflow: visible; /* FIX: Prevent content cutoff */
  padding-bottom: 60px; /* FIX: Add bottom padding */
  /* top: -119px;*/
}

.naglowek-35px-czarny {
  color: #fff;
  text-transform: uppercase;
  font-family: Unbounded, sans-serif;
  font-size: 35px;
  font-weight: 300;
}

.div-box-realizacje1 {
  background-image: url('../images/glwone_1.webp');
}

.div-box-realizacje2 {
  background-image: url('../images/realizacja_1.webp');
}

.div-box-realizacje3 {
  background-image: url('../images/realizacje.jpg');
}

.div-box-realizacje4 {
  background-image: url('../images/realizacje.jpg');
}

/* Realizacje cards share no-repeat */
.div-box-realizacje1,
.div-box-realizacje2,
.div-box-realizacje3,
.div-box-realizacje4 {
  background-repeat: no-repeat;
}

.button-box-realizacje-czarne {
  color: #fff;
  background-color: #ff0000;
  /*border: 2px solid #fff;*/
  border-radius: 30px;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 30px 40px;
  font-size: 24px;
  font-weight: bold;
  transition: transform .325s, border-color .2s;
}

.button-box-realizacje-czarne:hover {
  box-shadow: 3px 4px 0 0 var(--red);
  /* background-color: #ff4949;
  border-color: #ff4949; */
  transform: translate(-2px, -2px);
}

.cell-11 {
  justify-content: center;
  align-items: center;
  padding-top: 350px;
  margin-top: -300px;
  background: linear-gradient(0deg, #0a1119, transparent);
}

.sekcja-foot {
  background-image: url('../images/bg_foot.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: auto;
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

/* Footer overlay gradient layer */
.sekcja-foot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 17, 24, 1) 0%, rgba(9, 17, 24, 0.8) 20%, rgba(9, 17, 24, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.background-video {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
}

.background-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kontener-foot {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  position: relative;
  z-index: 2;
}

.naglowek_bold55 {
  color: #fff;
  font-family: Unbounded, sans-serif;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.1;
}

.cell-12 {
  justify-content: flex-start;
  align-items: center;
}

.text-block-2 {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.cell-13 {
  justify-content: flex-start;
  align-items: center;
  padding-top: 10px;
}

.div-foot-box {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.div-foot-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.img-foot-adres {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.foot-napis-adres {
  color: #fff;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  text-align: center;
  font-size: clamp(14px, 1.8vw, 18px);
  display: flex;
  flex: 1;
}

.cell-14,
.cell-15 {
  display: none;
  /* Ukrywamy separatory na mobilach */
}

.cell-16,
.cell-17,
.cell-18 {
  justify-content: center;
  align-items: center;
}

.div_bg_linie_foot {
  background-image: url('../images/kreska_1.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 100px;
}

.img-foot-adres-tel,
.img-foot-adres-mail {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  display: block;
  justify-self: center;
}

.link_foot {
  color: #fff;
  text-decoration: none;
  font-size: clamp(14px, 1.8vw, 18px);
  transition: color 0.3s ease;
  display: inline-block;
  word-break: break-word;
}

.link_foot:hover {
  color: #ff0000;
}

.quick-stack-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 100%;
}

.pisanie_foot_prawa {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.6;
  max-width: 70%;
  text-align: center;
}

.quick-stackfoot-prawa {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 100%;
  flex-direction: column;
}

/* Footer: bottom bar with company data and policy link - Block Style */
.footer-bottom {
  margin-top: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.01);
  width: 100%;
}

.footer-bottom__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.footer-bottom__company {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(255,255,255,0.4);
}

.company-name {
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.1px;
}

.company-details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  line-height: 1.4;
  justify-content: center;
}

.company-address {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-icon {
  width: 10px;
  height: 10px;
  filter: brightness(0) invert(1);
  opacity: 0.3;
  flex-shrink: 0;
}

.company-nip {
  font-weight: 400;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
}

/* Subtle desktop separator between address and NIP */
@media (min-width: 640px) {
  .company-nip {
    position: relative;
    padding-left: 14px;
  }
  .company-nip::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translateY(-50%);
  }
}

.footer-bottom__links {
  display: flex;
  align-items: center;
}

.footer-bottom__link {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-weight: 400;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all .2s ease;
}

.footer-bottom__link:hover {
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.1);
  text-decoration: none;
}

/* Responsywność dla tabletów */
@media (max-width: 768px) {
  .footer-bottom {
    padding: 14px 0;
    margin-top: 16px;
  }
  
  .footer-bottom__content {
    gap: 10px;
    padding: 0 16px;
  }
  
  .company-name {
    font-size: 11px;
  }
  
  .company-details {
    font-size: 10px;
    gap: 10px;
  }
  
  .footer-bottom__link {
    font-size: 10px;
    padding: 3px 6px;
  }
}

/* Responsywność dla telefonów */
@media (max-width: 480px) {
  .footer-bottom {
    padding: 12px 0;
    margin-top: 14px;
  }
  
  .footer-bottom__content {
    padding: 0 12px;
    gap: 8px;
  }
  
  .company-name {
    font-size: 10px;
  }
  
  .company-details {
    font-size: 9px;
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }
  
  .company-address {
    gap: 4px;
  }
  
  .footer-icon {
    width: 8px;
    height: 8px;
  }
  
  .footer-bottom__link { 
    font-size: 9px;
    padding: 2px 5px;
  }
  
  /* Usuń separator na telefonach */
  .company-nip::before {
    display: none;
  }
}

/* Dodatkowe style dla footera */
.foot-header {
  text-align: center;
  margin-bottom: 40px;
}

.foot-contact-item-container {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.div-foot-godziny {
  margin-top: 10px;
  padding-left: 85px;
}

.div-media-spolecznosciowe {
  margin-bottom: 15px;
}

.div-butoon-media {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.cell-foot-lemar {
  display: flex;
  align-items: center;
}

.div-lemar {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Footer contact buttons — scoped reset for perfect alignment */
.sekcja-foot .foot-contact-item-container {
  width: min(820px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.sekcja-foot .div-foot-box {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  padding: 14px 18px;
  min-height: 60px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 14px;
}

.sekcja-foot .div-foot-box:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: none;
}

.sekcja-foot .img-foot-adres,
.sekcja-foot .img-foot-adres-tel,
.sekcja-foot .img-foot-adres-mail {
  width: 28px;
  height: 28px;
  display: block;
  justify-self: center;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.sekcja-foot .foot-napis-adres {
  grid-column: 2;
  justify-self: center;
  text-align: center;
  padding-left: 0;
  margin: 0;
}

.sekcja-foot .div-foot-box.link_foot {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 767px) {
  .sekcja-foot .div-foot-box {
    grid-template-columns: 36px 1fr 36px;
    min-height: 54px;
    padding: 12px 14px;
  }
  .sekcja-foot .img-foot-adres,
  .sekcja-foot .img-foot-adres-tel,
  .sekcja-foot .img-foot-adres-mail {
    width: 24px;
    height: 24px;
  }
}

/* Animacje dla footera */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sekcja-foot>* {
  animation: fadeInUp 0.6s ease-out forwards;
}

.text-kolor-bialy {
  color: #fff;
}

.cell-19 {
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 20px;
}

.cell-20 {
  justify-content: flex-start;
  align-items: center;
}

.quick-stack-5 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  padding-top: 98px;
  padding-bottom: 0;
}

.pisanie24px-czarny {
  color: #000;
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
}

.pisanie24px-bialy {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
}

.naglowek-35px-odstepy {
  color: #fff;
  padding-left: 10px;
  font-family: Unbounded, sans-serif;
  font-size: 35px;
  font-weight: 300;
}

.div_bg_linie_opis_onas {
  background-image: url('../images/kreska_1.png');
  background-position: 50%;

  background-size: auto;
  width: 10px;
  height: 60px;
  padding-bottom: 0;
}

.div-naglowek-opis-o-nas {
  width: 100%;
  display: block;
  text-align: center;
  justify-content: center;
}

.div-naglowek-opis-o-nas.text-kolor-czerwony {
  padding-bottom: 29px;
}

.naglowek-45px {
  font-family: "Intro Rust G Base 2 Line", sans-serif;
  font-size: 55px;
  font-weight: 300;
  line-height: 1;
}

.div-napis-to-wiecej-niz {
  padding-top: 10px;
  padding-left: 0;
  line-height: 1;
}

.vertical-divider {
  opacity: .4;
  background-color: #fff;
  background-image: linear-gradient(#6a48f2, #fcceee);
  width: 1px;
  height: 5vh;
  margin: 1rem auto 25%;
}

.text-span-3 {
  opacity: .8;
  font-style: italic;
  font-weight: 400;
}

.section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.content {
  width: 100%;
  /* max-width: 56.25rem; */
  margin-left: auto;
  margin-right: auto;
}

.heading-scroll {
  color: #f2f2f2;
  letter-spacing: -.01em;
  font-size: 8vw;
  font-weight: 500;
  line-height: 1.2;
}

.heading-scroll.center {
  text-align: center;
}

.heading-scroll.center._4 {
  font-weight: 700;
}

.container-2 {
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
}

.number {
  text-align: center;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(182deg, #6a48f2 20%, #fcceee);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 1rem;
  font-weight: 700;
}

.styles---glowing-button {
  display: block;
}

.podstrona-sekcja-top {
  background-image: url('../images/bg-folia_1.webp');
  background-position: 50%;

  background-size: cover;
  min-height: 650px;
}

.quick-stack-podstrona-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.body_podstrona {
  background-color: #0a1119;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  font-family: Clashdisplay, sans-serif;
}

.sekcja-podstrona-opis {
  /*background-image: url('../images/bg_white.jpg');*/
  background-position: 50% 105%;
  background-repeat: repeat-x;
  background-size: auto;
  margin-top: 42px;
  margin-bottom: 40px;
}

.sekcja-podstrona-opis .hero-container .hero-split {
  max-width: 100%;
}

.hero-wrapper-podstrona {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.quick-stack-2-podstrona {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}

.quick-stack-3-podstrona {
  width: 100%;
  padding-top: 20px;
  padding-left: 0;
}

.div-korzysci {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-right: 0;
  display: flex;
}

.cell-21 {
  justify-content: flex-start;
  align-items: center;
}

.cell-22 {
  text-align: left;
  justify-content: flex-start;
  align-items: center;
}

.pisanie24p-korzysci {
  color: #fff;
  text-align: center;
  padding-top: 10px;
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
}

.naglowek_bold45 {
  color: #fff;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  display: block;
}

.naglowek-35-bold {
  color: #fff;
  text-transform: none;
  font-family: Clashdisplay, sans-serif;
  font-size: 35px;
  font-weight: 300;
}

.cell-23 {
  justify-content: flex-start;
  align-items: center;
  padding-top: 37px;
}

.button-box-wycena:hover { box-shadow: 0 10px 22px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.08); }

/* Center buttons in columns and ensure full tap target on mobile */
.w-layout-cell .button-box-wycena { margin: clamp(8px, 1.6vw, 14px) auto 0; display: inline-flex; }

/* === EPIC red animated CTA variant for "zapytaj o cenę" (scoped) === */
.sekcja-index-opis-2 .button-box-wycena,
.sekcja-podstrona-opis .button-box-wycena {
  position: relative;
  font-weight: 700;
  letter-spacing: .3px;
  background: linear-gradient(135deg, #ff223d 0%, #ff3a2a 30%, #ff6a2a 60%, #ff223d 100%);
  background-size: 280% 280%;
  animation: ctaGradientShift 10s ease-in-out infinite;
  border: 0;
  box-shadow: 0 14px 28px rgba(255, 40, 60, .22), 0 6px 12px rgba(0,0,0,.35);
  width: 90%;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden; /* clip shine inside button */
  isolation: isolate; /* prevent bleed-through of pseudo-elements */
}

.sekcja-index-opis-2 .button-box-wycena:hover,
.sekcja-podstrona-opis .button-box-wycena:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 22px 40px rgba(255, 40, 60, .28), 0 12px 20px rgba(0,0,0,.42);
}

.sekcja-index-opis-2 .button-box-wycena:active,
.sekcja-podstrona-opis .button-box-wycena:active {
  transform: translateY(0) scale(.99);
}

.sekcja-index-opis-2 .button-box-wycena:focus-visible,
.sekcja-podstrona-opis .button-box-wycena:focus-visible {
  outline: 3px solid rgba(255, 80, 90, .9);
  outline-offset: 3px;
}

.sekcja-index-opis-2 .button-box-wycena::after,
.sekcja-podstrona-opis .button-box-wycena::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.28) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-120%);
  opacity: 0; /* hidden at rest */
  transition: transform .6s ease, opacity .2s ease;
  pointer-events: none;
  border-radius: inherit;
}

.sekcja-index-opis-2 .button-box-wycena:hover::after,
.sekcja-podstrona-opis .button-box-wycena:hover::after { transform: translateX(120%); opacity: 1; }

/* Subtle top highlight layer */
.sekcja-index-opis-2 .button-box-wycena::before,
.sekcja-podstrona-opis .button-box-wycena::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(140% 120% at 50% 0%, rgba(255,255,255,.35), rgba(255,255,255,0) 60%);
  opacity: .22;
  pointer-events: none;
  transition: opacity .3s ease;
}

.sekcja-index-opis-2 .button-box-wycena:hover::before,
.sekcja-podstrona-opis .button-box-wycena:hover::before { opacity: .3; }

@keyframes ctaGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .sekcja-index-opis-2 .button-box-wycena,
  .sekcja-podstrona-opis .button-box-wycena { animation: none; }
  .sekcja-index-opis-2 .button-box-wycena:hover,
  .sekcja-podstrona-opis .button-box-wycena:hover { transform: none; }
  .sekcja-index-opis-2 .button-box-wycena::after,
  .sekcja-podstrona-opis .button-box-wycena::after { transition: none; }
}
.podstrona-sekcja-top-ceramika {
  background-image: url('../images/bg-ceramika_1.webp');
  background-position: 50%;

  background-size: cover;
  height: 800px;
}

.podstrona-sekcja-top-korekta {
  background-image: url('../images/bg-korekta_1.webp');
  background-position: 10%;

  background-size: cover;
  height: 750px;
}

/* usunięte duplikaty — korzysta z bazy */

.image-2 {
  height: 100%;
}

.image-dol {
  width: 100%;
  height: 100%;
}

.podstrona-sekcja-top-detailing {
  background-image: url('../images/bg-detailing.jpg');
  background-position: 50%;

  background-size: cover;
  height: 800px;
}

.podstrona-sekcja-top-konserwacja {
  background-image: url('../images/bg-konserwacja.jpg');
  background-position: 50%;

  background-size: cover;
  height: 800px;
}

.podstrona-sekcja-top-felgi {
  background-image: url('../images/bg-felgi.jpg');
  background-position: 50%;

  background-size: cover;
  height: 800px;
}

.podstrona-sekcja-top-ppf {
  background-image: url('../images/bg-ppf.jpg');
  background-position: 50%;
  background-size: cover;
  height: 800px;
}

.div-onas-dol-felga {
  background-image: url('../images/box-felgi_2.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
}

.div-onas-dol2 {
  background-image: url('../images/box-powloki_2.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
}

.div-onas-dol3 {
  background-image: url('../images/oklejanie2_1.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
}

.div-onas-dol4 {
  background-image: url('../images/detailing3_1.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
}

.div-onas-dol5 {
  background-image: url('../images/korekta3_1.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
}

.div-onas-dol-6 {
  background-image: url('../images/konserwacja3_1.webp');
  background-position: 50%;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
}

.podstrona-sekcja-top-realizacje {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  height: auto;
  /* pozwól sekcji urosnąć do treści */
}

/* Realizacje: nie unosimy hero zdjęcia względem nagłówków */
.podstrona-sekcja-top-realizacje .quick-stack-6 {
  margin-top: -120px;
  /* delikatny odstęp od tytułu */
}

/* Ensure hero sections are visible if Webflow interactions are absent */
.podstrona-sekcja-top,
.podstrona-sekcja-top-ceramika,
.podstrona-sekcja-top-korekta,
.podstrona-sekcja-top-detailing,
.podstrona-sekcja-top-konserwacja,
.podstrona-sekcja-top-felgi,
.podstrona-sekcja-top-ppf,
.podstrona-sekcja-top-realizacje {
  opacity: 1 !important;
}

.sekcja-podstrona-realizacje-galeria {
  margin-top: 112px;
  padding-bottom: 196px;
  position: relative;
  z-index: 2;
}

/* Privacy page: ensure clean, image-free layout */
.privacy-page .podstrona-sekcja-top,
.privacy-page .podstrona-sekcja-top-ceramika,
.privacy-page .podstrona-sekcja-top-korekta,
.privacy-page .podstrona-sekcja-top-detailing,
.privacy-page .podstrona-sekcja-top-konserwacja,
.privacy-page .podstrona-sekcja-top-felgi,
.privacy-page .podstrona-sekcja-top-ppf,
.privacy-page .podstrona-sekcja-top-realizacje {
  background-image: none !important;
  background-color: transparent;
  min-height: 420px;
}

.privacy-page .naglowek-35px,
.privacy-page .pisanie24px,
.privacy-page .pisanie24px-unbonded {
  color: #ffffff;
}

.privacy-page .sekcja-podstrona-realizacje-galeria {
  margin-top: 48px;
  padding-bottom: 80px;
}

.privacy-page a.cookie-privacy-link {
  text-decoration: underline;
}

/* Privacy page — classic layout */
.privacy-content {
  padding: 48px 0 80px;
}

.privacy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Small inline icon for footer text rows */
.footer-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .8;
  vertical-align: -2px;
  margin-right: 6px;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 980px) {
  .privacy-grid {
    grid-template-columns: 3fr 1.2fr;
    gap: 32px;
  }
}

.privacy-article h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 28px);
  color: #ffffff;
  margin: 24px 0 12px;
}

.privacy-article p,
.privacy-article ul,
.privacy-article li {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.7;
}

.privacy-article p { margin: 0 0 12px; }

.privacy-article ul { padding-left: 20px; margin: 8px 0 16px; }
.privacy-article li { margin: 4px 0; }

.privacy-meta {
  opacity: .8;
  margin-top: 24px;
  color: #ffffff;
}

.privacy-aside { position: relative; }
.privacy-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px;
  color: #ffffff;
}
.privacy-card + .privacy-card { margin-top: 16px; }
.privacy-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ea384c;
  margin: 0 0 10px;
}
.privacy-card a { color: #ffffff; text-decoration: underline; }

.privacy-toc { list-style: none; padding-left: 0; margin: 0; }
.privacy-toc li { margin: 6px 0; }
.privacy-toc a { color: #ffffff; opacity: .9; }
.privacy-toc a:hover { opacity: 1; color: #ea384c; }

.btn-cookie {
  display: inline-block;
  padding: 10px 16px;
  border: 2px solid #ea384c;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  transition: all .25s ease;
}
.btn-cookie:hover { background: #ea384c; box-shadow: 0 4px 14px rgba(234,56,76,.35); }

.kontener-index-galeria {
  max-width: 1800px;
}

.quick-stack-galeria {
  grid-column-gap: 41px;
  grid-row-gap: 41px;
}

.div-img-galeria {
  width: 550px;
  height: auto;
}

.cell-24 {
  justify-content: flex-start;
  align-items: center;
}

.quick-stack-realizacja-top {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  height: auto;
}

/* Wspólna baza dla wszystkich .div-img-top-realizacja* */
[class^="div-img-top-realizacja"] {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
  min-height: clamp(320px, 45vw, 620px);
  background-position: 50%;
}

.div-img-top-realizacja {
  background-image: url('../images/glowna_2.webp');
  background-position: 50%;
  background-size: auto;
}

.cell-25 {
  justify-content: center;
  align-items: center;
}

.quick-stack-6 {
  z-index: 0;
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  padding-bottom: 20px;
  position: relative;
}

.button-film {
  background-color: #3898ec00;
  background-image: url('../images/player-red.png');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: clamp(80px, 12vw, 150px);
  height: clamp(80px, 12vw, 150px);
  display: block;
  margin: clamp(10px, 3vw, 20px) auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.button-film:hover {
  transform: scale(1.1);
  opacity: 0.9;
}

.sekcja-foot-realizacje {
  background-image: url('../images/bg_foot.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 687px;
  padding-top: 98px;
  position: static;
  /* top: -119px;*/
}

.div-onas-dol-index {
  /* background-image: url('../images/onas-img3_1.webp'); */
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  flex-flow: column;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.div-onas-dol-index:hover {
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
}

.index-sekcja-realizacjestatic {
  z-index: 0;
  background-color: #fff;
  height: auto;
  padding-bottom: 60px;
  position: static;
  /* top: -119px;*/
}

.div-img-top-realizacje1 {
  background-image: url('../images/glowna_1.webp');
}

.div-img-top-realizacja2 {
  background-image: url('../images/glowna_3.webp');
  background-position: 50%;
  background-size: auto;
}

.foot-napis-godziny {
  color: #fff;
  justify-content: center;
  align-items: center;
  padding-left: 10px;
  font-size: 28px;
  display: flex;
}

.text-foot-male {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  padding-left: 0;
}

.div-foot-godziny {
  width: 100%;
}

.button-facebook {
  background-color: #749abb00;
  background-image: url('../images/facebook_1facebook.png');
  background-position: 50%;

  border: 2px solid #bd8c52;
  border-radius: 25px;
  width: auto;
  max-width: none;
  height: auto;
  margin-right: 2px;
  padding: 0 20px 0 25px;
  font-size: 12px;
  display: block;
}

/* Wspólne właściwości dla przycisków social */
.facebook-klawisz,
.youtube_klawisz {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  margin: 0;
  padding: 0;
}

.facebook-klawisz {
  background-color: #1877f2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}

.facebook-klawisz:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cell-26 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 20px;
}

.cell-27 {
  grid-column: 1 / -1;
  text-align: center;
  margin: 20px 0;
}

.youtube_klawisz {
  background-color: #ff0000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E");
  margin: 0 0 0 10px;
}

.youtube_klawisz:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.container-3 {
  width: 100%;
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
}

.cell-28 {
  flex-flow: row;
  justify-content: space-around;
  gap: 20px;
}

.naglowek-45px-2 {
  z-index: 2;
  color: #fff;
  padding-bottom: 10px;
  font-family: Unbounded, sans-serif;
  font-size: 55px;
  font-weight: 300;
  position: static;
  bottom: 800px;
  line-height: 0.9;
}

.cell-29 {
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 20px;
}

.div_bg_linie_opis_onas-2 {
  background-image: url('../images/kreska.png');
  background-position: 0 0;
  background-size: auto;
  width: 10px;
  height: 120px;
  padding-bottom: 0;
}

.cell-30 {
  justify-content: flex-start;
  align-items: center;
}

.cell-34 {
  width: 100%;
}

.quick-stack-7 {
  width: 100%;
  padding-top: 49px;
  padding-bottom: 85px;
  padding-left: 0;
}

.quick-stack-8 {
  grid-column-gap: clamp(5px, 2vw, 20px);
  grid-row-gap: clamp(5px, 2vw, 20px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  align-items: stretch;
}

.onas-lewa,
.onas-prawa {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 0;
  padding: clamp(10px, 3vw, 30px);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.sekcja-index-opis-2 {

  margin-top: 42px;
}

.div_bg_linie_opis_animacja-dol {
  background-image: url('../images/kreska.png');
  background-position: 0 0;
  background-size: auto;
  width: 10px;
  height: 120px;
  padding-bottom: 0;
}

.button-box-uslugi-2:hover {
  box-shadow: 3px 4px #000;
}

.div-img-top-realizacja3 {
  background-image: url('../images/glwone_1.webp');
  background-position: 50%;
  background-size: contain;
}

.div-img-top-realizacja4 {
  background-image: url('../images/glowne_1.webp');
  background-position: 50%;
  background-size: contain;
}

.quick-stack-podstrona-realizacje {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  height: auto;
}

.sekcja-podstrona-realizacje {
  background-color: #fff;
}

.podstrona-sekcja-realizacje {
  background-image: url('../images/bg-detailing.jpg');
  background-position: 50%;

  background-size: cover;
  height: 650px;
}

.podstrona-sekcja-realizacje-top {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  height: auto;
}

.div-box-realizacje0 {
  background-image: url('../images/audi-realizacje_1.webp');

}

.quick-stack-realizacje {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.kontener-opis-realizacja {
  max-width: 1480px;
}

.quick-stag-opis-realizacja {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding-top: 0;
}

.cell-31 {
  justify-content: center;
  align-items: center;
  padding-bottom: 34px;
}

.lista-wypunktowanie {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  list-style-type: none;
  display: flex;
  color: #fff;
  font-size: 24px;
  margin-top: 20px;
}

.lista-wypunktowanie.pisanie24px {
  padding-left: 20px;
}

.list-item-2 {
  padding-right: 60px;
}

.pisanie24px-srodek {
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin-top: 20px;
  font-weight: 400;
  line-height: 0.9;
  width: 100%;
}

.pisanie24px-srodek a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.pisanie24px-srodek a:hover {
  color: #ff0000;
}

.tagi-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1200px;
  justify-content: center;
  align-items: center;
}

.tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 12px 30px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tag:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pisanie24px-odstep-gora-dol {
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 20px;
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
}

.text-span-4 {
  color: var(--red);
}

.div-img-top-realizacja5 {
  background-image: url('../images/glowne_2.webp');
  /* background-size: contain; */
}

.div-box-realizacje5 {
  background-image: url('../images/lexus-realizacje_1.webp');

}

.div-img-top-realizacja6 {
  background-image: url('../images/glowna_4.webp');
  /* background-size: contain; */
}

.div-box-realizacje7 {
  background-image: url('../images/realizacja_2.webp');

}

.div-box-realizacje4 {
  background-image: url('../images/glowna_2.webp');

}

.link-miasta {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  display: inline-block;
  transition: all 0.3s ease;
}

.link-miasta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.div-box-realizacje8 {
  background-image: url('../images/box-realizacje_1.webp');
}

.div-img-top-realizacja7 {
  background-image: url('../images/glwone_2.webp');
  background-position: 50%;
  /* background-size: auto; */
}

.div-box-realizacje9 {
  background-image: url('../images/box-realizacje_1.webp');

}

.hero-split-do-lewej {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

.background-video-katowice {
  height: 100%;
}

.div-box-realizacje10 {
  background-image: url('../images/box-realizacje_2.webp');

}

.div-box-realizacje11 {
  background-image: url('../images/box-realizacje_2.webp');

}

.div-img-top-realizacja8 {
  background-image: url('../images/glwone_3.webp');
  background-position: 50%;

  /* background-size: auto; */
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1250px;
  height: auto;
  min-height: clamp(320px, 45vw, 620px);
  display: flex;
}

.div-dol-poziom {
  max-width: 100%;
}

.div-img-top-realizacja9 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1250px;
  height: auto;
  min-height: clamp(320px, 45vw, 620px);
  display: flex;
}

.lokalne-opinie-katowice {
  padding: 0 10px 10px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-container {
  padding: 0 10px 10px 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.image-3,
.img-top-realizacja {
  width: 100%;
}

.div-box-realizacje12 {
  background-image: url('../images/20231210133309_4W2A2723_1.webp');

}

.div-box-realizacje_bmw420 {
  background-image: url('../images/20231210133234_4W2A2721_1.webp');
}

.div-box-realizacje13 {
  background-image: url('../images/20230621142205_4W2A1321_1.webp');

}

.div-box-realizacje_raptor {
  background-image: url('../images/20230621141419_4W2A1306_1.webp');
}

.button-box-top-zobacz:hover {
  box-shadow: 3px 4px #000;
}

.div-box-realizacje14 {
  background-image: url('../images/20230223152635_4W2A0234_1.avif');

}

/* Hero image for Mustang Mach-E */
.div-img-top-realizacja14 {
  background-image: url('../images/20230223152635_4W2A0234_1.avif');
  background-position: 50%;
  background-size: cover;
}

/* Generic base for hero classes used in some pages */
[class^="div-img-top-realizacje"] {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1250px;
  height: auto;
  min-height: clamp(320px, 45vw, 620px);
  background-position: 50%;
  background-size: cover;
  margin-top: 60px;
}

/* Page-specific hero backgrounds */
.div-img-top-realizacje-kia-niro {
  background-image: url('../images/fot22j_1.avif');
}

.div-img-top-realizacje-kia-sportage {
  background-image: url('../images/37_1.avif');
}

.div-img-top-realizacje-skoda {
  background-image: url('../images/20230904083118_4W2A1976_1.avif');
}

.div-img-top-realizacje-jaecco {
  background-image: url('../images/fot18e_1.avif');
}

.div-img-top-realizacje-fiesta {
  background-image: url('../images/fot23f_1.avif');
}

/* Align additional hero backgrounds to realizacje thumbnails */
.div-img-top-realizacje-audi-a4 {
  background-image: url('../images/audi-realizacje_1.webp');
}

.div-img-top-realizacje-lexus-nx {
  background-image: url('../images/fot28g_1.avif');
}

.div-img-top-realizacje-yaris-cross {
  background-image: url('../images/8_1.avif');
}

.div-img-top-realizacje-cupra-terramar {
  background-image: url('../images/fot35j_1.avif');
}

.div-img-top-realizacje-passat-b9 {
  background-image: url('../images/fot34f_1.avif');
}

.div-img-top-realizacje-bmw-ix2 {
  background-image: url('../images/fot33_1.avif');
}

.div-img-top-realizacje-mercedes-glc {
  background-image: url('../images/fot29_1.avif');
}

.div-img-top-realizacje-bmw-m4 {
  background-image: url('../images/fot26h_1.avif');
}

.div-img-top-realizacje-toyota-land-cruiser {
  background-image: url('../images/fot30k_1.avif');
}

.div-img-top-realizacje-toyota-highlander {
  background-image: url('../images/box-realizacje_2.webp');
}

.div-img-top-realizacje-dacia-duster {
  background-image: url('../images/fot31b_1.avif');
}

.div-img-top-realizacje-toyota-rav4-ceramika {
  background-image: url('../images/fot32f_1.avif');
}

.div-img-top-realizacje-audi-q7 {
  background-image: url('../images/Screenshot-2025-03-27-at-07-15-12-2-Facebook_1.avif');
}

/* Additional mappings for other realizacje pages */
.div-img-top-realizacje-ford-ranger {
  background-image: url('../images/24g_1.avif');
}

.div-img-top-realizacje-ford-puma {
  background-image: url('../images/fot25_1.avif');
}

.div-img-top-realizacje-mercedes-amg-e53 {
  background-image: url('../images/fot20s_1.avif');
}

.div-img-top-realizacje-rav4-korekta {
  background-image: url('../images/fot17j_1.avif');
}

.div-img-top-realizacje-toyota-chr {
  background-image: url('../images/fot16_1.avif');
}

.div-img-top-realizacje-mercedes-v-klasa {
  background-image: url('../images/pion2_1.avif');
}

.div-img-top-realizacje-bmw-x7 {
  background-image: url('../images/box-realizacje_1.webp');
}

.div-img-top-realizacje-porsche-911 {
  background-image: url('../images/realizacja_1.webp');
}

.div-img-top-realizacje-audi-e-tron {
  background-image: url('../images/20230304123611_4W2A0455_1.avif');
}

.div-img-top-realizacje-audi-a6 {
  background-image: url('../images/20230802090730_4W2A1677_1.avif');
}

.div-img-top-realizacje-lexus-rx {
  background-image: url('../images/20240216135804_4W2A3098_1.webp');
}

.div-img-top-realizacje-lexus-nx450 {
  background-image: url('../images/lexus-realizacje_1.webp');
}

.div-img-top-realizacje-toyota-corolla {
  background-image: url('../images/glwone_1.webp');
}

/* Missing CSS classes for realization pages - Added to fix main images */
.div-img-top-realizacje-toyota-highlander {
  background-image: url('../images/box-realizacje_2.webp');
}

.div-img-top-realizacje-toyota-rav4 {
  background-image: url('../images/20240301150052_4W2A3149_1.avif');
}

.div-img-top-realizacje-toyota-rav4-usuwanie-rys {
  background-image: url('../images/fot17j_1.avif');
}

.div-img-top-realizacje-toyota-chr-ceramika {
  background-image: url('../images/fot16_1.avif');
}

.div-img-top-realizacje-mustang-mach-e {
  background-image: url('../images/20230223152635_4W2A0234_1.avif');
}

.div-img-top-realizacje-mercedes-gla-amg {
  background-image: url('../images/realizacja_2.webp');
}

.div-img-top-realizacje-bmw420i {
  background-image: url('../images/20231210133234_4W2A2721_1.webp');
}

.div-img-top-realizacje-ford-raptor {
  background-image: url('../images/20230621141419_4W2A1306_1.webp');
}

.div-img-top-realizacje-alfa-romeo-giulia {
  background-image: url('../images/4W2A4227_1.webp');
}

.div-img-top-realizacje-lexus-nx {
  background-image: url('../images/fot28g_1.avif');
}

.div-img-top-realizacje-ssangyong-torres {
  background-image: url('../images/fot27_1.avif');
  background-position: 50% 100%;
  background-size: cover;
}

.div-img-top-realizacje-ford-tourneo {
  background-image: url('../images/glowna_2.webp');
}

.div-box-realizacje15 {
  background-image: url('../images/20240216135804_4W2A3098_1.webp');

}

.div-box-realizacje_mustang {
  background-image: url('../images/20230223152419_4W2A0230_1.avif');
}

.div-box-realizacje_lexus {
  background-image: url('../images/20240216135604_4W2A3091_1.webp');

}

.background-video-rozmowa {
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  /* Avoid forcing 100% height which breaks responsiveness */
  height: 100%;
  padding-bottom: 50px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.background-video-rozmowa video {
  position: absolute;
  /* Ensure consistent anchoring and avoid conflicting offsets */
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.background-video-rozmowa .w-background-video {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.background-video-rozmowa .w-background-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.button-rozmowa {
  background-color: #3898ec00;
  background-image: url('../images/conversation.fw.png');
  background-position: 0 0;
  background-size: cover;
  width: 80px;
  height: 80px;
  display: block;
}

.naglowek-30px-filmik-pytania {
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
  padding: clamp(10px, 3vw, 20px);
  font-size: clamp(1.2rem, 4vw, 1.75rem);
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: clamp(5px, 2vw, 15px);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
  border-radius: 8px;
  backdrop-filter: blur(2px);
}

.naglowek-30px-filmik-pytania.text-kolor-czerwony {
  font-weight: 400;
}

.image-4 {
  object-fit: fill;
}

.div-box-realizacje_etron {
  background-image: url('../images/fot4_1.avif');

}

.div-box-realizacje16 {
  background-image: url('../images/20230304123611_4W2A0455_1.avif');

}

.div-box-realizacje17 {
  background-image: url('../images/20230802090730_4W2A1677_1.avif');

}

.div-box-realizacje18 {
  background-image: url('../images/20240301145914_4W2A3142_1.avif');

}

.div-box-realizacje19 {
  background-image: url('../images/20230904083118_4W2A1976_1.avif');

}

.div-box-realizacje_audia6 {
  background-image: url('../images/20230802091153_4W2A1686_1.avif');

}

.div-box-realizacje_rav4 {
  background-image: url('../images/20240301150052_4W2A3149_1.avif');

}

.div-box-realizacje_octavia {
  background-image: url('../images/20230904083133_4W2A1977_1.avif');

}

.hero-heading-left-cardetiling {
  background-color: #f5f7fa00;
  border-bottom: 1px #e4ebf3;
  padding: 20px 30px 80px;
  position: static;
}

.container-5 {
  z-index: 2147483647;
  clear: both;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #922f2f00;
  background-image: url('../images/komunikat_wolne_1.avif');
  background-position: 0 0;

  background-size: contain;
  border: 1px solid #0000;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 750px;
  height: auto;
  display: none;
  position: absolute;
  inset: 7% 0% 0%;
  overflow: visible;
}

.button-3 {
  text-transform: uppercase;
  background-color: #ff2503;
  font-family: Clashdisplay, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.div-box-realizacje20 {
  background-image: url('../images/8_1.avif');

}

.div-box-realizacje21 {
  background-image: url('../images/4W2A4227_1.webp');

}

.div-img-top-realizacja21 {
  background-image: url('../images/4W2A4227_1.webp');
  background-position: 50%;

  background-size: auto;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1250px;
  height: auto;
  min-height: clamp(320px, 45vw, 620px);
  display: flex;
}

.div-img-top-realizacja20 {
  background-image: url('../images/5_1.avif');
  background-position: 50%;

  background-size: auto;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1250px;
  height: auto;
  min-height: clamp(320px, 45vw, 620px);
  display: flex;
}

.div-box-realizacje22 {
  background-image: url('../images/pion2_1.avif');

}

.div-img-top-realizacja22 {
  background-image: url('../images/23_1.avif');
  background-position: 50%;

  background-size: auto;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1250px;
  height: auto;
  min-height: clamp(320px, 45vw, 620px);
  display: flex;
}

.div-box-realizacje_20 {
  background-image: url('../images/9_1.avif');

}

.div-box-realizacje_21 {
  background-image: url('../images/4W2A4227_1.webp');

}

.div-box-realizacje_22 {
  background-image: url('../images/poziom1_1.avif');

}

.container-6 {
  z-index: 100;
  clear: both;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #922f2f00;
  background-image: url('../images/kartka2.jpg');
  background-position: 50%;

  background-size: contain;
  border: 2px solid #1e6a93;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 600px;
  height: 850px;
  display: block;
  position: absolute;
  inset: 7% 0% 0%;
  overflow: visible;
}

.button-4 {
  text-transform: uppercase;
  background-color: #c01a1c;
  font-family: Clashdisplay, sans-serif;
}

.div-img-top-realizacja23 {
  background-image: url('../images/fot16a_1.avif');
  background-position: 0 0;

  background-size: contain;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1250px;
  height: auto;
  min-height: clamp(320px, 45vw, 620px);
  display: flex;
}

.div-img-top-realizacja24 {
  background-image: url('../images/38_1.avif');
  background-position: 50% 100%;

  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1250px;
  height: auto;
  min-height: clamp(320px, 45vw, 620px);
  display: flex;
}

.div-box-realizacje23 {
  background-image: url('../images/37_1.avif');

}

.div-box-realizacje24 {
  background-image: url('../images/fot16_1.avif');

}

.div-box-realizacje_23 {
  background-image: url('../images/37_1.avif');

}

.div-box-realizacje_24 {
  background-image: url('../images/fot16_1.avif');

}

.div-img-top-realizacja25 {
  background-image: url('../images/fot17_glowna.jpg');
  background-position: 50% 50%;
  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-height: clamp(320px, 45vw, 620px);
  display: flex;
}

.div-img-top-realizacja26 {
  background-image: url('../images/fot18_glowna.jpg');
  background-position: 50% 100%;

  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1250px;
  height: auto;
  min-height: clamp(320px, 45vw, 620px);
  display: flex;
}

.div-img-top-realizacja27 {
  background-image: url('../images/fot20_glowna.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.div-box-realizacje25 {
  background-image: url('../images/fot20s_1.avif');

}

.div-box-realizacje26 {
  background-image: url('../images/fot18e_1.avif');

}

.div-box-realizacje27 {
  background-image: url('../images/fot17j_1.avif');

}

.button-top-telefon-2 {
  background-image: url('../images/phone.png');
  background-position: 0 0;
  background-size: 30px;
  padding-left: 30px;
}

.section-2 {
  justify-content: center;
  align-items: flex-start;
  height: auto; /* FIX: Allow content to expand */
  min-height: 95vh; /* FIX: Maintain minimum height */
  display: block;
  overflow: visible; /* FIX: Prevent content cutoff */
}

.sectionmaskavideo {
  background-color: #00000070;
  background-image: linear-gradient(#00000026 74%, #0a1119);
  height: auto; /* FIX: Allow content to expand */
  min-height: 100vh; /* FIX: Maintain minimum height */
  overflow: visible; /* FIX: Prevent content cutoff */
}

.button-box-top-zobacz-2 {
  background-color: #ff0000;
  /* border: 2px solid #fff; */
  border-radius: 50px;
  margin: 20px auto;
  padding: 20px 30px;
  font-size: 22px;
  transition: transform .325s, border-color .2s;
  display: block;
}

.button-box-top-zobacz-2:hover {
  background-color: #ff9500;
  border-color: #ff9500;
  transform: translate(-2px, -2px);
  box-shadow: 3px 4px #fff;
  transform: translate(-2px, -2px) ease-in-out;
}

.background-video-2 {
  width: auto;
  height: 100vh;
}

.button-adres-top-2 {
  background-image: url('../images/address.png');
  background-position: 0%;
  background-size: 25px;
  margin-left: 86px;
  margin-right: 17px;
  padding-top: 20px;
  padding-left: 30px;
  padding-right: 10px;
}

.cell-33 {
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

.div_bg_linietop-2 {
  z-index: 1;
  background-image: url('../images/kreska.png');
  background-position: 0 0;
  background-size: auto;
  width: 10px;
  margin-top: 30px;
  height: 120px;
  position: relative;
}

.pisanie24px-unbonded {
  color: #fff;
  text-align: center;
  text-shadow: 1px 2px 2px var(--black);
  justify-content: center;
  align-items: flex-start;
  font-family: Unbounded, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 35px;
}

.div-img-top-realizacja28 {
  background-image: url('../images/fot22j_1.avif');
  background-position: 50% 100%;

  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 1250px;
  height: 840px;
  display: flex;
}

.div-img-top-realizacja29 {
  background-image: url('../images/fot23o_1.avif');
  background-position: 50% 100%;

  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 1250px;
  height: 840px;
  display: flex;
}

.div-img-top-realizacja30 {
  background-image: url('../images/Screenshot-2025-03-27-at-07-14-25-2-Facebook.avif');
  background-position: 50% 100%;

  background-size: cover;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 1250px;
  height: 840px;
  display: flex;
}

.div-box-realizacje_25 {
  background-image: url('../images/Screenshot-2025-03-27-at-07-14-25-2-Facebook.avif');

}

.div-box-realizacje_26 {
  background-image: url('../images/fot20k_1.avif');

}

.div-box-realizacje_27 {
  background-image: url('../images/fot18g_1.avif');

}

.div-box-realizacje28 {
  background-image: url('../images/fot22j_1.avif');

}

.div-box-realizacje29 {
  background-image: url('../images/fot23f_1.avif');

}

.div-box-realizacje30 {
  background-image: url('../images/Screenshot-2025-03-27-at-07-15-12-2-Facebook_1.avif');

}

.div-box-realizacje31 {
  background-image: url('../images/24g_1.avif');

}

.div-box-realizacje32 {
  background-image: url('../images/fot27_1.avif');

}

.div-box-realizacje33 {
  background-image: url('../images/fot25_1.avif');

}

.div-box-realizacje34 {
  background-image: url('../images/realizacja_2.webp');

}

.div-img-top-realizacja31 {
  background-image: url('../images/fot25b_1.avif');
  background-position: 50% 100%;
  background-size: cover;
}


/* Responsywny obrazek hero dla realizacji */
.hero-image-responsive {
  width: 90%;
  height: auto;
  max-width: 100%;
  margin-top: -120px;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.div-img-top-realizacja33 {
  background-image: url('../images/24e_1.avif');
  background-position: 50% 100%;
  background-size: cover;
}

/* Poprawione style dla hero image container */
.hero-image-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.hero-image-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.hero-image-wrapper .div-img-top-realizacja33 {
  width: 100%;
  height: 400px;
  min-height: 300px;
  max-height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  overflow: hidden;
}

/* Responsywność dla różnych rozmiarów ekranu */
@media (max-width: 768px) {
  .hero-image-container {
    padding: 0 15px;
  }

  .hero-image-wrapper .div-img-top-realizacja33 {
    height: 300px;
    min-height: 250px;
  }

  .hero-image-responsive {
    max-height: 400px;
  }
}

@media (max-width: 480px) {
  .hero-image-container {
    padding: 0 10px;
  }

  .hero-image-wrapper .div-img-top-realizacja33 {
    height: 250px;
    min-height: 200px;
  }

  .hero-image-responsive {
    max-height: 300px;
    margin-top: -110px;
    max-width: 96%;
  }
}

.div-box-realizacje_28 {
  background-image: url('../images/24h_1.avif');

}

.div-box-realizacje_29 {
  background-image: url('../images/fot27a_1.avif');

}

.div-box-realizacje_30 {
  background-image: url('../images/fot25_1.avif');

}

.div-box-realizacje35 {
  background-image: url('../images/fot28g_1.avif');

}

.div-box-realizacje36 {
  background-image: url('../images/fot29_1.avif');

}

.div-box-realizacje37 {
  background-image: url('../images/fot26h_1.avif');

}

.div-img-top-realizacja34 {
  background-image: url('../images/fot28h_1.avif');
  background-position: 50% 100%;
  background-size: cover;
}

.div-img-top-realizacja35 {
  background-image: url('../images/fot29_1.avif');
  background-position: 50% 100%;
  background-size: cover;
}

.div-img-top-realizacja36 {
  background-image: url('../images/fot26_1.avif');
  background-position: 50% 100%;
  background-size: cover;
}

.div-box-realizacje_28a {
  background-image: url('../images/fot33_1.avif');

}

.div-box-realizacje_29a {
  background-image: url('../images/fot35i_1.avif');

}

.div-box-realizacje_30a {
  background-image: url('../images/fot34f_1.avif');

}

.div-img-top-realizacja23-copy {
  background-image: url('../images/fot32d_1.avif');
  background-position: 0 0;

  background-size: contain;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 1250px;
  height: 840px;
  display: flex;
}

.div-img-top-realizacja37 {
  background-image: url('../images/fot31b_1.avif');
  background-position: 0 0;
  background-size: contain;
}

.div-img-top-realizacja38 {
  background-image: url('../images/fot30k_1.avif');
  background-position: 50% 100%;
  background-size: cover;
}

.div-box-realizacje38 {
  background-image: url('../images/fot30k_1.avif');

}

.div-box-realizacje39 {
  background-image: url('../images/fot31b_1.avif');
}

.div-box-realizacje40 {
  background-image: url('../images/fot32f_1.avif');

}

.div-box-realizacje41 {
  background-image: url('../images/fot35j_1.avif');

}

.div-box-realizacje42 {
  background-image: url('../images/fot34f_1.avif');

}

.div-box-realizacje43 {
  background-image: url('../images/fot33_1.avif');

}

.div-img-top-realizacja39 {
  background-image: url('../images/fot35i_1.avif');
  background-position: 50% 100%;
  background-size: cover;
}

.div-img-top-realizacja40 {
  background-image: url('../images/fot34f_1.avif');
  background-position: 50% 100%;
  background-size: cover;
}

.div-img-top-realizacja41 {
  background-image: url('../images/fot33_1.avif');
  background-position: 50% 100%;
  background-size: cover;
}

.cell-foot-lemar {
  justify-content: center;
  align-items: flex-end;
  padding-top: 8px;
}

.div-lemar {
  justify-content: flex-end;
  align-items: center;
  width: auto;
  padding-top: 13px;
  padding-right: 5px;
  display: flex;
}

.img-lemar {
  height: 30px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  padding-left: 5px;
}

.img-lemar:hover {
  opacity: 1;
}

.text-block-3 {
  padding-right: 10px;
}

.pisanie_foot_prawa_white {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
}

.box-zalety-katowice {
  background-color: #ffffff40;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  max-width: 500px;
  color: #FFF;
}

.box-uslugi-katowice {
  background-color: #ffffff40;
  padding: 10px;
  border-radius: 10px;
  margin: 5px;
  width: 250px;
}

@media screen and (max-width: 991px) {
  .body {
    background-position: 50% 0;
    background-size: cover;
  }

  .foot-contact-item-container {
    flex-flow: column;
    align-items: center;
  }


  .nav-link {
    font-size: 32px;
  }

  .uslugi {
    font-size: 32px;
  }

  .icon {
    font-size: 32px;
    transform: translate(55px, -8px);
  }

  .icon-2 {
    color: #fff;
    font-size: 45px;
  }

  .button-adres-top {

    /* background-image: none; */
    /* background-repeat: repeat; */
    /* background-size: auto; */
    /* border-bottom-width: 0; */
    /* margin-left: 0; */
    /* padding-bottom: 20px; */
    /* padding-left: 21px; */
    /* display: flex; */
    display: none;
  }

  .button-top-telefon {
    /* background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    border-bottom-width: 0;
    padding-top: 20px;
    padding-left: 21px;
    display: flex; */
    display: none;
  }

  .text-napis-top-dreamcar {
    filter: none;
    font-size: 55px;
  }

  .h1-68px-white {
    text-align: center;
    font-size: 48px;
  }

  .cell-napis-top-h1 {
    padding-top: 10px;
    line-height: 0.9;
  }

  .sekcja-index-uslugi-boxy {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: block;
  }

  .kontener-index-uslugi {
    flex-flow: column;
    display: flex;
    align-items: center;
  }

  .quick-stack-index-uslugi {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .naglowek-35px {
    text-align: center;
    font-size: 30px;
  }

  .pisanie24px {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.1rem;
    display: block;
  }

  .cell-5 {
    padding-top: 0;
    display: flex;
  }

  .cell-boxy-uslugi {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .div-box-uslugi1,
  .div-box-uslugi2,
  .div-box-uslugi4,
  .div-box-uslugi3,
  .div-box-uslugi5,
  .div-box-uslugi6 {
    max-width: 95%;
  }

  .container {
    max-width: 728px;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: -40px;
  }

  .hero-split {
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .paragraf-odstep-25px.pisanie24px {
    font-size: 1.4rem;
  }

  .onas-lewa {
    justify-content: center;
    align-items: flex-end;
  }

  .onas-prawa {
    justify-content: center;
    align-items: flex-start;
  }

  .onas-dol {
    justify-content: flex-start;
    align-items: center;
  }

  .div-onas-lewa {
    max-width: 80%;
    height: 100%;
    min-height: 0;
    max-height: 100%;
  }

  .div-onas-prawa {
    max-width: 80%;
  }

  .div-onas-dol {
    justify-content: center;
    align-items: center;
    max-width: 100%;
    display: flex;
  }

  .quick-stack-2 {
    max-width: 80%;
  }

  .image {
    aspect-ratio: auto;
  }

  .cell-8 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: none;
  }

  .quick-stack-3 {
    padding-top: 20px;
  }

  .naglowek-30px.text-kolor-czerwony {
    font-size: 1.5rem;
  }

  .naglowek-30px.text-kolor-bialy {
    font-size: 2rem;
  }

  .div-opinie-liczba {
    padding-right: 20px;
  }

  .cell-9 {
    justify-content: center;
    align-items: flex-start;
  }

  .cell-10 {
    text-align: left;
    justify-content: flex-start;
    align-items: center;
  }

  .div_bg_linie_prawa_uslugi {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .naglowek-35px-czarny {
    text-align: center;
    font-size: 30px;
  }

  .naglowek_bold55 {
    font-size: 2.2rem;
  }

  .cell-13 {
    padding-top: 0;
  }

  .div-foot-box {
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
    padding-top: 20px;
  }

  .foot-napis-adres {
    font-size: 1.4rem;
  }

  .cell-14,
  .cell-15 {
    display: none;
  }

  .quick-stack-4 {
    max-width: 100%;
  }

  .pisanie_foot_prawa {
    color: #ffffff75;
    text-align: center;
    max-width: 90%;
    font-size: .8rem;
  }

  .quick-stackfoot-prawa {
    max-width: 100%;
  }

  .text-kolor-bialy {
    font-size: 1.6rem;
  }

  .cell-19 {
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 10px;
  }

  .cell-20 {
    justify-content: flex-start;
    align-items: center;
  }

  .quick-stack-5 {
    padding-top: 60px;
  }

  .pisanie24px-biały {
    text-align: left;
    font-size: 1.3rem;
  }

  .naglowek-35px-odstepy {
    text-align: center;
    font-size: 30px;
  }

  .div_bg_linie_opis_onas {
    height: 120px;
  }

  .hero-wrapper-podstrona {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: -40px;
  }

  .quick-stack-2-podstrona {
    max-width: 80%;
  }

  .quick-stack-3-podstrona {
    padding-top: 20px;
  }

  .div-korzysci {
    text-align: left;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-right: 20px;
  }

  .pisanie24p-korzysci {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.3rem;
    display: block;
  }

  .naglowek_bold45 {
    font-size: 2.2rem;
  }

  .naglowek-35-bold {
    text-align: center;
    font-size: 30px;
  }

  .div-onas-dol-copy,
  .div-onas-dol-felga,
  .div-onas-dol2,
  .div-onas-dol3,
  .div-onas-dol4,
  .div-onas-dol5,
  .div-onas-dol-6 {
    justify-content: center;
    align-items: center;
    max-width: 80%;
    display: flex;
  }

  .podstrona-sekcja-top-realizacje {
    height: 800px;
  }

  .kontener-index-galeria {
    flex-flow: column;
    display: flex;
  }

  .div-onas-dol-index {
    justify-content: center;
    align-items: center;
    max-width: 80%;
    display: flex;
  }

  .foot-napis-godziny {
    font-size: 1.4rem;
  }

  .text-foot-male {
    text-align: center;
  }

  .div-foot-godziny {
    justify-content: flex-start;
    align-items: center;
    width: 40%;
    display: flex;
  }

  .cell-26 {
    flex-flow: column;
  }

  .div-media-spolecznosciowe {
    margin-bottom: 15px;
    text-align: center;
  }

  .cell-27 {
    display: none;
  }

  .div-butoon-media {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
  }

  .container-3 {
    max-width: 728px;
  }

  .cell-28 {
    justify-content: center;
    align-items: flex-start;
  }

  .cell-29 {
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 10px;
  }

  .div_bg_linie_opis_onas-2 {
    height: 120px;
  }

  .cell-30 {
    justify-content: flex-start;
    align-items: center;
  }

  .quick-stack-7 {
    padding-top: 20px;
  }

  .quick-stack-8 {
    max-width: 80%;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: clamp(10px, 3vw, 20px);
  }

  .div_bg_linie_opis_animacja-dol {
    height: 120px;
  }

  .quick-stag-opis-realizacja {
    text-align: left;
  }

  .lista-wypunktowanie {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .cell-32 {
    flex-flow: row;
  }

  .list-item,
  .list-item-2 {
    text-align: left;
  }

  .pisanie24px-srodek,
  .pisanie24px-odstep-gora-dol {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.1rem;
    display: block;
  }

  .hero-split-do-lewej {
    justify-content: flex-start;
    align-items: center;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .img-poziome-772px {
    max-width: 598px;
  }

  .background-video-rozmowa {
    padding-bottom: 28px;
  }
  
  .background-video-rozmowa video {
    object-fit: cover;
  }

  .naglowek-30px-filmik-pytania {
    padding-bottom: 10px;
    font-size: 1.4rem;
    line-height: 25px;
  }

  .naglowek-30px-filmik-pytania.text-kolor-czerwony {
    font-size: 1.5rem;
  }

  .naglowek-30px-filmik-pytania.text-kolor-bialy {
    font-size: 2rem;
  }

  .container-5 {
    z-index: 1;
    box-shadow: none;

    background-size: contain;
    border-color: #1e6a9300;
    max-width: 80%;
    position: absolute;
    inset: 24vh 0% 0%;
  }

  .container-6 {
    z-index: 91;
    box-shadow: none;

    background-size: contain;
    border-color: #1e6a9300;
    max-width: 80%;
  }

  .div-img-top-realizacja23 {
    background-size: contain;
    width: 100%;
    height: 540px;
  }

  .div-img-top-realizacja24 {
    background-size: cover;
    width: 100%;
    height: 540px;
  }



  .div-img-top-realizacja25,
  .div-img-top-realizacja26,
  .div-img-top-realizacja27 {
    background-size: cover;
    width: 100%;
    height: 540px;
  }



  .button-top-telefon-2 {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    border-bottom-width: 0;
    padding-top: 20px;
    padding-left: 21px;
    display: flex;
  }

  .icon-3 {
    color: #fff;
    font-size: 45px;
  }

  .button-adres-top-2 {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    border-bottom-width: 0;
    margin-left: 0;
    padding-bottom: 20px;
    padding-left: 21px;
    display: flex;
  }

  .pisanie24px-unbonded {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.1rem;
    display: block;
  }

  .div-img-top-realizacja28,
  .div-img-top-realizacja29,
  .div-img-top-realizacja30 {
    background-size: cover;
    width: 100%;
    height: 540px;
  }

  .div-img-top-realizacja31,
  .div-img-top-realizacja33,
  .div-img-top-realizacje-ssangyong-torres,
  .div-img-top-realizacje-ford-tourneo {
    background-size: cover;
    width: 100%;
    height: 540px;
  }

  .div-img-top-realizacja34,
  .div-img-top-realizacja35,
  .div-img-top-realizacja36 {
    background-size: cover;
    width: 100%;
    height: 540px;
  }

  .div-img-top-realizacja23-copy,
  .div-img-top-realizacja37 {
    background-size: contain;
    width: 100%;
    height: 540px;
  }

  .div-img-top-realizacja38 {
    background-size: cover;
    width: 100%;
    height: 540px;
  }



  .div-img-top-realizacja39,
  .div-img-top-realizacja40,
  .div-img-top-realizacja41 {
    background-size: cover;
    width: 100%;
    height: 540px;
  }

  .pisanie_foot_prawa_white {
    color: #ffffff75;
    text-align: center;
    max-width: 90%;
    font-size: .8rem;
  }
}

@media screen and (max-width: 767px) {
  .body {
    background-image: none;
  }

  .index-sekcja-top-napis {
    margin-top: -99px;
  }

  .nav-menu {
    padding-bottom: 30px;
  }

  .text-napis-top-dreamcar {
    text-align: center;
    font-size: 35px;
  }

  .quick-stack {
    margin-top: 99px;
  }

  .div_bg_linietop {
    background-position: 50%;
    background-size: contain;
    height: 150px;
  }

  .h1-68px-white {
    font-size: 38px;
  }

  .sekcja-index-uslugi-boxy {
    margin-top: 0;
  }

  .quick-stack-index-uslugi {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .naglowek-35px {
    font-size: 1.4rem;
  }

  .pisanie24px {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .div-box-uslugi2 {
    text-align: center;
    max-width: none;
  }

  .sekcja-index-opis {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .hero-heading-left {
    padding: 60px 15px;
  }

  .menu-button {
    margin-top: 24px;
  }

  .paragraf-odstep-25px.pisanie24px {
    font-size: 1.1rem;
  }

  .div-onas-lewa {
    max-width: 70%;
    height: 100%;
  }

  .div-onas-prawa {
    max-width: 70%;
  }

  .div-onas-dol {
    max-width: 100%;
  }

  .quick-stack-3 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .naglowek-30px.text-kolor-czerwony {
    text-align: center;
  }

  .naglowek-30px.text-kolor-bialy {
    font-size: 1.4rem;
  }

  .div-opinie-liczba {
    padding-left: 20px;
    padding-right: 10px;
  }

  .cell-9 {
    justify-content: center;
    align-items: center;
  }

  .div_bg_linie_prawa_uslugi {
    background-position: 50%;

    background-size: contain;
    height: 80px;
  }



  .quick-stack-foot-top {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  /* Footer responsywny na mobilach */
  .sekcja-foot {
    padding: 40px 0 0;
  }

  .kontener-foot {
    padding: 0 15px;
  }

  .quick-stack-4 {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .div-foot-box {
    padding: 12px;
  }

  .img-foot-adres,
  .img-foot-adres-tel,
  .img-foot-adres-mail {
    width: 35px;
    height: 35px;
  }

  .quick-stackfoot-prawa {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .pisanie_foot_prawa {
    max-width: 100%;
    font-size: 11px;
  }

  .facebook-klawisz,
  .youtube_klawisz {
    width: 45px;
    height: 45px;
  }

  .naglowek_bold55 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .cell-12 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .foot-napis-adres {
    font-size: 15px;
  }

  .div_bg_linie_foot {
    background-position: 50%;

    background-size: contain;
    height: 80px;
  }

  .text-kolor-bialy {
    font-size: 1.3rem;
  }

  .pisanie24px-biały {
    text-align: center;
    font-size: 1.2rem;
    line-height: 20px;
  }

  .naglowek-35px-odstepy {
    font-size: 1.4rem;
  }

  .div_bg_linie_opis_onas {
    background-position: 50%;

    background-size: contain;
    height: 80px;
  }

  .podstrona-sekcja-top {
    height: auto;
    margin-top: 0;
  }

  .quick-stack-3-podstrona {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .div-korzysci {
    padding-left: 20px;
    padding-right: 10px;
  }

  .pisanie24p-korzysci {
    text-align: center;
    font-size: 1.1rem;
    line-height: 20px;
  }

  .naglowek_bold45 {
    text-align: center;
    font-size: 1.8rem;
  }

  .naglowek-35-bold {
    font-size: 1.4rem;
  }

  .podstrona-sekcja-top-ceramika,
  .podstrona-sekcja-top-korekta {
    height: auto;
    margin-top: 0;
  }

  .div-onas-dol-copy {
    max-width: 70%;
  }

  .podstrona-sekcja-top-detailing,
  .podstrona-sekcja-top-konserwacja,
  .podstrona-sekcja-top-felgi {
    height: auto;
    margin-top: 0;
  }

  .div-onas-dol-felga,
  .div-onas-dol2,
  .div-onas-dol3,
  .div-onas-dol4,
  .div-onas-dol5,
  .div-onas-dol-6 {
    max-width: 70%;
  }

  .podstrona-sekcja-top-realizacje {
    height: 750px;
    margin-top: 0;
  }

  .div-img-galeria {
    width: 100%;
  }

  .div-img-top-realizacja {
    background-size: cover;
  }

  .quick-stack-6 {
    top: -92px;
  }

  .div-onas-dol-index {
    max-width: 80%;
  }

  .div-img-top-realizacje1,
  .div-img-top-realizacja2 {
    background-size: cover;
  }

  .foot-napis-godziny {
    font-size: 1.2rem;
  }

  .text-foot-male {
    padding-left: 0;
    text-align: center;
  }

  .cell-28 {
    justify-content: center;
    align-items: center;
  }

  .naglowek-45px-2 {
    text-align: center;
    line-height: 0.9;
  }

  .div_bg_linie_opis_onas-2 {
    background-position: 50%;

    background-size: contain;
    height: 80px;
  }

  .quick-stack-7 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .sekcja-index-opis-2 {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .div_bg_linie_opis_animacja-dol {
    background-position: 50%;

    background-size: contain;
    height: 80px;
  }

  .div-img-top-realizacja3,
  .div-img-top-realizacja4 {
    background-size: contain;
  }

  .podstrona-sekcja-realizacje,
  .podstrona-sekcja-realizacje-top {
    height: auto;
    margin-top: 0;
  }

  .lista-wypunktowanie {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .lista-wypunktowanie.pisanie24px {
    margin-bottom: 10px;
  }

  .list-item {
    padding-top: 10px;
    padding-bottom: 0;
  }

  .list-item-2,
  .list-item-3,
  .list-item-4 {
    padding-top: 10px;
  }

  .pisanie24px-srodek {
    text-align: center;
    font-size: 1.1rem;
    line-height: 20px;
  }

  .pisanie24px-odstep-gora-dol {
    text-align: center;
    font-size: 1.1rem;
    line-height: 20px;
  }

  .div-img-top-realizacja5,
  .div-img-top-realizacja6 {
    background-size: contain;
  }

  .div-dol-poziom {
    max-width: 535px;
    overflow: visible;
  }

  .img-poziome-772px {
    max-width: 100%;
  }

  .background-video-rozmowa {
    padding-bottom: 28px;
  }
  
  .background-video-rozmowa video {
    object-fit: cover;
  }

  .naglowek-30px-filmik-pytania {
    font-size: 1.2rem;
    line-height: 25px;
  }

  .naglowek-30px-filmik-pytania.text-kolor-czerwony {
    text-align: center;
  }

  .naglowek-30px-filmik-pytania.text-kolor-bialy {
    font-size: 1.4rem;
  }

  .hero-heading-left-cardetiling {
    padding: 60px 15px;
  }

  .div-img-top-realizacja21,
  .div-img-top-realizacja20 {
    background-size: cover;
  }

  .div-img-top-realizacja22 {
    background-size: cover;
  }

  .container-6 {
    z-index: 191;
    background-position: 50% 0;
    top: auto;
  }

  .div-img-top-realizacja23,
  .div-img-top-realizacja24 {
    background-position: 50%;
    background-size: contain;
  }

  .div-img-top-realizacja25,
  .div-img-top-realizacja26,
  .div-img-top-realizacja27 {
    background-position: 50%;
    background-size: contain;
  }



  .sectionmaskavideo {
    height: 80vh;
  }

  .background-video-2 {
    height: auto;
  }

  .div_bg_linietop-2 {
    background-position: 50%;

    background-size: contain;
    width: 20px;
    height: 80px;
  }

  .pisanie24px-unbonded {
    text-align: center;
    font-size: 1.1rem;
    line-height: 20px;
  }

  .div-img-top-realizacja31,
  .div-img-top-realizacja33,
  .div-img-top-realizacje-ssangyong-torres,
  .div-img-top-realizacje-ford-tourneo {
    background-position: 50%;
    background-size: contain;
  }

  .div-img-top-realizacja34,
  .div-img-top-realizacja35,
  .div-img-top-realizacja36,
  .div-img-top-realizacja23-copy,
  .div-img-top-realizacja37,
  .div-img-top-realizacja38 {
    background-position: 50%;
    background-size: contain;
  }

  .div-img-top-realizacja39,
  .div-img-top-realizacja40,
  .div-img-top-realizacja41 {
    background-position: 50%;
    background-size: contain;
  }

  .cell-foot-lemar,
  .div-lemar {
    justify-content: center;
    align-items: center;
  }
}

@media screen and (max-width: 479px) {
  .body {
    background-image: none;
  }

  .index-sekcja-top-napis {
    height: 75svh;
    margin-top: -120px;
    padding-bottom: 0;
  }

  .div-logo-top {
    width: 100px;
  }

  .nav-menu {
    background-color: #162536bf;
  }

  .icon-2 {
    font-size: 45px;
  }

  .text-napis-top-dreamcar {
    filter: none;
    text-align: center;
    font-size: 2.2rem;
    line-height: 40px;
    display: block;
  }

  .quick-stack {
    margin-top: 108px;
    padding-bottom: 0;
    font-size: 2rem;
  }

  .text-kolor-czerwony {
    font-size: 2.2rem;
  }

  .cell-4 {
    padding-top: 0;
  }

  /* .div_bg_linietop {
    text-align: left;
    background-position: 50%;
    top:30px;
    background-size: contain;
    justify-content: flex-start;
    align-items: center;
    height: 80px;
    display: block;
  } */

  .h1-68px-white {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 2rem;
    line-height: 1;
  }

  .cell-napis-top-h1 {
    padding-top: 20px;
    padding-bottom: 0;
  }

  .cell-napis-top-podh1 {
    text-align: left;
  }

  .sekcja-index-uslugi-boxy {
    max-width: none;
  }

  .kontener-index-uslugi {
    padding-left: 0;
    overflow: hidden;
  }

  .quick-stack-index-uslugi {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    max-width: none;
  }

  .naglowek-35px {
    font-size: 1.3rem;
  }

  .pisanie24px {
    font-size: 14px;
    line-height: 1.5;
    padding: 0 10px;
  }

  .cell-5 {
    padding-bottom: 20px;
    text-align: center;
  }

  .hero-container {
    flex-direction: column;
    justify-content: space-evenly;
  }

  .kontener-index-uslugi-katowice {
    flex-direction: column;
  }

  .cell-boxy-uslugi {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .div-box-uslugi1,
  .div-box-uslugi2,
  .div-box-uslugi3,
  .div-box-uslugi4,
  .div-box-uslugi5,
  .div-box-uslugi6 {
    background-size: auto;
    justify-content: flex-end;
    align-items: center;
    max-width: 90%;
    height: 350px;
    overflow: visible;
  }

  .button-box-uslugi {
    border-width: 2px;
    font-size: 1.3em;
  }


  .container {
    max-width: none;
  }

  .hero-split {
    justify-content: flex-start;
    align-items: center;
  }

  .lokalne-opinie-katowice {
    padding: 0 10px;
  }

  .menu-button {
    margin-top: 10px;
  }

  .menu-button.w--open {
    background-color: #162536bf;
  }

  .paragraf-odstep-25px.pisanie24px {
    text-align: center;
    margin-bottom: 20px;
  }

  .onas-lewa {
    justify-content: flex-start;
    align-items: flex-end;
  }

  .onas-prawa {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .onas-dol {
    display: flex;
  }

  .div-onas-lewa {
    max-width: 45%;
    height: 100%;
  }

  .div-onas-prawa {
    max-width: 45%;
  }

  .div-onas-dol {
    max-width: 100%;
    height: 300px;
    display: flex;
  }

  .quick-stack-3 {
    padding-left: 0;
    padding-right: 0;
  }

  .naglowek-30px {
    text-align: center;
  }

  .naglowek-30px.text-kolor-czerwony {
    text-align: center;
    font-size: 1.2rem;
  }

  .div-opinie-liczba {
    padding-left: 10px;
    padding-right: 10px;
  }

  .cell-9 {
    padding-bottom: 25px;
  }

  .klawisz-video {
    max-width: 50%;
  }

  .lightbox-link {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div_bg_linie_prawa_uslugi {
    text-align: left;
    background-position: 50%;

    background-size: contain;
    justify-content: flex-start;
    align-items: center;
    height: 80px;
    display: block;
  }

  .index-sekcja-realizacje {
    position: static;
  }

  .naglowek-35px-czarny {
    font-size: 22px;
  }





  .button-box-realizacje-czarne {
    text-align: center;
    font-size: 1.5em;
  }

  .sekcja-foot {
    position: relative;
  }

  .naglowek_bold55 {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 22px;
    line-height: 1.3;
  }

  .div-foot-box {
    padding: 10px;
    gap: 10px;
    max-width: 100%;
  }

  .img-foot-adres,
  .img-foot-adres-tel,
  .img-foot-adres-mail {
    width: 30px;
    height: 30px;
  }

  .link_foot {
    font-size: 14px;
    word-break: break-word;
  }

  .facebook-klawisz,
  .youtube_klawisz {
    width: 40px;
    height: 40px;
  }

  .img-lemar {
    height: 25px;
  }

  .img-foot-adres {
    padding-bottom: 5px;
  }

  .cell-16,
  .cell-17,
  .cell-18 {
    justify-content: center;
    align-items: flex-start;
  }

  .div_bg_linie_foot {
    text-align: left;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    justify-content: flex-start;
    align-items: center;
    height: 80px;
    display: block;
  }

  .img-foot-adres-tel {
    width: 45px;
    padding-bottom: 10px;
  }

  .img-foot-adres-mail {
    width: 40px;
    padding-bottom: 5px;
  }

  .quick-stack-4 {
    max-width: 100%;
    text-align: center;
  }

  .pisanie_foot_prawa {
    max-width: 100%;
    font-size: 10px;
    line-height: 15px;
  }

  .cell-19 {
    padding-bottom: 0;
  }

  .cell-20 {
    justify-content: center;
    align-items: center;
  }

  .pisanie24px-biały {
    text-align: center;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    padding-bottom: 0;
    font-size: 1.1rem;
    line-height: 20px;
  }

  .naglowek-35px-odstepy {
    padding-left: 10px;
    font-size: 22px;
  }

  .div_bg_linie_opis_onas {
    text-align: left;
    background-position: 50%;

    background-size: contain;
    justify-content: flex-start;
    align-items: center;
    height: 80px;
    display: block;
  }

  .naglowek-45px {
    font-size: 2.2rem;
    line-height:1;
  }

  .div-napis-to-wiecej-niz {
    padding-top: 0;
    padding-left: 0;
  }

  .podstrona-sekcja-top {
    height: auto;
    margin-top: 0;
  }

  .body_podstrona {
    background-size: cover;
  }

  .quick-stack-3-podstrona {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .div-korzysci {
    padding-left: 10px;
    padding-right: 10px;
  }

  .pisanie24p-korzysci {
    text-align: center;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    padding-bottom: 0;
    font-size: 1.1rem;
    line-height: 20px;
  }

  .naglowek_bold45 {
    padding-left: 20px;
    padding-right: 20px;
    line-height:1;
    font-size: 1.6rem;
  }

  .naglowek-35-bold {
    font-size: 1.3rem;
  }

  .button-box-wycena {
    border-width: 2px;
    font-size: 1.3em;
  }

  .podstrona-sekcja-top-ceramika {
    height: auto;
    margin-top: 0;
  }

  .podstrona-sekcja-top-korekta {
    background-position: 0%;
    height: auto;
    margin-top: 0;
  }

  .div-onas-dol-copy {
    max-width: 45%;
    height: 300px;
    display: flex;
  }

  .image-dol {
    overflow: visible;
  }

  .podstrona-sekcja-top-detailing,
  .podstrona-sekcja-top-konserwacja {
    height: auto;
    margin-top: 0;
  }

  .podstrona-sekcja-top-felgi {
    background-position: 50%;
    height: auto;
    margin-top: 0;
  }

  .div-onas-dol-felga {
    background-position: 0%;
    max-width: 100%;
    height: 300px;
    display: flex;
  }

  .div-onas-dol2,
  .div-onas-dol3 {
    max-width: 100%;
    height: 300px;
    display: flex;
  }

  .div-onas-dol4 {

    background-size: cover;
    max-width: 100%;
    height: 300px;
    display: flex;
  }

  .div-onas-dol5,
  .div-onas-dol-6 {
    max-width: 100%;
    height: 300px;
    display: flex;
  }

  .podstrona-sekcja-top-realizacje {
    height: 500px;
    margin-top: 0;
  }

  .sekcja-podstrona-realizacje-galeria {
    margin-bottom: 102px;
    padding-bottom: 0;
  }

  .kontener-index-galeria {
    padding-left: 0;
    overflow: visible; /* FIX: Prevent gallery cutoff */
  }

  .div-img-galeria {
    width: 100%;
  }

  .div-img-top-realizacja {
    background-position: 100%;
    height: 340px;
  }

  .quick-stack-6 {
    top: -68px;
  }

  .sekcja-foot-realizacje {
    position: static;
  }

  .div-onas-dol-index {
    max-width: 45%;
    height: 300px;
    display: flex;
  }

  .index-sekcja-realizacjestatic {
    position: static;
  }

  .div-img-top-realizacje1 {
    background-size: cover;
    height: 340px;
  }

  .div-img-top-realizacja2 {
    background-size: contain;
    height: 340px;
  }

  .text-foot-male {
    text-align: center;
    width: 100%;
    padding-left: 15px;
  }

  .div-foot-godziny {
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .container-3 {
    max-width: none;
  }

  .cell-28 {
    padding-bottom: 25px;
  }

  .naglowek-45px-2 {
    font-size: 2.2rem;
    line-height: 35px;
  }

  .cell-29 {
    padding-bottom: 0;
  }

  .div_bg_linie_opis_onas-2 {
    background-position: 50%;
    background-size: contain;
    justify-content: flex-start;
    align-items: center;
    height: 80px;
    display: block;
  }

  .cell-30 {
    justify-content: center;
    align-items: center;
  }

  .quick-stack-7 {
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .div_bg_linie_opis_animacja-dol {
    text-align: left;
    background-position: 50%;

    background-size: contain;
    justify-content: flex-start;
    align-items: center;
    height: 80px;
    display: block;
  }

  .button-box-uslugi-2 {
    border-width: 2px;
    font-size: 1.3em;
  }

  .quick-stack-9 {
    margin-top: 120px;
  }

  .div-img-top-realizacja3,
  .div-img-top-realizacja4 {
    background-position: 50%;
    height: 340px;
  }

  .podstrona-sekcja-realizacje,
  .podstrona-sekcja-realizacje-top {
    height: auto;
    margin-top: 0;
  }



  .quick-stag-opis-realizacja {
    padding-top: 0;
  }

  .cell-31 {
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .lista-wypunktowanie {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 10px;
    padding-left: 17px;
  }

  .lista-wypunktowanie.pisanie24px {
    padding-left: 2px;
  }

  .list-item,
  .list-item-2 {
    padding-top: 5px;
  }

  .pisanie24px-srodek {
    text-align: center;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    padding-top: 10px;
    padding-bottom: 0;
    font-size: 1.1rem;
    line-height: 25px;
  }

  .pisanie24px-odstep-gora-dol {
    text-align: left;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    padding-bottom: 0;
    font-size: 1.1rem;
    line-height: 25px;
  }

  .div-img-top-realizacja5 {
    background-position: 50%;
    height: 340px;
  }

  .div-img-top-realizacja6 {
    background-position: 50%;
    height: 340px;
  }



  .div-img-top-realizacja7 {
    background-position: 0%;
    height: 340px;
  }



  .hero-split-do-lewej {
    justify-content: flex-start;
    align-items: center;
  }



  .div-img-top-realizacja8 {
    background-position: 0%;
    height: 340px;
  }

  .div-dol-poziom {
    max-width: 340px;
  }

  .div-img-top-realizacja9 {
    background-position: 0%;
    height: 340px;
  }









  .button-box-top-zobacz {
    background-color: var(--white);
    color: #000;
    text-align: center;
    border-width: 2px;
    margin-top: 27px;
    margin-bottom: 45px;
    font-size: .8em;
  }







  .background-video-rozmowa {
    padding-bottom: 7px;
  }

  .button-rozmowa {
    width: 60px;
    height: 60px;
  }

  .naglowek-30px-filmik-pytania {
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 20px;
  }

  .naglowek-30px-filmik-pytania.text-kolor-czerwony {
    text-align: center;
    font-size: 1.2rem;
  }











  .container-5 {
    z-index: 1;
    max-width: 95%;
    height: 500px;
    max-height: none;
    inset: 143px 0% 0%;
  }



  .div-img-top-realizacja21,
  .div-img-top-realizacja20 {
    background-position: 0%;
    height: 340px;
  }



  .div-img-top-realizacja22 {
    background-position: 0%;
    height: 340px;
  }







  .container-6 {
    z-index: 1;
    max-width: 95%;
    height: 500px;
    max-height: none;
    inset: 15vh 0% 0%;
  }

  .div-img-top-realizacja23 {
    background-position: 50%;
    height: 340px;
  }

  .div-img-top-realizacja24 {
    background-position: 50%;
    background-size: contain;
    height: 340px;
  }







  .div-img-top-realizacja25,
  .div-img-top-realizacja26,
  .div-img-top-realizacja27 {
    background-position: 50%;
    background-size: contain;
    height: 340px;
  }







  .section-2 {
    height: auto;
  }

  .sectionmaskavideo {
    width: auto;
    height: auto;
  }

  .button-box-top-zobacz-2 {
    color: #000;
    text-align: center;
    background-color: #fff;
    border-width: 2px;
    margin-top: 27px;
    margin-bottom: 45px;
    font-size: .8em;
  }

  .icon-3 {
    font-size: 45px;
  }

  .cell-33 {
    padding-top: 0;
  }

  .div_bg_linietop-2 {
    text-align: left;
    background-position: 50%;

    background-size: contain;
    justify-content: flex-start;
    align-items: center;
    height: 80px;
    display: block;
  }

  .pisanie24px-unbonded {
    text-align: center;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    padding-bottom: 0;
    font-size: 1.1rem;
    line-height: 25px;
  }

  .div-img-top-realizacja28,
  .div-img-top-realizacja29,
  .div-img-top-realizacja30 {
    background-position: 50%;
    background-size: contain;
    height: 340px;
  }





















  .div-img-top-realizacja31,
  .div-img-top-realizacja33,
  .div-img-top-realizacje-ssangyong-torres,
  .div-img-top-realizacje-ford-tourneo {
    background-position: 50%;
    background-size: contain;
    height: 340px;
  }













  .div-img-top-realizacja34,
  .div-img-top-realizacja35,
  .div-img-top-realizacja36 {
    background-position: 50%;
    background-size: contain;
    height: 340px;
  }







  .div-img-top-realizacja23-copy,
  .div-img-top-realizacja37 {
    background-position: 50%;
    height: 340px;
  }

  .div-img-top-realizacja38 {
    background-position: 50%;
    background-size: contain;
    height: 340px;
  }













  .div-img-top-realizacja39,
  .div-img-top-realizacja40,
  .div-img-top-realizacja41 {
    background-position: 50%;
    background-size: contain;
    height: 340px;
  }

  .pisanie_foot_prawa_white {
    max-width: 100%;
    font-size: .6rem;
    line-height: 15px;
  }
}

#w-node-_48946806-2d68-cc42-1bf4-ac73e3d037e5-66298257,
#w-node-_48946806-2d68-cc42-1bf4-ac73e3d037ec-66298257,
#w-node-_882baa32-9c96-af39-39e1-bcefaaea8e82-66298257,
#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-66298257 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_1440bce8-fb0c-5d34-f52f-144e39a6b5db-66298257 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
}

#uslugi.w-node-_373d808b-b3fe-1745-6f37-f92a0da38aeb-66298257 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_07300bc2-6176-dc6e-ef46-c08bf1cc4ef8-66298257 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_07300bc2-6176-dc6e-ef46-c08bf1cc4f0e-66298257 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_07300bc2-6176-dc6e-ef46-c08bf1cc4f15-66298257 {
  grid-column: span 2 / span 2;
}

#w-node-_33788f82-5e1c-4fa1-f9a7-8cfea164d94c-a164d94a {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
}

#w-node-_33788f82-5e1c-4fa1-f9a7-8cfea164d953-a164d94a {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr .25fr 1fr .25fr 1fr;
}

#w-node-_827f2385-8f62-75a5-c988-eb00809b7c9c-a164d94a {
  grid-column: span 4 / span 4;
}

#w-node-_33788f82-5e1c-4fa1-f9a7-8cfea164d96a-a164d94a,
#w-node-c1e096d2-1cf5-ec95-4d7a-dda32d562d80-2d562d7e {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
}

#w-node-c1e096d2-1cf5-ec95-4d7a-dda32d562d87-2d562d7e {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-32085446 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72ca3a67-237e-ba58-59c8-e485612c13a4-32085446 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_72ca3a67-237e-ba58-59c8-e485612c13a5-32085446,
#w-node-_9e3f68ae-d1c7-18d7-0ada-3f5dafc48281-32085446 {
  grid-column: span 2 / span 2;
}

#w-node-_09547e60-648d-3db1-fe7b-cd851f3fbbfa-32085446 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_9e3aa2df-3fd7-203f-72dd-0f5f54d5c175-32085446 {
  grid-column: span 2 / span 2;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-1da97fc2 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72ca3a67-237e-ba58-59c8-e485612c13a4-1da97fc2 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_72ca3a67-237e-ba58-59c8-e485612c13a5-1da97fc2,
#w-node-_9e3f68ae-d1c7-18d7-0ada-3f5dafc48281-1da97fc2 {
  grid-column: span 2 / span 2;
}

#w-node-_09547e60-648d-3db1-fe7b-cd851f3fbbfa-1da97fc2 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_9e3aa2df-3fd7-203f-72dd-0f5f54d5c175-1da97fc2 {
  grid-column: span 2 / span 2;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-a164827f {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72ca3a67-237e-ba58-59c8-e485612c13a4-a164827f {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_72ca3a67-237e-ba58-59c8-e485612c13a5-a164827f,
#w-node-_9e3f68ae-d1c7-18d7-0ada-3f5dafc48281-a164827f {
  grid-column: span 2 / span 2;
}

#w-node-_09547e60-648d-3db1-fe7b-cd851f3fbbfa-a164827f {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_9e3aa2df-3fd7-203f-72dd-0f5f54d5c175-a164827f {
  grid-column: span 2 / span 2;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-e9a8d381 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72ca3a67-237e-ba58-59c8-e485612c13a4-e9a8d381 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_72ca3a67-237e-ba58-59c8-e485612c13a5-e9a8d381,
#w-node-_9e3f68ae-d1c7-18d7-0ada-3f5dafc48281-e9a8d381 {
  grid-column: span 2 / span 2;
}

#w-node-_09547e60-648d-3db1-fe7b-cd851f3fbbfa-e9a8d381 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_9e3aa2df-3fd7-203f-72dd-0f5f54d5c175-e9a8d381 {
  grid-column: span 2 / span 2;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-47deb001 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72ca3a67-237e-ba58-59c8-e485612c13a4-47deb001 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_72ca3a67-237e-ba58-59c8-e485612c13a5-47deb001,
#w-node-_9e3f68ae-d1c7-18d7-0ada-3f5dafc48281-47deb001 {
  grid-column: span 2 / span 2;
}

#w-node-_09547e60-648d-3db1-fe7b-cd851f3fbbfa-47deb001 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_9e3aa2df-3fd7-203f-72dd-0f5f54d5c175-47deb001 {
  grid-column: span 2 / span 2;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-bfbc42cb {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72ca3a67-237e-ba58-59c8-e485612c13a4-bfbc42cb {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_72ca3a67-237e-ba58-59c8-e485612c13a5-bfbc42cb,
#w-node-_9e3f68ae-d1c7-18d7-0ada-3f5dafc48281-bfbc42cb {
  grid-column: span 2 / span 2;
}

#w-node-_09547e60-648d-3db1-fe7b-cd851f3fbbfa-bfbc42cb {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_9e3aa2df-3fd7-203f-72dd-0f5f54d5c175-bfbc42cb {
  grid-column: span 2 / span 2;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-343b16c5,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-343b16c5 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_4a634c7d-9a2f-d90b-e876-f4e0a800e921-343b16c5 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-343b16c5 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-9665c0fb,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-9665c0fb {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-9665c0fb {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-9665c0fb {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-d65b2c38,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-d65b2c38 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_76a6e70e-95d6-6c7c-70ba-ab762177a238-d65b2c38 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-d65b2c38 {
  grid-template-rows: auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-2aeae68b,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-2aeae68b {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_70da9d91-a7c7-d21f-5543-a6b6aa45c493-2aeae68b {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-2aeae68b {
  grid-template-rows: auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-e87691a1,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-e87691a1 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-cffd8ead-4597-c1c4-4f38-bfc26f114ad4-e87691a1 {
  grid-template-rows: auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-2e1f71bd {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_01573b60-b8bf-a09c-f70c-8a7dfdb11877-2e1f71bd,
#w-node-e89e487c-cd03-f36e-1454-a1b0d760786d-2e1f71bd,
#w-node-_6cc0ec9c-d27e-8aa3-132f-8157cc6f79df-2e1f71bd,
#w-node-_780272fb-6e1e-51ab-2c36-b29b83a6c4f5-2e1f71bd,
#w-node-_89e2c0dd-a812-6c4d-d88a-a08915420125-2e1f71bd,
#w-node-f7b6fd17-848b-f319-f0b0-45c4066f72a9-2e1f71bd {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_3e7fb420-5f41-c5c0-5235-2123901a3464-2e1f71bd {
  grid-template-rows: auto auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-2a748d97,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-2a748d97 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_4a634c7d-9a2f-d90b-e876-f4e0a800e921-2a748d97 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-2a748d97 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-2a86c38a,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-2a86c38a {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_4a634c7d-9a2f-d90b-e876-f4e0a800e921-2a86c38a {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-2a86c38a {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-1b2fedeb {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_09547e60-648d-3db1-fe7b-cd851f3fbbfa-1b2fedeb {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_9e3aa2df-3fd7-203f-72dd-0f5f54d5c175-1b2fedeb {
  grid-column: span 2 / span 2;
}

#w-node-_633249fc-8d86-dd62-13c9-5eeae5e30217-1b2fedeb {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_633249fc-8d86-dd62-13c9-5eeae5e3021e-1b2fedeb {
  grid-column: span 2 / span 2;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-abe6e6f3,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-abe6e6f3 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-abe6e6f3 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-abe6e6f3 {
  grid-template-rows: auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-151b4bf5,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-151b4bf5 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-151b4bf5 {
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-151b4bf5 {
  grid-template-rows: auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-a6510860,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-a6510860 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-a6510860 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-a6510860 {
  grid-template-rows: auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-13805bcb,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-13805bcb {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-13805bcb {
  grid-template-rows: auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-f2347e36,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-f2347e36 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-f2347e36 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-3acd2b5b,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-3acd2b5b {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_2f21020f-9600-0e6c-3ac9-f28e60cf1b5b-3acd2b5b {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-3acd2b5b {
  grid-template-rows: auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-80a27010,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-80a27010 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_2f21020f-9600-0e6c-3ac9-f28e60cf1b5b-80a27010 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-80a27010 {
  grid-template-rows: auto auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-a4bc7c5a,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-a4bc7c5a,
#w-node-_4a634c7d-9a2f-d90b-e876-f4e0a800e921-a4bc7c5a {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-a4bc7c5a {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-9882e113,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-9882e113 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_4a634c7d-9a2f-d90b-e876-f4e0a800e921-9882e113 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-9882e113 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-214b2f85,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-214b2f85 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_4a634c7d-9a2f-d90b-e876-f4e0a800e921-214b2f85 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-214b2f85 {
  grid-template-rows: auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-72ebffbf,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-72ebffbf {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-72ebffbf {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-72ebffbf {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-05acec2c,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-05acec2c {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-05acec2c {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-05acec2c {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-845c59d2,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-845c59d2 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-845c59d2 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-845c59d2 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-66e654de,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-66e654de {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-66e654de {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-66e654de {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-dcd0211f,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-dcd0211f {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-dcd0211f {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-dcd0211f {
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-c6646ca3,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-c6646ca3 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-c6646ca3 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-c6646ca3 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-3a53453a,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-3a53453a {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-3a53453a {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-3a53453a {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-bef2d749,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-bef2d749 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-bef2d749 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-bef2d749 {
  grid-template-rows: auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-f86cf4fd,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-f86cf4fd {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-f86cf4fd {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-f86cf4fd {
  grid-template-rows: auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-e521385d,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-e521385d {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-e521385d {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-e521385d {
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-75d20537,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-75d20537 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-75d20537 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-75d20537 {
  grid-template-rows: auto auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-1c0c929a,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-1c0c929a {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-1c0c929a {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-1c0c929a {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-42974ec2,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-42974ec2 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-42974ec2 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-42974ec2 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-84390a7f,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-84390a7f {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-84390a7f {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-84390a7f {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-1ffb7d67,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-1ffb7d67 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-1ffb7d67 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-1ffb7d67 {
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-ff04d52e,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-ff04d52e {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-ff04d52e {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-ff04d52e {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-1392ff59,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-1392ff59 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-1392ff59 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-1392ff59 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-ccf6b5ff,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-ccf6b5ff {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-ccf6b5ff {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-ccf6b5ff {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-3fa9a9d9,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-3fa9a9d9 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-3fa9a9d9 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-3fa9a9d9 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-fc217133,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-fc217133 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-fc217133 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-fc217133 {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-ef85e14b,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-ef85e14b {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-ef85e14b {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-ef85e14b {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-bd9011fd,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-bd9011fd {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-bd9011fd {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-bd9011fd {
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-50ef6642,
#w-node-_2c18bb44-c45b-13fb-3dd5-3484411eae1f-50ef6642 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

#w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-50ef6642 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-50ef6642 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 991px) {

  #w-node-_48946806-2d68-cc42-1bf4-ac73e3d037ec-66298257,
  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-66298257 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #uslugi.w-node-_373d808b-b3fe-1745-6f37-f92a0da38aeb-66298257,
  #w-node-_07300bc2-6176-dc6e-ef46-c08bf1cc4f0e-66298257 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_33788f82-5e1c-4fa1-f9a7-8cfea164d953-a164d94a {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_33788f82-5e1c-4fa1-f9a7-8cfea164d95a-a164d94a {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_33788f82-5e1c-4fa1-f9a7-8cfea164d96a-a164d94a {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-c1e096d2-1cf5-ec95-4d7a-dda32d562d87-2d562d7e {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-32085446 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_09547e60-648d-3db1-fe7b-cd851f3fbbfa-32085446 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-1da97fc2 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_09547e60-648d-3db1-fe7b-cd851f3fbbfa-1da97fc2 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-a164827f {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_09547e60-648d-3db1-fe7b-cd851f3fbbfa-a164827f {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-e9a8d381 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_09547e60-648d-3db1-fe7b-cd851f3fbbfa-e9a8d381 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-47deb001 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_09547e60-648d-3db1-fe7b-cd851f3fbbfa-47deb001 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-bfbc42cb {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_09547e60-648d-3db1-fe7b-cd851f3fbbfa-bfbc42cb {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-343b16c5 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-343b16c5 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-343b16c5 {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-9665c0fb {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-9665c0fb {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8109-9665c0fb {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-9665c0fb {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-9665c0fb {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-d65b2c38 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-d65b2c38 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-d65b2c38 {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-2aeae68b {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-2aeae68b {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-2aeae68b {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-e87691a1 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-e87691a1 {
    grid-template-rows: auto auto auto auto auto auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-e87691a1 {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-2e1f71bd {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_01573b60-b8bf-a09c-f70c-8a7dfdb11877-2e1f71bd,
  #w-node-e89e487c-cd03-f36e-1454-a1b0d760786d-2e1f71bd,
  #w-node-_6cc0ec9c-d27e-8aa3-132f-8157cc6f79df-2e1f71bd,
  #w-node-_780272fb-6e1e-51ab-2c36-b29b83a6c4f5-2e1f71bd,
  #w-node-_89e2c0dd-a812-6c4d-d88a-a08915420125-2e1f71bd,
  #w-node-f7b6fd17-848b-f319-f0b0-45c4066f72a9-2e1f71bd,
  #w-node-_3e7fb420-5f41-c5c0-5235-2123901a3464-2e1f71bd {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-2a748d97 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-2a748d97 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-2a748d97 {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-2a86c38a {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-2a86c38a {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-2a86c38a {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-1b2fedeb {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_09547e60-648d-3db1-fe7b-cd851f3fbbfa-1b2fedeb,
  #w-node-_633249fc-8d86-dd62-13c9-5eeae5e30217-1b2fedeb {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-abe6e6f3 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-abe6e6f3 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8109-abe6e6f3 {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-abe6e6f3 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-abe6e6f3 {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-151b4bf5 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-151b4bf5 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8109-151b4bf5 {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-151b4bf5 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-151b4bf5 {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-a6510860 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-a6510860 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8109-a6510860 {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-a6510860 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-a6510860 {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-13805bcb {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-13805bcb {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-13805bcb {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-f2347e36 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-f2347e36 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-f2347e36 {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-3acd2b5b {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-3acd2b5b {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-3acd2b5b {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-80a27010 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-80a27010 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-80a27010 {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-a4bc7c5a {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-a4bc7c5a {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-a4bc7c5a {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-9882e113 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-9882e113 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-9882e113 {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-214b2f85 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-214b2f85 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-214b2f85 {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-72ebffbf {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8109-72ebffbf {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-72ebffbf {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-72ebffbf {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-05acec2c {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-05acec2c {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8109-05acec2c {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-05acec2c {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-05acec2c {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-845c59d2 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-845c59d2 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8109-845c59d2 {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-845c59d2 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-845c59d2 {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-66e654de,
  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-66e654de {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-66e654de {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-66e654de {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-dcd0211f,
  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-dcd0211f {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-dcd0211f {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-dcd0211f {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-c6646ca3,
  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-c6646ca3 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-c6646ca3 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-c6646ca3 {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-3a53453a,
  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-3a53453a {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-3a53453a {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-3a53453a {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-bef2d749,
  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-bef2d749 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-bef2d749 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-bef2d749 {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-f86cf4fd,
  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-f86cf4fd {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-f86cf4fd {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-f86cf4fd {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-e521385d,
  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-e521385d {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-e521385d {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-e521385d {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-75d20537,
  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-75d20537 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-75d20537 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-75d20537 {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-1c0c929a,
  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-1c0c929a {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-1c0c929a {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-1c0c929a {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-42974ec2,
  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-42974ec2 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-42974ec2 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-42974ec2 {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-84390a7f,
  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-84390a7f {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-84390a7f {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-84390a7f {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-1ffb7d67,
  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-1ffb7d67 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-1ffb7d67 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-1ffb7d67 {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-ff04d52e,
  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-ff04d52e {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-ff04d52e {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-1392ff59,
  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-1392ff59 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-1392ff59 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-1392ff59 {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-ccf6b5ff,
  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-ccf6b5ff {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-ccf6b5ff {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-ccf6b5ff {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-3fa9a9d9,
  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-3fa9a9d9 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-3fa9a9d9 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-3fa9a9d9 {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-fc217133,
  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-fc217133 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-fc217133 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-fc217133 {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-ef85e14b,
  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-ef85e14b {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-ef85e14b {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-ef85e14b {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-bd9011fd,
  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-bd9011fd {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-bd9011fd {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-bd9011fd {
    grid-column: span 1 / span 1;
  }

  #w-node-e679d8c6-3ee1-0b83-8e07-e8d8d6506220-50ef6642,
  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-50ef6642 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-50ef6642 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358e0-50ef6642 {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {

  #w-node-_07300bc2-6176-dc6e-ef46-c08bf1cc4f0e-66298257,
  #w-node-_09547e60-648d-3db1-fe7b-cd851f3fbbfa-32085446,
  #w-node-_09547e60-648d-3db1-fe7b-cd851f3fbbfa-1da97fc2,
  #w-node-_09547e60-648d-3db1-fe7b-cd851f3fbbfa-a164827f,
  #w-node-_09547e60-648d-3db1-fe7b-cd851f3fbbfa-e9a8d381,
  #w-node-_09547e60-648d-3db1-fe7b-cd851f3fbbfa-47deb001,
  #w-node-_09547e60-648d-3db1-fe7b-cd851f3fbbfa-bfbc42cb {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-343b16c5 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-9665c0fb {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-9665c0fb {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-9665c0fb,
  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-d65b2c38,
  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-2aeae68b,
  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-e87691a1,
  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-2a748d97,
  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-2a86c38a {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_09547e60-648d-3db1-fe7b-cd851f3fbbfa-1b2fedeb,
  #w-node-_633249fc-8d86-dd62-13c9-5eeae5e30217-1b2fedeb,
  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-abe6e6f3 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-abe6e6f3 {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-abe6e6f3 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-151b4bf5 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-151b4bf5 {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-151b4bf5 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-a6510860 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-a6510860 {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-a6510860,
  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-13805bcb,
  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-f2347e36,
  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-3acd2b5b,
  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-80a27010,
  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-a4bc7c5a,
  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-9882e113,
  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-214b2f85 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-72ebffbf {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-72ebffbf {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-72ebffbf {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-05acec2c {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-05acec2c {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-05acec2c {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-845c59d2 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-845c59d2 {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-845c59d2 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-66e654de {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-66e654de {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-66e654de {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-dcd0211f {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-dcd0211f {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-dcd0211f {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-c6646ca3 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-c6646ca3 {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-c6646ca3 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-3a53453a {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-3a53453a {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-3a53453a {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-bef2d749 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-bef2d749 {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-bef2d749 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-f86cf4fd {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-f86cf4fd {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-f86cf4fd {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-e521385d {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-e521385d {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-e521385d {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-75d20537 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-75d20537 {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-75d20537 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-1c0c929a {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-1c0c929a {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-1c0c929a {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-42974ec2 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-42974ec2 {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-42974ec2 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-84390a7f {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-84390a7f {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-84390a7f {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-1ffb7d67 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-1ffb7d67 {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-1ffb7d67 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-ff04d52e {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-ff04d52e {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-ff04d52e {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-1392ff59 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-1392ff59 {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-1392ff59 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-ccf6b5ff {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-ccf6b5ff {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-ccf6b5ff {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-3fa9a9d9 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-3fa9a9d9 {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-3fa9a9d9 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-fc217133 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-fc217133 {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-fc217133 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-ef85e14b {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-ef85e14b {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-ef85e14b {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-bd9011fd {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-bd9011fd {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-bd9011fd {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe8108-50ef6642 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_72928066-d258-ae01-1acc-f6dacbbe810c-50ef6642 {
    grid-row: span 1 / span 1;
  }

  #w-node-_823d1a5e-dbc4-359d-d198-fb5d11a358df-50ef6642 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }
}




/* Minimal, bezpieczne poprawki odstępów i renderingu mediów */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
}

section {
  margin: 0;
}

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

/* Webflow background video - usuń ewentualne mikro-luki */
.w-background-video video {
  display: block;
}

/* Strong responsive override for hero blocks to avoid overflow */
[class^="div-img-top-realizacja"] {
  width: 100% !important;
  height: auto !important;
  min-height: clamp(320px, 45vw, 620px) !important;
  background-position: 50% 50% !important;
  background-size: cover !important;
}



/* Naprawa mikro-odstępów pod sekcjami (często przez inline style opacity:0 itp.) */
.podstrona-sekcja-realizacje-top,
.sekcja-podstrona-realizacje,
.sekcja-index-uslugi-boxy,
.sekcja-index-realizacje,
.sekcja-studio-zdjecia,
.sekcja-foot,
.sekcja-footer {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.sekcja-studio-box-txt {
  margin-bottom: 100px;
  padding-top: 50px;
  border-top: 1px solid #ffffff40;
  width: 100%;
}

.kontener-index-uslugi-katowice {
  display: flex;
  align-items: center;
  column-gap: 50px;
  flex-direction: column;
}

.kontener-index-uslugi-katowice .w-layout-cell {
  flex-direction: row;
  gap: 20px;
}

/* Nawigacja – nigdy szerzej niż ekran */
.w-nav,
.navbar,
.nav-menu,
.w-nav-menu {
  max-width: 100%;
}

/* Domyślnie ukryj etykietę przycisku menu */
.menu-label {
  display: none;
}



/* Zapobieganie wyciekom szerokości przez elementy z dużymi width */
[style*="width:"] {
  max-width: 100% !important;
}

/* Przytnij ewentualne negatywne marginesy które powodują przesunięcia */
[style*="margin"],
.w-layout-layout {
  margin-left: clamp(-1px, 0vw, 0px);
}

/* Poprawka dla tekstu w sliderze/hero section */
.text-napis-top-dreamcar {
  transform: none !important;
  transform-style: flat !important;
  width: 100% !important;
  max-width: 100% !important;
  text-align: center !important;
  display: block !important;
  line-height: 0.9 !important;
}

/* Wyłączenie 3D transformacji które mogą powodować problemy */
.w-layout-cell.cell-napis-top-dreamcar {
  transform: none !important;
  transform-style: flat !important;
  perspective: none !important;
}

@media screen and (max-width: 767px) {
  .text-napis-top-dreamcar {
    font-size: 2.5rem !important;
    white-space: normal !important;
    word-break: break-word !important;
    line-height: 0.9 !important;
    padding: 0 20px !important;
  }

  .quick-stack-index-top {
    grid-template-columns: 1fr !important;
  }

}

/* Dropdown fixes - ensure both w-dropdown-list and dropdown-list classes work */
.navbar {
  position: relative;
  z-index: 10000;
}

/* -------------------------------------------------
   Hero (section-2) — responsywność typografii i CTA
   Skupione nadpisania z użyciem clamp(), bez nowych klas
   ------------------------------------------------- */
.section-2 .text-napis-top-dreamcar {
  /* płynna typografia: tel → tablet → desktop */
  font-size: clamp(36px, 9vw, 135px) !important;
  line-height: 0.9 !important;
  margin: 0 auto;
}

.section-2 .pisanie24px-srodek {
  /* lokacje pod hero i teksty pomocnicze */
  font-size: clamp(14px, 2.4vw, 24px);
  padding-left: clamp(8px, 2vw, 24px);
  padding-right: clamp(8px, 2vw, 24px);
}

.section-2 .tagi-container {
  gap: clamp(6px, 1.2vw, 12px);
  padding-left: clamp(8px, 2vw, 24px);
  /* padding-right: clamp(8px, 2vw, 24px); */
}

.section-2 .tag {
  font-size: clamp(12px, 1.6vw, 18px);
  padding: clamp(8px, 1.6vw, 12px) clamp(16px, 3vw, 30px);
}

.section-2 .button-darmowa-wycena {
  /* CTA 1: większy na desktopie, czytelny na mobile */
  padding: clamp(12px, 2vw, 20px) clamp(18px, 3vw, 32px);
  font-size: clamp(16px, 2.2vw, 28px);
}

.section-2 .button-box-top-zobacz-2 {
  /* CTA 2: przycisk pod kreską dekoracyjną */
  font-size: clamp(14px, 2.2vw, 20px);
  padding: clamp(12px, 1.8vw, 20px) clamp(18px, 3vw, 30px);
}

.section-2 .div_bg_linietop-2 {
  /* dekoracyjna kreska: skalowanie wysokości i szerokości */
  height: clamp(200px, 12vw, 120px);
  width: clamp(6px, 1vw, 10px);
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .section-2 .div_bg_linietop-2 {
    height: clamp(100px, 12vw, 120px);
    width: clamp(6px, 1vw, 10px);
    background-size: contain;
  }
}

/* Drobne uładzenie pionowych odstępów w hero na małych ekranach */
@media screen and (max-width: 767px) {
  .section-2 .cell-napis-top-h1 {
    padding-top: 10px;
  }

  .section-2 .cell-33 {
    padding-top: 6px;
  }
}

/* Zapobieganie przycinaniu hero i dolnego przycisku CTA */
.section-2 {
  height: auto !important;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: visible;
}

.section-2 .background-video-2 {
  height: auto !important;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
}

.section-2 .sectionmaskavideo {
  position: relative;
  z-index: 1;
  height: auto !important;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
}

/* Dodatkowa ochrona przed przycinaniem CTA na bardzo małych ekranach */
@media screen and (max-width: 480px) {
  .section-2 .cell-napis-top-podh1 {
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }
}



.w-dropdown {
  position: relative;
}


/* Desktop dropdown placement and internal scrolling */
@media (min-width: 992px) {

  /* Promo banner content centering for desktop */
  .promo-banner__content {
    align-items: center;
    text-align: center;
  }

  .promo-banner__header {
    justify-content: center;
    text-align: center;
  }

  .promo-banner__text {
    text-align: center;
  }

  .promo-banner__timer {
    justify-content: center;
    max-width: 400px;
    margin: 8px auto;
  }

  .promo-banner__button {
    display: flex;
    justify-content: center;
  }

  .btn-voucher {
    max-width: 300px;
    margin: 0 auto;
  }

  /* Enhanced centering for larger screens */
  @media (min-width: 1200px) {
    .promo-banner__content {
      max-width: 600px;
      margin: 0 auto;
    }

    .promo-banner__timer {
      max-width: 500px;
    }

    .btn-voucher {
      max-width: 350px;
    }
  }

  .w-dropdown-list,
  .dropdown-list {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 100%;
    max-height: 75vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 1000;
  }

  .w-dropdown-list.w--open,
  .dropdown-list.w--open {
    display: block;
  }
}




.w-dropdown-toggle,
.dropdown-toggle {
  cursor: pointer !important;
}

/* Enhanced hover behavior for desktop only */
@media (hover: hover) and (pointer: fine) {

  .w-dropdown:hover .w-dropdown-list,
  .w-dropdown:hover .dropdown-list {
    display: block !important;
    z-index: 1000 !important;
  }
}

/* --- Gallery (moved from includes/gallery.php) --- */
.rc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px 10px;
  overflow: visible; /* FIX: Prevent cutoff */
  min-height: auto; /* FIX: Allow content to expand */
}

@media (max-width: 991.98px) {
  .rc-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px; /* FIX: Better spacing on tablets */
    padding: 15px;
  }
}

@media (max-width: 767.98px) {
  .rc-gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
    overflow: visible; /* FIX: Ensure mobile visibility */
  }

  .rc-card {
    border-radius: 14px;
    overflow: visible; /* FIX: Prevent card cutoff */
  }

  .rc-card__title {
    font-size: 20px;
    padding: 10px 15px;
  }

  .rc-card_label {
    font-size: 15px;
    padding: 5px 15px 15px;
  }
}

@media (max-width: 599.98px) {
  .rc-gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 10px;
    overflow: visible; /* FIX: Critical for small screens */
  }

  /* Fix mobile collapse: keep image in normal flow so card has height */
  .rc-card__image {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
    overflow: visible; /* FIX: Prevent image cutoff */
  }

  .rc-card {
    border-radius: 12px;
    overflow: visible; /* FIX: Prevent card cutoff */
  }

  .rc-card__title {
    font-size: 18px;
    padding: 8px 12px;
  }

  .rc-card_label {
    font-size: 14px;
    padding: 4px 12px 12px;
  }
}

.rc-card {
  position: relative;
  display: block;
  overflow: hidden; /* FIX: Prevent card content cutoff */ /* overflow: visible; needed for border-radius, does not cause cutoff */
  border-radius: 16px;
  background: #0f0f10;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .08), 0 8px 24px rgba(0, 0, 0, .12);
  text-decoration: none;
  min-height: auto; /* FIX: Allow content to expand */
}

.rc-card__image {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}

.rc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .6), rgba(0, 0, 0, .15) 50%, rgba(0, 0, 0, 0));
  pointer-events: none;
  transition: transform .5s ease;
}

.rc-card__title {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  margin: 0;
  color: #fff;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  letter-spacing: .2px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .6);
  transition: transform .5s ease;
}

.rc-card:focus-visible {
  outline: 2px solid #74c0fc;
  outline-offset: 2px;
}

@media (hover: hover) {
  .rc-card:hover .rc-card__image {
    transform: scale(1.06);
  }
  .rc-card:hover .rc-card__overlay {
    transform: scale(1.06);
  }
}

.rc-card_label {
  position: absolute;
  top: 15px;
  right: 10px;
  background-color: #dd0000cF;
  color: #fff;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #dd5555;
  transition: transform .5s ease;
}

.gradient-border:after {
  content: '';
  position: absolute;
  top: calc(-1 * var(--borderWidth));
  left: calc(-1 * var(--borderWidth));
  height: calc(100% + var(--borderWidth) * 2);
  width: calc(100% + var(--borderWidth) * 2);
  background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
  border-radius: 100px;
  ;
  z-index: -1;
  animation: animatedgradient 25s ease alternate infinite;
  background-size: 300% 300%;
}

@keyframes animatedgradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.lini-miast-container {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* --- City landing pages: Katowice/Zabrze/Chorzów/Sosnowiec shared styles --- */
.quick-stack-studio-txt {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.hero-container {
  display: flex;
  padding-top: 50px;
  justify-content: space-evenly;
}

.cell-lista-studio {
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0px 10px;
  margin: 0 150px;
}

.div-lista-studio {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}

.zalety-katowice-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pisanie-lista-ikona {
  color: #fff;
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 18px;
}

.img-ikona-lista {
  width: 20px;
  height: 20px;
}

.naglowek-28px {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2em;
  text-transform: uppercase;
}

.naglowek-24px {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2em;
}

.pisanie18px-padding-box {
  color: #fff;
  font-size: 18px;
  line-height: 1.6em;
}

.pisanie18px-padding-box-white {
  color: #fff;
  font-size: 18px;
  line-height: 1.6em;
}

.pisanie18px-padding-box-white-link {
  color: #fff;
  font-size: 18px;
  line-height: 1.6em;
}

.button-box-uslugi-zobacz {
  background-color: #3898ec00;
  border: 2px solid #fff;
  margin-top: 14px;
  padding: 14px 22px;
  font-size: 18px;
  transition: transform .325s, border-color .2s, box-shadow .2s, background-color .2s;
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
}

.button-box-uslugi-zobacz:hover {
  box-shadow: 3px 4px 0 0 var(--red);
  background-color: #ff00008c;
  border-color: #ff000059;
  transform: translate(-2px, -2px);
}

.ikonka_link {
  display: inline-block;
  transition: transform .2s ease;
}

.button-box-uslugi-zobacz:hover .ikonka_link {
  transform: translateX(3px);
}

@media screen and (max-width: 991.98px) {
  .quick-stack-studio-txt {
    grid-row-gap: 14px;
  }

  .div-lista-studio {
    grid-row-gap: 10px;
  }

  .naglowek-28px {
    font-size: 24px;
  }

  .naglowek-24px {
    font-size: 20px;
  }

  .pisanie18px-padding-box,
  .pisanie18px-padding-box-white,
  .pisanie18px-padding-box-white-link {
    font-size: 16px;
  }
}

@media screen and (max-width: 599.98px) {
  .quick-stack-studio-txt {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .div-lista-studio {
    grid-template-columns: 1fr;
  }

  .pisanie-lista-ikona {
    font-size: 16px;
  }

  .naglowek-28px {
    font-size: 20px;
  }

  .naglowek-24px {
    font-size: 18px;
  }

  /* Dodatkowe style dla menu mobilnego na małych ekranach */
  [data-nav-menu-open] {
    min-width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
  }

  [data-nav-menu-open] .nav-link,
  [data-nav-menu-open] .w-nav-link,
  [data-nav-menu-open] .dropdown-toggle,
  [data-nav-menu-open] .w-dropdown-toggle,
  [data-nav-menu-open] .button-adres-top,
  [data-nav-menu-open] .button-top-telefon {
    padding: 18px 20px !important;
    font-size: 16px !important;
  }

  [data-nav-menu-open] .dropdown-link,
  [data-nav-menu-open] .w-dropdown-link {
    padding: 14px 20px !important;
    font-size: 15px !important;
    margin-left: 20px !important;
    padding-left: 40px !important;
  }

  /* Poprawka dla dropdown toggle na małych ekranach */
  [data-nav-menu-open] .dropdown-toggle {
    margin-left: 8px !important;
  }

  [data-nav-menu-open] .dropdown-toggle:before {
    left: 20px !important;
    font-size: 16px !important;
  }

  [data-nav-menu-open] .dropdown-toggle .icon {
    right: 20px !important;
    font-size: 16px !important;
  }

  .w-nav-button {
    padding: 10px !important;
    margin-right: 8px !important;
  }

  .w-nav-button .icon-2 {
    font-size: 16px !important;
  }

  /* Poprawka dla dropdown list na małych ekranach */
  [data-nav-menu-open] .dropdown-list {
    margin-left: 16px !important;
  }

  [data-nav-menu-open] .dropdown-list .dropdown-link:before {
    left: 12px !important;
    font-size: 18px !important;
  }
}

/* --- Mobile menu: restore button backgrounds when expanded --- */
/* Dodatkowe style dla lepszej widoczności menu mobilnego */
@media (max-width: 991px) {

  /* Poprawka dla logo w menu mobilnym */
  .w-nav-brand {
    z-index: 1001;
  }

  /* Poprawka dla kontenera menu */
  .kontant-nav-menu {
    position: relative;
    z-index: 1000;
  }

  /* Animacja otwierania menu */
  [data-nav-menu-open] {
    animation: slideDown 0.3s ease-out;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Poprawka dla ikon w menu */
  [data-nav-menu-open] .icon {
    display: inline-block !important;
    vertical-align: middle !important;
  }

  /* Poprawka dla dropdown toggle */
  [data-nav-menu-open] .dropdown-toggle {
    cursor: pointer !important;
    user-select: none !important;
  }

  /* Poprawka dla dropdown list */
  [data-nav-menu-open] .dropdown-list {
    display: none !important;
  }

  [data-nav-menu-open] .dropdown-list.w--open {
    display: block !important;
  }

  /* Poprawka dla ekranów dotykowych */
  @media (hover: none) and (pointer: coarse) {

    [data-nav-menu-open] .nav-link,
    [data-nav-menu-open] .w-nav-link,
    [data-nav-menu-open] .dropdown-toggle,
    [data-nav-menu-open] .w-dropdown-toggle,
    [data-nav-menu-open] .dropdown-link,
    [data-nav-menu-open] .w-dropdown-link,
    [data-nav-menu-open] .button-adres-top,
    [data-nav-menu-open] .button-top-telefon {
      min-height: 44px !important;
      display: flex !important;
      align-items: center !important;
    }

    .w-nav-button {
      min-height: 44px !important;
      min-width: 44px !important;
    }
  }
}

@media (max-width: 991px) {

  /* Expanded mobile menu container */
  [data-nav-menu-open] {
    background-color: rgba(22, 37, 54, 0.98) !important;
    background-image: none !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
    border: none !important;
    border-radius: 0 0 12px 12px !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    max-height: calc(100vh - 80px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  /* Top-level items and actions inside expanded menu */
  [data-nav-menu-open] .nav-link,
  [data-nav-menu-open] .w-nav-link,
  [data-nav-menu-open] .dropdown-toggle,
  [data-nav-menu-open] .w-dropdown-toggle,
  [data-nav-menu-open] .button-adres-top,
  [data-nav-menu-open] .button-top-telefon {
    background-color: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    display: block !important;
    padding: 16px 24px !important;
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
  }

  /* Dropdown list and its items */
  [data-nav-menu-open] .dropdown-list,
  [data-nav-menu-open] .w-dropdown-list,
  [data-nav-menu-open] .dropdown-link,
  [data-nav-menu-open] .w-dropdown-link {
    background-color: rgba(22, 37, 54, 0.95) !important;
    border-left: 3px solid rgba(177, 18, 18, 0.6) !important;
    /* pojedyncza linia akcentu */
    margin-left: 24px !important;
  }

  [data-nav-menu-open] .dropdown-link,
  [data-nav-menu-open] .w-dropdown-link {
    padding: 12px 24px !important;
    font-size: 16px !important;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    border-left: 0 !important;
    /* usuń podwójną linię z pozycji */
    margin-left: 0 !important;
    /* tylko lista ma wcięcie i ramkę */
  }

  /* Keep background on hover/focus in mobile expanded state */
  [data-nav-menu-open] .nav-link:hover,
  [data-nav-menu-open] .nav-link:focus,
  [data-nav-menu-open] .w-nav-link:hover,
  [data-nav-menu-open] .w-nav-link:focus,
  [data-nav-menu-open] .dropdown-toggle:hover,
  [data-nav-menu-open] .dropdown-toggle:focus,
  [data-nav-menu-open] .w-dropdown-toggle:hover,
  [data-nav-menu-open] .w-dropdown-toggle:focus,
  [data-nav-menu-open] .button-adres-top:hover,
  [data-nav-menu-open] .button-adres-top:focus,
  [data-nav-menu-open] .button-top-telefon:hover,
  [data-nav-menu-open] .button-top-telefon:focus {
    background-color: rgba(177, 18, 18, 0.15) !important;
    color: #ffffff !important;
    transform: translateX(8px) !important;
  }

  /* Restore intended hover for dropdown links */
  [data-nav-menu-open] .dropdown-link:hover,
  [data-nav-menu-open] .w-dropdown-link:hover {
    background-color: rgba(177, 18, 18, 0.25) !important;
    color: #ffffff !important;
    transform: translateX(8px) !important;
  }

  /* Hover effects for CTA buttons */
  [data-nav-menu-open] .button-adres-top:hover,
  [data-nav-menu-open] .button-top-telefon:hover {
    background-color: rgba(177, 18, 18, 0.2) !important;
    border-color: rgba(177, 18, 18, 0.6) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(177, 18, 18, 0.2) !important;
  }

  /* Focus states for accessibility */
  [data-nav-menu-open] .nav-link:focus,
  [data-nav-menu-open] .w-nav-link:focus,
  [data-nav-menu-open] .dropdown-toggle:focus,
  [data-nav-menu-open] .w-dropdown-toggle:focus,
  [data-nav-menu-open] .dropdown-link:focus,
  [data-nav-menu-open] .w-dropdown-link:focus,
  [data-nav-menu-open] .button-adres-top:focus,
  [data-nav-menu-open] .button-top-telefon:focus {
    outline: 2px solid rgba(177, 18, 18, 0.8) !important;
    outline-offset: 2px !important;
  }

  /* Usługi dropdown toggle styling */
  [data-nav-menu-open] .uslugi {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    display: block !important;
  }

  /* Ukryj duplikat tekstu "Usługi" w dropdown toggle na mobile */
  [data-nav-menu-open] .dropdown-toggle .uslugi {
    display: none !important;
  }

  /* Pokaż tylko ikonę dropdown na mobile */
  [data-nav-menu-open] .dropdown-toggle .icon {
    display: block !important;
    margin: 0 auto !important;
    font-size: 20px !important;
  }

  /* Icon styling in mobile menu */
  [data-nav-menu-open] .icon {
    color: #ffffff !important;
    font-size: 16px !important;
    margin-top: 2px !important;
    margin-right: 8px !important;
  }

  /* Poprawka dla dropdown toggle */
  [data-nav-menu-open] .dropdown-toggle {
    position: relative !important;
    cursor: pointer !important;
    user-select: none !important;
    background-color: rgba(177, 18, 18, 0.1) !important;
    border-left: 0 !important;
    /* usuń podwójną ramkę */
    margin-left: 12px !important;
    border-radius: 0 8px 8px 0 !important;
  }

  [data-nav-menu-open] .dropdown-toggle .icon {
    position: absolute !important;
    right: 24px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: transform 0.3s ease !important;
    color: #ffffff !important;
    font-size: 18px !important;
  }

  [data-nav-menu-open] .dropdown-toggle.w--open .icon {
    transform: translateY(-50%) rotate(0deg) !important;
  }

  [data-nav-menu-open] .dropdown-toggle.w--open {
    background-color: rgba(177, 18, 18, 0.2) !important;
    border-left-color: transparent !important;
    /* brak drugiej linii po otwarciu */
  }

  /* Dodaj tekst "Usługi" jako pseudo-element */
  [data-nav-menu-open] .dropdown-toggle:before {
    content: "Usługi" !important;
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    position: absolute !important;
    left: 24px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  /* Poprawka dla dropdown list */
  [data-nav-menu-open] .dropdown-list {
    background-color: rgba(22, 37, 54, 0.98) !important;
    border-left: 3px solid rgba(177, 18, 18, 0.8) !important;
    margin: 0 0 0 24px !important;
    border-radius: 0 0 8px 8px !important;
    overflow: hidden !important;
    box-shadow: inset 2px 0 8px rgba(0, 0, 0, 0.2) !important;
  }

  [data-nav-menu-open] .dropdown-list .dropdown-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding-left: 36px !important;
    position: relative !important;
  }

  [data-nav-menu-open] .dropdown-list .dropdown-link:last-child {
    border-bottom: none !important;
  }

  /* Dodaj małą ikonkę przed każdym linkiem dropdown */
  [data-nav-menu-open] .dropdown-list .dropdown-link:before {
    content: "•" !important;
    color: rgba(177, 18, 18, 0.8) !important;
    font-size: 20px !important;
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
}

/* === RESPONSIVE HERO SECTION FOR REALIZACJE === */

/* Główny kontener - responsywny */
.hero-container-mobile {
  position: relative;
  width: 100%;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Wrapper treści */
.hero-content-wrapper {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Sekcja tytułu */
.hero-title-section {
  margin-bottom: 20px;
}

.hero-title-section .h1-68px-white {
  margin-bottom: 0;
}

/* Sekcja podtytułu */
.hero-subtitle-section {
  margin-bottom: 40px;
}

.hero-subtitle-section .pisanie24px-srodek {
  margin-top: 0;
}

/* Sekcja przycisku */
.hero-button-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* === MOBILE RESPONSIVE STYLES === */

/* Tablety i większe telefony */
@media screen and (max-width: 991px) {
  .hero-container-mobile {
    min-height: 550px;
  }

  .hero-content-wrapper {
    padding: 0 30px;
  }

  .hero-title-section .h1-68px-white {
    font-size: 48px;
    text-align: center;
  }

  .hero-subtitle-section .pisanie24px-srodek {
    font-size: 22px;
  }
}

/* Małe telefony */
@media screen and (max-width: 767px) {
  .hero-container-mobile {
    min-height: 500px;
    padding-top: 80px;
    /* Dodatkowy odstęp dla nawigacji mobilnej */
  }

  .hero-content-wrapper {
    padding: 0 20px;
  }

  .hero-title-section .h1-68px-white {
    font-size: 38px;
    line-height: 1.1;
    text-align: center;
  }

  .hero-subtitle-section .pisanie24px-srodek {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 30px;
    text-align: center;
    display: block;
  }

  .hero-button-section {
    margin-top: 10px;
  }
}

/* Bardzo małe telefony */
@media screen and (max-width: 480px) {
  .hero-container-mobile {
    min-height: 450px;
    padding-top: 70px;
  }

  .hero-content-wrapper {
    padding: 0 15px;
  }

  .hero-title-section .h1-68px-white {
    font-size: 32px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 1.1;
    text-align: center;
  }

  .hero-subtitle-section .pisanie24px-srodek {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 25px;
    text-align: center;
    display: block;
  }

  .hero-button-section {
    margin-top: 15px;
  }
}

/* Ekstremalne małe ekrany */
@media screen and (max-width: 360px) {
  .hero-container-mobile {
    min-height: 400px;
    padding-top: 60px;
  }

  .hero-title-section .h1-68px-white {
    font-size: 28px;
    text-align: center;
  }

  .hero-subtitle-section .pisanie24px-srodek {
    font-size: 16px;
    text-align: center;
    display: block;
  }
}

/* === MOBILNA RESPONSYWNOŚĆ DLA SEKCJI STUDIO === */

/* Tablet landscape (991px i mniej) */
@media screen and (max-width: 991px) {

  .div-onas-lewa,
  .div-onas-prawa {
    max-width: 90%;
    margin: 0 auto;
  }

  .div-onas-lewa {
    min-height: 400px;
  }

  .background-video {
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }

  .img-prawa {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
}

/* Tablet portrait i mobile landscape (767px i mniej) */
@media screen and (max-width: 767px) {
  .quick-stack-8 {
    max-width: 95%;
    margin: 0 auto;
    grid-template-columns: 1fr;
    grid-row-gap: clamp(20px, 5vw, 40px);
    padding: 0 clamp(10px, 3vw, 20px);
  }

  .onas-lewa,
  .onas-prawa {
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    padding: clamp(15px, 4vw, 25px);
  }

  .div-onas-lewa,
  .div-onas-prawa {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }

  .div-onas-lewa {
    min-height: clamp(300px, 50vw, 400px);
    height: auto;
  }

  .div-onas-prawa {
    min-height: clamp(250px, 40vw, 350px);
    height: auto;
  }

  .background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: clamp(8px, 2vw, 12px);
  }

  .img-prawa {
    width: 100%;
    height: auto;
    min-height: 250px;
    object-fit: cover;
    border-radius: 12px;
  }

  .onas-dol {
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 15px;
  }

  .div-onas-dol-index {
    text-align: center;
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
  }
}

/* Mobile portrait (479px i mniej) */
@media screen and (max-width: 479px) {
  .quick-stack-8 {
    max-width: 100%;
    padding: 0 clamp(5px, 2vw, 15px);
    grid-template-columns: 1fr;
    grid-row-gap: clamp(15px, 4vw, 30px);
  }

  .div-onas-lewa,
  .div-onas-prawa {
    max-width: 100%;
    width: 100%;
    margin: 0;
    /* padding: clamp(10px, 3vw, 20px); */
  }

  .div-onas-lewa {
    min-height: clamp(250px, 45vw, 320px);
  }

  .div-onas-prawa {
    min-height: clamp(200px, 35vw, 280px);
  }

  .background-video {
    width: 100%;
    height: 100%;
    border-radius: clamp(6px, 1.5vw, 10px);
  }

  .img-prawa {
    width: 100%;
    height: auto;
    min-height: 240px;
    border-radius: 15px;
  }

  .onas-lewa,
  .onas-prawa {
    margin-bottom: 25px;
  }

  .div-onas-dol-index {
    max-width: 100%;
    padding: 0 15px;
  }

  .button-film {
    margin: 15px auto;
    padding: 15px 25px;
    min-height: 50px;
    min-width: 140px;
    font-size: 16px;
  }
}

/* Bardzo małe telefony (360px i mniej) */
@media screen and (max-width: 360px) {
  .div-onas-lewa {
    min-height: 280px;
  }

  .div-onas-prawa {
    min-height: 200px;
  }

  .img-prawa {
    min-height: 200px;
  }

  .background-video,
  .img-prawa {
    border-radius: 12px;
  }

  .button-film {
    padding: 12px 20px;
    min-height: 48px;
    min-width: 120px;
    font-size: 15px;
  }
}

/* === RESPONSYWNOŚĆ PODSTRON USŁUG === */

/* Tablet landscape (991px i mniej) */
@media screen and (max-width: 991px) {
  .hero-wrapper-podstrona {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .quick-stack-2-podstrona {
    max-width: 90%;
    margin: 0 auto;
  }

  .background-video-rozmowa {
    padding-bottom: 40px;
  }

  .naglowek-30px-filmik-pytania {
    font-size: 1.8rem;
    line-height: 1.3;
    padding: 15px 10px 15px;
  }

  .button-box-wycena {
    font-size: 16px;
    padding: 14px 24px;
    min-height: 50px;
    min-width: 140px;
  }
}

/* Tablet portrait i mobile landscape (767px i mniej) */
@media screen and (max-width: 767px) {
  .hero-wrapper-podstrona {
    flex-direction: column;
    gap: 25px;
    margin-bottom: -20px;
  }

  .quick-stack-2-podstrona {
    max-width: 95%;
    margin: 0 auto;
  }

  .quick-stack-3-podstrona {
    padding-top: 15px;
    padding-bottom: 20px;
  }

  .onas-lewa,
  .onas-prawa {
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }

  .div-onas-lewa,
  .div-onas-prawa {
    max-width: 95%;
    width: 95%;
    margin: 0 auto;
  }

  .div-onas-lewa {
    min-height: 350px;
    height: auto;
  }

  .div-onas-prawa {
    min-height: 250px;
  }

  .background-video-rozmowa {
    padding-bottom: 30px;
    width: 100%;
    /* Let content define height; keep responsive */
    height: auto;
    border-radius: 12px;
  }

  .img-prawa {
    width: 100%;
    height: auto;
    min-height: 250px;
    object-fit: cover;
    border-radius: 12px;
  }

  .naglowek-30px-filmik-pytania {
    font-size: 1.6rem;
    line-height: 1.4;
    padding: 15px 12px;
    text-align: center;
  }

  .button-box-wycena {
    font-size: 16px;
    padding: 12px 20px;
    min-height: 48px;
    min-width: 120px;
    margin: 10px auto;
    display: block;
  }

  .onas-dol {
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 15px;
  }
}

/* Mobile portrait (479px i mniej) */
@media screen and (max-width: 479px) {
  .hero-wrapper-podstrona {
    gap: 20px;
  }

  .quick-stack-2-podstrona {
    max-width: 100%;
    padding: 0 10px;
  }

  .div-onas-lewa,
  .div-onas-prawa {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  .div-onas-lewa {
    min-height: 320px;
  }

  .div-onas-prawa {
    min-height: 240px;
  }

  .background-video-rozmowa {
    padding-bottom: 25px;
    border-radius: 15px;
  }

  .img-prawa {
    min-height: 240px;
    border-radius: 15px;
  }

  .naglowek-30px-filmik-pytania {
    font-size: 1.4rem;
    line-height: 1.3;
    padding: 12px 10px;
  }

  .button-box-wycena {
    font-size: 15px;
    padding: 12px 18px;
    min-height: 46px;
    min-width: 110px;
    margin: 8px auto;
  }

  .onas-lewa,
  .onas-prawa {
    margin-bottom: 25px;
  }
}

/* Dodatkowe media queries dla lepszej responsywności */
@media screen and (max-width: 1200px) {
  .div-img-top-realizacja* {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 400px;
  }

  .div-box-uslugi* {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 350px;
  }
}

@media screen and (max-width: 768px) {
  .div-img-top-realizacja* {
    min-height: 300px;
  }

  .div-box-uslugi* {
    width: 100%;
    max-width: 100%;
    height: 250px;
  }

  .w-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Bardzo małe telefony (360px i mniej) */
@media screen and (max-width: 360px) {
  .div-onas-lewa {
    min-height: 280px;
  }

  .div-onas-prawa {
    min-height: 200px;
  }

  .img-prawa {
    min-height: 200px;
  }

  .background-video-rozmowa {
    padding-bottom: 20px;
    border-radius: 12px;
  }

  .naglowek-30px-filmik-pytania {
    font-size: 1.2rem;
    line-height: 1.2;
    padding: 10px 8px;
  }

  .button-box-wycena {
    font-size: 14px;
    padding: 10px 16px;
    min-height: 44px;
    min-width: 100px;
  }
}

/* === Homepage: video + image split section (equal columns, centered, clean) === */
.sekcja-index-opis-2 .w-layout-layout.quick-stack-8 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: clamp(10px, 2vw, 24px);
}

.sekcja-index-opis-2 .w-layout-cell {
  align-items: stretch;
}

.sekcja-index-opis-2 .onas-lewa,
.sekcja-index-opis-2 .onas-prawa {
  padding: 0;
}

.sekcja-index-opis-2 .div-onas-lewa,
.sekcja-index-opis-2 .div-onas-prawa {
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.sekcja-index-opis-2 .background-video-rozmowa {
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 2vw, 16px);
}

.sekcja-index-opis-2 .img-prawa {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 991px) {
  .sekcja-index-opis-2 .w-layout-layout.quick-stack-8 {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .sekcja-index-opis-2 .w-layout-layout.quick-stack-8 {
    grid-template-columns: 1fr;
  }
}

/* === Subpages (podstrony usług): video + image split, equal and responsive === */
/* === Subpages (podstrony usług): video + image split, equal and responsive === */
.sekcja-podstrona-opis .w-layout-layout.quick-stack-2-podstrona {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: stretch;
  gap: clamp(10px, 2vw, 24px);
  width: 100%;
}

.sekcja-podstrona-opis .w-layout-cell {
  align-items: stretch;
}

.sekcja-podstrona-opis .onas-lewa,
.sekcja-podstrona-opis .onas-prawa {
  padding: 0;
}

.sekcja-podstrona-opis .div-onas-lewa,
.sekcja-podstrona-opis .div-onas-prawa {
  width: 100%;
  max-width: 100% !important;
  height: 100%;
}

.sekcja-podstrona-opis .background-video-rozmowa {
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 2vw, 16px);
}

.sekcja-podstrona-opis .img-prawa {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 1100px) {
  .sekcja-podstrona-opis .w-layout-layout.quick-stack-2-podstrona {
    grid-template-columns: minmax(0, 1fr) !important;
    max-width: min(680px, 100%);
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 28px);
  }

  .sekcja-podstrona-opis .w-layout-layout.quick-stack-2-podstrona .w-layout-cell {
    width: 100%;
  }

  .sekcja-podstrona-opis .background-video-rozmowa,
  .sekcja-podstrona-opis .div-onas-prawa,
  .sekcja-podstrona-opis .div-onas-lewa,
  .sekcja-podstrona-opis .div-onas-dol {
    border-radius: 18px;
    overflow: hidden;
    width: 100%;
  }

  .sekcja-podstrona-opis .div-onas-lewa,
  .sekcja-podstrona-opis .div-onas-prawa,
  .sekcja-podstrona-opis .div-onas-dol,
  .sekcja-podstrona-opis .div-onas-dol4 {
    height: auto;
    min-height: clamp(260px, 55vw, 420px);
  }

  /* .sekcja-podstrona-opis .background-video-rozmowa {
    padding: clamp(24px, 6vw, 48px) clamp(18px, 5vw, 30px) clamp(24px, 5vw, 36px);
  } */
}

@media screen and (max-width: 540px) {
  .sekcja-podstrona-opis .w-layout-layout.quick-stack-2-podstrona {
    gap: clamp(18px, 6vw, 26px);
    /* padding: 0 clamp(12px, 5vw, 20px); */
  }

  /* .sekcja-podstrona-opis .background-video-rozmowa {
    padding: clamp(20px, 7vw, 36px) clamp(16px, 6vw, 24px) clamp(22px, 7vw, 32px);
  } */

  .sekcja-podstrona-opis .div-onas-lewa,
  .sekcja-podstrona-opis .div-onas-prawa,
  .sekcja-podstrona-opis .div-onas-dol,
  .sekcja-podstrona-opis .div-onas-dol4 {
    min-height: clamp(240px, 90vw, 360px);
  }
}

/* === REALIZACJE: alternatywny wygląd galerii + lightbox === */
.sekcja-podstrona-realizacje-galeria .quick-stack-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

@media (min-width: 1280px) {
  .sekcja-podstrona-realizacje-galeria .quick-stack-galeria {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
  }
}

.sekcja-podstrona-realizacje-galeria .div-img-galeria {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #0f1a25;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), 0 1px 0 rgba(255, 255, 255, 0.03) inset;
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: zoom-in;
}

.sekcja-podstrona-realizacje-galeria .div-img-galeria img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
  transition: transform .35s ease;
}

.sekcja-podstrona-realizacje-galeria .div-img-galeria::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 80% at 50% 50%, rgba(255, 255, 255, 0) 0%, rgba(16, 28, 42, 0.18) 100%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.sekcja-podstrona-realizacje-galeria .div-img-galeria:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.sekcja-podstrona-realizacje-galeria .div-img-galeria:hover img {
  transform: scale(1.04);
}

.sekcja-podstrona-realizacje-galeria .div-img-galeria:hover::after {
  opacity: 1;
}

/* --- CLS and aspect-ratio hardening for galleries --- */
/* Ensure card images reserve space before images load (no shifts) */
.rc-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
}

/* Default ratio for project grids when <img> is not wrapped */
.sekcja-podstrona-realizacje-galeria .w-layout-cell > img,
.sekcja-podstrona-realizacje-galeria .w-layout-cell img:only-child {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
}

/* Ensure wrapper variant also reserves space globally */
.div-img-galeria {
  aspect-ratio: 4 / 3;
}

/* Lightbox overlay */
.rc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}

.rc-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.rc-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 22, 0.9);
  backdrop-filter: saturate(1.05) blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity .3s ease;
}

.rc-lightbox.is-open .rc-lightbox__backdrop {
  opacity: 1;
}

.rc-lightbox__stage {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 1320px);
  height: min(92vh, 88vh);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rc-lightbox__img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity .28s ease;
}

.rc-lightbox.content-visible .rc-lightbox__img {
  opacity: 1;
}

.rc-lightbox__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
  user-select: none;
}

.rc-lightbox__button:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.rc-lightbox__prev {
  left: 22px;
}

.rc-lightbox__next {
  right: 22px;
}

.rc-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.rc-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
}

.rc-lightbox__clone {
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), 0 1px 0 rgba(255, 255, 255, 0.03) inset;
  will-change: top, left, width, height, transform;
  pointer-events: none;
}

/* Katowice Page Specific Improvements */
/* Active location styling */
.active-location {
  color: var(--hero-primary) !important;
  font-weight: 600;
  text-decoration: underline;
}

/* Service descriptions for Katowice */
.opis-uslugi-katowice {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  margin: 8px 0 12px 0;
  font-weight: 400;
}

/* Katowice advantages container */
.zalety-katowice-container {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.zalety-katowice-container h3 {
  margin-bottom: 1.5rem;
  color: var(--hero-primary);
}

.box-zalety-katowice {
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border-left: 3px solid var(--hero-primary);
  font-size: 16px;
  line-height: 1.5;
}

.box-zalety-katowice:last-child {
  margin-bottom: 0;
}

/* Responsive improvements for Katowice page */
@media (max-width: 991px) {
  .zalety-katowice-container {
    margin: 1.5rem 0;
    padding: 1rem;
  }
  
  .box-zalety-katowice {
    font-size: 15px;
    padding: 0.5rem;
  }
  
  .opis-uslugi-katowice {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .zalety-katowice-container {
    margin: 1rem 0;
    padding: 0.75rem;
  }
  
  .box-zalety-katowice {
    font-size: 14px;
    padding: 0.5rem;
    margin-bottom: 0.75rem;
  }
  
  .opis-uslugi-katowice {
    font-size: 12px;
    margin: 6px 0 10px 0;
  }
  
  /* Improve mobile hero section */
  .h1-68px-white {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
  }
  
  .text-napis-top-dreamcar {
    font-size: 1.8rem !important;
  }
  
  .tagi-container {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .tag {
    font-size: 12px !important;
    padding: 0.4rem 0.8rem !important;
  }
}

@media (max-width: 479px) {
  .h1-68px-white {
    font-size: 2rem !important;
  }
  
  .text-napis-top-dreamcar {
    font-size: 1.5rem !important;
  }
  
  .tag {
    font-size: 11px !important;
    padding: 0.3rem 0.6rem !important;
  }
  
  .zalety-katowice-container h3 {
    font-size: 1.2rem;
  }
  
  .box-zalety-katowice {
    font-size: 13px;
  }
}

/* Enhanced FAQ section for Katowice */
.kontener-index-uslugi-katowice .naglowek-35px {
  text-align: center;
  margin-bottom: 2rem;
}

.kontener-index-uslugi-katowice .pisanie18px-padding-box {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--hero-primary);
}

/* Improved video responsiveness */
@media (max-width: 767px) {
  .background-video-2,
  .background-video-rozmowa {
    min-height: 50vh;
  }
  
  .sectionmaskavideo {
    padding: 1rem 0;
  }
}

/* Enhanced button styling for Katowice */
.button-darmowa-wycena {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.button-darmowa-wycena:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(234, 56, 76, 0.3);
}

.button-box-uslugi-zobacz {
  transition: all 0.3s ease;
}

.button-box-uslugi-zobacz:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Improved spacing and typography */
.paragraf-odstep-25px {
  margin-bottom: 1.5rem;
}

.naglowek-28px {
  margin-bottom: 1rem;
}

/* Better mobile navigation for location links */
@media (max-width: 767px) {
  .pisanie24px-srodek p {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .pisanie24px-srodek a {
    font-size: 14px;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
.pisanie24px-srodek a:hover {
  background: rgba(255, 255, 255, 0.1);
}
}

/* ===== Contact Modal (site-wide) ===== */
.rc-no-scroll { overflow: hidden; }

/* ========================================
   CONTACT MODAL - KOMPLETNIE PRZEBUDOWANY
   ======================================== */

.rc-contact-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 15000; /* Wyższy niż mobilne menu (10000) */
}
.rc-contact-modal.is-open { display: flex; }

.rc-contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,17,25,0.82);
  backdrop-filter: var(--hero-blur);
  -webkit-backdrop-filter: var(--hero-blur);
  cursor: pointer;
  transition: background 0.2s ease;
}
.rc-contact-modal__backdrop:hover {
  background: rgba(10,17,25,0.88);
}

.rc-contact-modal__dialog {
  position: relative;
  width: min(100%, 1200px);
  margin: 16px;
  background: rgba(15, 21, 30, 0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--hero-border-radius);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  color: var(--hero-text-light);
  overflow-y: auto;
  max-height: calc(100vh - 32px);
  display: flex;
  flex-direction: column;
  padding-top: 60px; /* Miejsce na przycisk X */
}

.rc-contact-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid var(--hero-glass-border);
  color: #fff;
  width: 40px; height: 40px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10; /* Wyższy z-index, aby był zawsze na wierzchu */
  /* Lepsze wsparcie dla touch devices */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.rc-contact-modal__close:hover { 
  background: rgba(255,255,255,0.16); 
  transform: scale(1.05);
}
.rc-contact-modal__close:active {
  transform: scale(0.95);
  background: rgba(255,255,255,0.12);
}

.rc-contact-modal__header {
  padding: 20px 22px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.rc-contact-modal__footer {
  padding: 16px 22px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.rc-contact-title {
  margin: 0 0 6px 0;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
}
.rc-contact-subtitle {
  margin: 0 0 8px 0;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}

/* ========================================
   GŁÓWNY UKŁAD KOLUMN - PERFEKCYJNY
   ======================================== */

.rc-contact-modal__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px;
  align-items: start;
  flex: 1;
}

/* Desktop - dwie równe kolumny */
@media (min-width: 1024px) {
  .rc-contact-modal__content {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 24px;
  }
}

/* Tablet - jedna kolumna */
@media (max-width: 1023px) {
  .rc-contact-modal__content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
}

/* Mobile - jedna kolumna z mniejszymi odstępami */
@media (max-width: 768px) {
  .rc-contact-modal__dialog {
    margin: 12px;
    max-height: calc(100vh - 24px);
    border-radius: 16px;
    padding-top: 50px; /* Mniej miejsca na przycisk X */
  }
  
  .rc-contact-modal__content {
    gap: 16px;
    padding: 16px;
  }
  
  .rc-contact-modal__header {
    padding: 16px 18px 8px;
  }
  
  .rc-contact-title {
    font-size: 20px;
    line-height: 1.3;
  }
  
  .rc-contact-subtitle {
    font-size: 14px;
    line-height: 1.4;
  }
}

/* ========================================
   PROMO BANNER - MOBILE OPTIMIZED
   ======================================== */

.promo-banner {
  background: linear-gradient(135deg, #ea384c 0%, #c92a3a 50%, #b91c3c 100%);
  border-radius: 20px;
  padding: 24px;
  margin: 20px auto;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(234, 56, 76, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  max-width: 900px;
}

.promo-banner:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(234, 56, 76, 0.4),
    0 8px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.promo-banner:hover::before {
  left: 100%;
}

.promo-banner__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.promo-banner__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.promo-banner__icon {
  font-size: 32px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.promo-banner__text {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.promo-banner__title {
  display: block;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.promo-banner__description {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.promo-banner__timer {
  display: flex;
  justify-content: center;
  gap: 16px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 16px 24px;
  margin: 16px 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.2),
    0 4px 8px rgba(0, 0, 0, 0.1);
}

.timer-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  flex: 1;
  text-align: center;
  position: relative;
}

.timer-segment::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1px;
}

.timer-segment:last-child::after {
  display: none;
}

.timer-value {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-family: 'ClashDisplay-Bold', sans-serif;
  letter-spacing: -1px;
}

.timer-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  font-weight: 600;
}

.promo-banner__button {
  margin-top: 24px;
  margin-bottom: 8px;
  padding: 0 16px;
}

.btn-voucher {
  width: 100%;
  max-width: 400px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #fbbf24 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 20px 32px;
  color: #1f2937;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  box-shadow: 
    0 8px 20px rgba(255, 215, 0, 0.3),
    0 4px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-voucher::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-voucher:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 
    0 12px 24px rgba(255, 215, 0, 0.4),
    0 6px 12px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.btn-voucher:hover::before {
  left: 100%;
}

.btn-voucher:active {
  transform: translateY(0);
  box-shadow: 
    0 4px 8px rgba(255, 215, 0, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-voucher__text {
  flex: 1;
  text-align: center;
  font-weight: 700;
}

.btn-voucher__arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-voucher:hover .btn-voucher__arrow {
  transform: translateY(2px);
}

/* ========================================
   FORM HEADER - MOBILE OPTIMIZED
   ======================================== */

.formularz-subtitle-section {
  text-align: center;
  margin: 20px 0;
}

.formularz-main-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
  text-align: center;
}

.formularz-main-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: center;
}

.trust-indicators {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0;
  padding: 0 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-emoji {
  font-size: 16px;
  flex-shrink: 0;
}

.trust-text {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}

.cta-scroll-section {
  margin: 24px 0;
  text-align: center;
}

.btn-scroll-to-form {
  background: linear-gradient(135deg, var(--hero-gradient-start), var(--hero-gradient-end));
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  box-shadow: 0 4px 12px rgba(234, 56, 76, 0.3);
}

.btn-scroll-to-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(234, 56, 76, 0.4);
}

.btn-text {
  flex: 1;
}

.btn-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-scroll-to-form:hover .btn-icon {
  transform: translateY(2px);
}

/* ========================================
   MOBILE RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 767px) {
  .promo-banner {
    margin: 16px 8px;
    padding: 20px;
    border-radius: 16px;
    max-width: calc(100% - 16px);
  }
  
  .promo-banner__content {
    gap: 16px;
  }
  
  .promo-banner__header {
    gap: 12px;
  }
  
  .promo-banner__icon {
    font-size: 28px;
  }
  
  .promo-banner__title {
    font-size: 20px;
    margin-bottom: 6px;
  }
  
  .promo-banner__description {
    font-size: 14px;
  }
  
  .promo-banner__timer {
    gap: 12px;
    padding: 12px 16px;
    margin: 12px 0;
  }
  
  .timer-segment {
    min-width: 50px;
  }
  
  .timer-value {
    font-size: 24px;
  }
  
  .timer-label {
    font-size: 10px;
  }
  
  .promo-banner__button {
    margin-top: 20px;
    margin-bottom: 12px;
    padding: 0 12px;
  }
  
  .btn-voucher {
    padding: 16px 24px;
    font-size: 15px;
    min-height: 52px;
    max-width: 100%;
  }
  
  .formularz-main-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .formularz-main-subtitle {
    font-size: 15px;
    margin-bottom: 16px;
  }
  
  .trust-indicators {
    margin: 16px 0;
    padding: 0 8px;
    gap: 6px;
  }
  
  .trust-item {
    padding: 6px 10px;
  }
  
  .trust-emoji {
    font-size: 14px;
  }
  
  .trust-text {
    font-size: 13px;
  }
  
  .cta-scroll-section {
    margin: 20px 0;
  }
  
  .btn-scroll-to-form {
    padding: 12px 20px;
    font-size: 15px;
    min-height: 44px;
  }
}

@media (max-width: 479px) {
  .promo-banner {
    margin: 12px 4px;
    padding: 16px;
    border-radius: 12px;
    max-width: calc(100% - 8px);
  }
  
  .promo-banner__title {
    font-size: 18px;
    margin-bottom: 4px;
  }
  
  .promo-banner__description {
    font-size: 13px;
  }
  
  .promo-banner__timer {
    gap: 8px;
    padding: 10px 12px;
  }
  
  .timer-segment {
    min-width: 40px;
  }
  
  .timer-value {
    font-size: 20px;
  }
  
  .timer-label {
    font-size: 9px;
  }
  
  .promo-banner__button {
    margin-top: 16px;
    margin-bottom: 8px;
    padding: 0 8px;
  }
  
  .btn-voucher {
    padding: 14px 20px;
    font-size: 14px;
    min-height: 48px;
  }
  
  .formularz-main-title {
    font-size: 20px;
  }
  
  .formularz-main-subtitle {
    font-size: 14px;
  }
  
  .trust-item {
    padding: 5px 8px;
  }
  
  .trust-text {
    font-size: 12px;
  }
}

/* ========================================
   FORMULARZ KONTAKTOWY - PERFEKCYJNY
   ======================================== */

.rc-contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px;
  height: fit-content;
}

.rc-form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.rc-form-row label {
  font-size: 14px;
  opacity: 0.9;
  font-weight: 500;
}

.rc-form-row input {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fff;
  outline: none;
  font-size: 15px;
  transition: all 0.2s ease;
}

.rc-form-row input:focus {
  border-color: var(--hero-gradient-start);
  box-shadow: 0 0 0 3px rgba(234,56,76,0.25);
}

.rc-form-row input::placeholder {
  color: rgba(255,255,255,0.6);
}

.rc-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.4;
}

.rc-checkbox input[type="checkbox"] {
  margin: 0;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.rc-checkbox a {
  color: var(--hero-gradient-start);
  text-decoration: underline;
}

.rc-checkbox a:hover {
  color: var(--hero-gradient-end);
}

.rc-form-actions {
  margin-top: 20px;
}

.rc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.rc-btn-primary {
  background: linear-gradient(135deg, var(--hero-gradient-start), var(--hero-gradient-end));
  color: #fff;
  box-shadow: 0 4px 12px rgba(234,56,76,0.3);
}

.rc-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(234,56,76,0.4);
}

.rc-btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.rc-btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.rc-btn-secondary:active {
  transform: scale(0.98);
  background: rgba(255,255,255,0.06);
}

.rc-btn-block {
  width: 100%;
}

.rc-form-hint {
  margin-top: 12px;
  font-size: 12px;
  opacity: 0.8;
  text-align: center;
}

.rc-form-message {
  margin-top: 12px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}

.rc-form-message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.rc-form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

/* ========================================
   SEKCJA INFORMACJI - PERFEKCYJNA
   ======================================== */

.rc-contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  height: fit-content;
}

/* Desktop - układ 2x2 */
@media (min-width: 1024px) {
  .rc-contact-info {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .rc-contact-info .rc-info-tile:last-child {
    grid-column: span 2;
  }
}

/* Tablet i mobile - jedna kolumna */
@media (max-width: 1023px) {
  .rc-contact-info {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.rc-info-tile {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 12px;
  padding: 16px;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  transition: all 0.2s ease;
}

.rc-info-tile:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.rc-info-tile.rc-static {
  cursor: default;
}

.rc-info-tile.rc-static:hover {
  transform: none;
  box-shadow: none;
}

.rc-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 20px;
}

.rc-icon-phone::before { content: '☎'; }
.rc-icon-mail::before { content: '✉'; }
.rc-icon-pin::before { content: '📍'; }
.rc-icon-clock::before { content: '🕐'; }

.rc-info-text {
  display: grid;
  gap: 4px;
}

.rc-info-label {
  font-size: 12px;
  opacity: 0.85;
  font-weight: 500;
}

.rc-info-value {
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 14px;
}

.rc-info-cta {
  font-size: 12px;
  opacity: 0.9;
  color: rgba(255,255,255,0.9);
}

.rc-hours {
  display: grid;
  gap: 2px;
}

.rc-hours div {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.rc-hours-note {
  margin-top: 4px;
  font-size: 11px;
  opacity: 0.8;
  font-style: italic;
}

/* ========================================
   RESPONSYWNOŚĆ - PERFEKCYJNA
   ======================================== */

@media (max-width: 480px) {
  .rc-contact-modal__dialog {
    margin: 8px;
    max-height: calc(100vh - 16px);
    border-radius: 12px;
    padding-top: 45px; /* Jeszcze mniej miejsca na przycisk X */
  }
  
  .rc-contact-modal__header {
    padding: 14px 16px 6px;
  }
  
  .rc-contact-modal__content {
    padding: 12px;
    gap: 14px;
  }
  
  .rc-contact-title {
    font-size: 18px;
    line-height: 1.2;
  }
  
  .rc-contact-subtitle {
    font-size: 13px;
    line-height: 1.3;
  }
  
  .rc-contact-modal__close {
    width: 36px;
    height: 36px;
    top: 10px;
    right: 10px;
    font-size: 18px;
  }
  
  .rc-contact-modal__footer {
    padding: 12px 16px 16px;
  }
  
  .rc-contact-form {
    padding: 16px;
  }
  
  .rc-form-row input {
    padding: 14px 16px;
    font-size: 16px; /* Zapobiega zoom na iOS */
    border-radius: 8px;
    /* Lepsze wsparcie dla touch devices */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  .rc-form-row input:focus {
    transform: scale(1.02);
    box-shadow: 0 0 0 3px rgba(234, 56, 76, 0.2);
  }
  
  .rc-info-tile {
    padding: 16px;
    gap: 12px;
    border-radius: 10px;
    /* Lepsze wsparcie dla touch devices */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 60px; /* Minimalna wysokość dla touch targets */
  }
  
  .rc-info-tile:active {
    transform: scale(0.98);
  }
  
  .rc-info-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .rc-checkbox {
    gap: 12px;
    font-size: 14px;
    line-height: 1.4;
    padding: 12px;
    border-radius: 8px;
    /* Lepsze wsparcie dla touch devices */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 48px; /* Minimalna wysokość dla touch targets */
  }
  
  .rc-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0;
    transform: scale(1.2);
  }
  
  .rc-btn {
    padding: 16px 20px;
    font-size: 16px;
    border-radius: 10px;
    /* Lepsze wsparcie dla touch devices */
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    min-height: 48px; /* Minimalna wysokość dla touch targets */
  }
  
  .rc-btn:active {
    transform: scale(0.98);
  }
}

@media (max-width: 360px) {
  .rc-contact-modal__dialog {
    margin: 6px;
    max-height: calc(100vh - 12px);
    border-radius: 10px;
    padding-top: 40px; /* Minimalne miejsce na przycisk X */
  }
  
  .rc-contact-modal__header {
    padding: 12px 14px 4px;
  }
  
  .rc-contact-modal__content {
    padding: 10px;
    gap: 12px;
  }
  
  .rc-contact-title {
    font-size: 16px;
    line-height: 1.1;
  }
  
  .rc-contact-subtitle {
    font-size: 12px;
    line-height: 1.2;
  }
  
  .rc-contact-modal__close {
    width: 36px;
    height: 36px;
    top: 8px;
    right: 8px;
    font-size: 18px;
    background: rgba(255,255,255,0.15); /* Bardziej widoczny na małych ekranach */
    border: 2px solid rgba(255,255,255,0.3);
  }
  
  .rc-contact-modal__footer {
    padding: 10px 14px 14px;
  }
  
  .rc-contact-title {
    font-size: clamp(18px, 6vw, 24px);
  }
}

/* Dodatkowe style dla bardzo małych ekranów */
@media (max-width: 320px) {
  .rc-contact-modal__dialog {
    margin: 4px;
    max-height: calc(100vh - 8px);
    border-radius: 8px;
    padding-top: 35px; /* Bardzo małe miejsce na przycisk X */
  }
  
  .rc-contact-modal__header {
    padding: 10px 12px 4px;
  }
  
  .rc-contact-modal__content {
    padding: 8px;
    gap: 10px;
  }
  
  .rc-contact-modal__footer {
    padding: 8px 12px 12px;
  }
  
  .rc-contact-title {
    font-size: 16px;
    line-height: 1.1;
  }
  
  .rc-contact-subtitle {
    font-size: 11px;
    line-height: 1.2;
  }
  
  .rc-contact-modal__close {
    width: 32px;
    height: 32px;
    top: 6px;
    right: 6px;
    font-size: 16px;
    background: rgba(255,255,255,0.2); /* Jeszcze bardziej widoczny */
    border: 2px solid rgba(255,255,255,0.4);
  }
  
  .rc-form-row input {
    padding: 12px 14px;
    font-size: 16px;
  }
  
  .rc-btn {
    padding: 14px 16px;
    font-size: 15px;
    min-height: 44px;
  }
  
  .rc-checkbox {
    font-size: 12px;
    padding: 10px;
    min-height: 44px;
  }
  
  .rc-info-tile {
    padding: 10px;
    gap: 8px;
    min-height: 50px;
  }
  
  .rc-info-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

/* Landscape orientation na mobilkach */
@media (max-height: 500px) and (orientation: landscape) {
  .rc-contact-modal__dialog {
    margin: 8px;
    max-height: calc(100vh - 16px);
    padding-top: 40px; /* Mniej miejsca w landscape */
  }
  
  .rc-contact-modal__header {
    padding: 12px 16px 6px;
  }
  
  .rc-contact-modal__content {
    padding: 12px;
    gap: 12px;
  }
  
  .rc-contact-modal__footer {
    padding: 8px 16px 12px;
  }
  
  .rc-contact-title {
    font-size: 18px;
    margin-bottom: 4px;
  }
  
  .rc-contact-subtitle {
    font-size: 12px;
    margin-bottom: 0;
  }
  
  .rc-contact-modal__close {
    width: 32px;
    height: 32px;
    top: 8px;
    right: 8px;
    font-size: 16px;
  }
  
  .rc-form-row input {
    padding: 10px 12px;
    font-size: 16px;
  }
  
  .rc-btn {
    padding: 12px 16px;
    font-size: 15px;
    min-height: 44px;
  }
  
  .rc-checkbox {
    padding: 8px;
    font-size: 12px;
    min-height: 40px;
  }
  
  .rc-info-tile {
    padding: 8px;
    min-height: 40px;
  }
}


.rc-quick-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.rc-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 999px; text-decoration: none; color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--hero-glass-border);
  font-size: 13px;
}
.rc-chip:hover { background: rgba(255,255,255,0.16); }

/* Form */
.rc-contact-form { 
  background: rgba(255,255,255,0.05); 
  border: 1px solid rgba(255,255,255,0.12); 
  border-radius: 14px; 
  padding: 18px; 
  height: fit-content;
}
.rc-form-row { display: grid; gap: 6px; margin-bottom: 10px; }
.rc-form-row label { font-size: 13px; opacity: .9; }
.rc-form-row input {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 10px 12px;
  color: #fff;
  outline: none;
}
.rc-form-row input:focus { border-color: var(--hero-gradient-start); box-shadow: 0 0 0 3px rgba(234,56,76,0.25); }

/* Error states for form inputs */
.rc-form-row.error input {
  border-color: #ff6b6b !important;
  background: rgba(255, 107, 107, 0.1) !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2) !important;
  animation: input-error-pulse 1.5s ease-in-out infinite;
}

.rc-form-row.error label {
  color: #ff6b6b !important;
  font-weight: bold !important;
}

@keyframes input-error-pulse {
  0%, 100% { 
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
  }
  50% { 
    box-shadow: 0 0 0 6px rgba(255, 107, 107, 0.3);
  }
}

.rc-consent .rc-checkbox { 
  display: flex; 
  align-items: flex-start; 
  gap: 8px; 
  font-size: 12px; 
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  position: relative;
}
.rc-consent .rc-checkbox::before {
  content: "Wymagane";
  position: absolute;
  top: -8px;
  right: 8px;
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  background: rgba(15, 21, 30, 0.9);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.2);
}
.rc-consent input[type="checkbox"] { 
  margin-top: 3px; 
  accent-color: var(--hero-gradient-start);
  transform: scale(1.2);
}
.rc-consent a { 
  color: var(--hero-text-light); 
  text-decoration: underline; 
}

/* Error state for consent */
.rc-consent.error .rc-checkbox {
  border-color: #ff6b6b !important;
  background: rgba(255, 107, 107, 0.1) !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2) !important;
  animation: error-pulse 1.5s ease-in-out infinite;
}

.rc-consent.error .rc-checkbox::before {
  content: "WYMAGANE" !important;
  background: #ff6b6b !important;
  color: white !important;
  border-color: #ff6b6b !important;
  font-weight: bold !important;
  animation: error-pulse 1.5s ease-in-out infinite;
}

.rc-consent.error .rc-checkbox input[type="checkbox"] {
  accent-color: #ff6b6b !important;
  transform: scale(1.3) !important;
}

@keyframes error-pulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
  }
  50% { 
    transform: scale(1.02);
    box-shadow: 0 0 0 6px rgba(255, 107, 107, 0.3);
  }
}

.rc-form-actions { display: flex; gap: 10px; align-items: center; margin-top: 6px; }
.rc-form-actions--single { display: block; }
.rc-btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 14px; border-radius: 12px; cursor: pointer; border: 1px solid transparent; }
.rc-btn-primary { background: linear-gradient(135deg, var(--hero-gradient-start), var(--hero-gradient-end)); color: #fff; box-shadow: 0 10px 24px rgba(234,56,76,.25); }
.rc-btn-primary:hover { transform: translateY(-1px); }
.rc-btn-ghost { background: rgba(255,255,255,0.06); color: #fff; border-color: var(--hero-glass-border); }
.rc-btn-ghost:hover { background: rgba(255,255,255,0.12); }

.rc-btn-block { width: 100%; padding-top: 12px; padding-bottom: 12px; font-weight: 800; letter-spacing: .2px; }

.rc-form-hint { margin: 8px 0 0; font-size: 12px; opacity: .85; }
.rc-form-message { margin-top: 8px; font-size: 13px; }
.rc-form-message.is-error { color: #ffb3b3; }
.rc-form-message.is-success { color: #b7ffcf; }

/* FAQ Section Styles dla SEO */
.sekcja-faq-index {
  background: linear-gradient(135deg, #0a1119 0%, #1a2332 50%, #0a1119 100%);
  padding: 4rem 0;
  margin: 2rem 0;
}

.faq-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.faq-question {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.faq-answer {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
}

.faq-answer p {
  margin: 0;
}

.faq-answer strong {
  color: #ea384c;
  font-weight: 600;
}

@media (max-width: 767px) {
  .sekcja-faq-index {
    padding: 2rem 0;
  }
  
  .faq-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .faq-item {
    padding: 1rem;
  }
  
  .faq-question {
    font-size: 1.1rem;
  }
}

/* ===== ENHANCED GALLERY WITH GRADIENT OVERLAY ===== */

/* Gallery Container */
.gallery-container {
  position: relative;
  overflow: visible; /* Allow gradient to show */
  min-height: 400px; /* Ensure container has height */
}

/* Enhanced Gallery Grid - Height controlled by CSS */
.rc-gallery-grid {
  overflow: visible; /* Allow cards to be visible during transition */
  height: auto; /* Natural height */
  transition: height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth height transition */
}

.rc-gallery-grid.expanded {
  height: auto !important; /* Remove height limit when expanded */
  transition: height 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth height transition */
}

/* Gallery container - no transitions to avoid conflicts */
.gallery-container {
  transition: none; /* Disable CSS transitions */
}

/* Enhanced Gallery Cards - Smooth animations without height changes */
.rc-card {
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
  transform: translateY(0);
  will-change: transform, opacity;
  /* Keep original card height - no height changes */
}

.rc-card.animating-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rc-card.animating-out {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s cubic-bezier(0.55, 0.06, 0.68, 0.19),
              transform 0.5s cubic-bezier(0.55, 0.06, 0.68, 0.19);
}

/* Staggered animation delays for smoother entrance - only for opacity and transform */
.rc-card:nth-child(1) { transition-delay: 0ms; }
.rc-card:nth-child(2) { transition-delay: 50ms; }
.rc-card:nth-child(3) { transition-delay: 100ms; }
.rc-card:nth-child(4) { transition-delay: 150ms; }
.rc-card:nth-child(5) { transition-delay: 200ms; }
.rc-card:nth-child(6) { transition-delay: 250ms; }
.rc-card:nth-child(7) { transition-delay: 300ms; }
.rc-card:nth-child(8) { transition-delay: 350ms; }
.rc-card:nth-child(9) { transition-delay: 400ms; }

/* Gradient Overlay - Smoother transitions */
.gallery-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(9, 17, 24, 0.2) 20%, 
    rgba(9, 17, 24, 0.6) 50%, 
    rgba(9, 17, 24, 0.9) 80%, 
    rgba(9, 17, 24, 0.98) 100%);
  pointer-events: none;
  z-index: 20;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
  transform: translateY(0);
  display: block !important; /* Force visibility */
}

.gallery-gradient-overlay.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

/* Show More Button Container */
.gallery-show-more-container {
  text-align: center;
  margin-top: 20px;
  position: relative;
  z-index: 15;
  display: block; /* Make sure it's visible by default */
}

.gallery-show-more-btn {
  background: linear-gradient(135deg, rgba(31, 44, 59, 0.9), rgba(22, 37, 54, 0.95));
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  color: #fff;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  font-family: 'ClashDisplay-Medium', sans-serif;
  transform: translateY(0);
}

.gallery-show-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, rgba(31, 44, 59, 0.95), rgba(22, 37, 54, 1));
}

.gallery-show-more-btn:active {
  transform: translateY(-1px);
}

.gallery-show-more-btn .btn-arrow {
  font-size: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-show-more-btn.expanded .btn-arrow {
  transform: rotate(180deg);
}

.gallery-show-more-btn .btn-text {
  transition: opacity 0.3s ease;
}

/* Mobile Responsive Adjustments */
@media (max-width: 767px) {
  .gallery-gradient-overlay {
    height: 150px;
  }
  
  .gallery-show-more-btn {
    padding: 14px 28px;
    font-size: 16px;
  }
}

@media (max-width: 479px) {
  .gallery-gradient-overlay {
    height: 120px;
  }
  
  .gallery-show-more-btn {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  .gallery-show-more-container {
    margin-top: 15px;
  }
}
