/* --- RESET & VARS --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --color-lime: #accf3e;
  --color-lime-dark: #9bbd32;
  --color-text: #111;
  --font-main: "Roboto", sans-serif;
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-soft: cubic-bezier(0.25, 1, 0.5, 1);
  --header-height: 140px;
  --products-parallax: 0px;
  --process-parallax: 0px;
}
html {
  scroll-behavior: smooth;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: clip;
}
body {
  font-family: var(--font-main);
  background: #fff;
  color: var(--color-text);
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  cursor: none; 
}
main {
  margin: 0;
  padding: 0;
}
body.menu-open { overflow: hidden; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; cursor: none; }
button { cursor: none; }

/* --- CUSTOM CURSOR --- */
.cursor-dot, .cursor-circle {
  position: fixed; top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--color-lime);
}
.cursor-circle {
  width: 40px; height: 40px;
  border: 1px solid rgba(0,0,0,0.2);
  transition: width 0.3s, height 0.3s, background 0.3s;
}
body.hovered .cursor-circle {
  width: 60px; height: 60px;
  background: rgba(172, 207, 62, 0.2);
  border-color: transparent;
}

/* --- PRELOADER --- */
.preloader {
  position: fixed; inset: 0;
  background: #ffffff;
  z-index: 10000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: transform 0.8s var(--ease-expo);
}
.preloader.loaded { transform: translateY(-100%); }
.preloader-logo img { 
  width: 200px; margin-bottom: 20px; 
  animation: spinLogo 2s linear infinite;
}
@keyframes spinLogo { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.loading-bar { width: 200px; height: 3px; background: #eee; overflow: hidden; margin-top: 20px; }
.bar-fill {
  width: 100%; height: 100%; background: var(--color-lime);
  transform: translateX(-100%);
  animation: loadBar 1.5s var(--ease-expo) forwards;
}
@keyframes loadBar { 100% { transform: translateX(0); } }

/* --- HEADER --- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-height);
  z-index: 2000;
  display: flex; align-items: center;
  transition: background 0.45s ease, box-shadow 0.45s ease, height 0.55s var(--ease-soft);
  overflow: visible;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  height: 80px;
}
.container {
  width: 100%; max-width: 1400px;
  margin: 0 auto; padding: 0 30px;
  position: relative;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; width: 100%; height: 100%; }
.site-header .logo {
  display: block;
  position: relative;
  width: clamp(210px, 20vw, 290px);
  height: 100%;
  min-height: 0;
  transition: width 0.55s var(--ease-soft);
}
.site-header.is-scrolled .logo { width: clamp(150px, 13vw, 180px); }
.logo-img {
  position: absolute;
  left: 0;
  top: 50%;
  height: auto;
  width: auto;
  max-width: 100%;
  transition: opacity 0.5s ease, transform 0.5s var(--ease-soft);
  visibility: visible;
  object-fit: contain;
  will-change: transform, opacity;
}
/* Na hero: białe logo – pokazuje się po preloaderze (body.header-revealed) */
.logo-hero {
  height: 140px;
  opacity: 0;
  transform: translateY(-50%) scale(1.03);
  transition: opacity 0.52s ease, transform 0.58s var(--ease-soft);
}
body.header-revealed .logo-hero {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.logo-sticky {
  height: 56px;
  opacity: 0;
  transform: translateY(-50%) scale(0.72);
  transition: opacity 0.46s ease, transform 0.56s var(--ease-soft);
}
.site-header.is-scrolled .logo-hero {
  opacity: 0;
  transform: translateY(-50%) scale(0.72);
}
.site-header.is-scrolled .logo-sticky {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.main-nav > .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-item {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500; text-transform: uppercase; letter-spacing: 1px;
  color: #fff; padding: 10px 0; transition: color 0.3s;
}
.nav-item::after {
  content: ''; position: absolute; bottom: 5px; left: 0; width: 0; height: 2px;
  background: var(--color-lime); transition: width 0.3s ease;
}
.nav-item:hover::after { width: 100%; }
.site-header.is-scrolled .nav-item { color: #111; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: inherit;
  text-transform: inherit;
  border: none;
  background: transparent;
  margin: 0;
  line-height: 1.2;
  cursor: pointer;
}
.site-header.is-scrolled .nav-dropdown-toggle { color: #111; }
.nav-dropdown-toggle .dropdown-icon {
  font-size: 0.74rem;
  transition: transform 0.26s ease;
}
.has-dropdown {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: -14px;
}
.has-dropdown:hover > .nav-dropdown,
.has-dropdown:focus-within > .nav-dropdown,
.has-dropdown.is-open > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}
.has-dropdown:hover > .nav-dropdown-toggle .dropdown-icon,
.has-dropdown:focus-within > .nav-dropdown-toggle .dropdown-icon,
.has-dropdown.is-open > .nav-dropdown-toggle .dropdown-icon {
  transform: rotate(180deg);
}
.has-dropdown.is-active > .nav-dropdown-toggle::after {
  width: 100%;
}
.nav-dropdown {
  display: block;
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  min-width: 240px;
  list-style: none;
  border-radius: 14px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(17, 17, 17, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
  z-index: 2100;
}
.nav-dropdown li + li {
  margin-top: 6px;
  padding-top: 0;
  border-top: none;
}
.nav-dropdown li {
  border-radius: 10px;
  transition: background 0.22s ease;
}
.nav-dropdown li:hover,
.nav-dropdown li:focus-within {
  background: rgba(172, 207, 62, 0.14);
}
.nav-dropdown .nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  color: #111;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 12px;
  text-align: left;
}
.nav-dropdown .nav-sub-item::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--color-lime);
  border-bottom: 2px solid var(--color-lime);
  transform: translateY(-1px) rotate(-45deg);
  transition: transform 0.22s ease;
  flex: 0 0 7px;
}
.nav-dropdown li:hover .nav-sub-item::before,
.nav-dropdown li:focus-within .nav-sub-item::before {
  transform: translateX(2px) rotate(-45deg);
}
.nav-dropdown .nav-item::after {
  display: none;
}

/* Burger */
.burger {
  display: none;
  background: transparent;
  border: none;
  width: 42px;
  height: 32px;
  padding: 0;
  position: relative;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2200;
}
.burger .bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 3px;
  margin-left: -17px;
  margin-top: -1.5px;
  border-radius: 999px;
  background: #fff;
  transform-origin: center;
  transition: transform 0.32s var(--ease-soft), opacity 0.2s ease, background 0.3s ease;
}
.burger .bar:nth-child(1) { transform: translateY(-9px); }
.burger .bar:nth-child(2) { transform: translateY(0); }
.burger .bar:nth-child(3) { transform: translateY(9px); }
.site-header.is-scrolled .burger .bar { background: #111; }
.burger.toggle .bar { background: #111; }
.burger.toggle .bar:nth-child(1) { transform: rotate(45deg); }
.burger.toggle .bar:nth-child(2) { opacity: 0; transform: scaleX(0.6); }
.burger.toggle .bar:nth-child(3) { transform: rotate(-45deg); }

/* --- HERO --- */
.hero-section {
  height: 100vh; width: 100%; position: relative; overflow: hidden; background: #000;
}
.hero-swiper { width: 100%; height: 100%; position: absolute; inset: 0; z-index: 1; }
.swiper-slide { position: relative; width: 100%; height: 100%; overflow: hidden; }
.slide-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); z-index: 2; }

/* Hero Text - Lewy Dolny Róg */
.hero-static-layer {
  position: absolute; inset: 0; z-index: 10;
  pointer-events: none;
}
.hero-static-content {
  position: absolute; 
  bottom: 80px; 
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  padding: 0 30px;
  text-align: left; 
  color: #fff; 
  pointer-events: auto;
}
.hero-title-main {
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700; /* Gruby */
  line-height: 1.1; 
  text-transform: uppercase; 
  margin-bottom: 5px;
  width: fit-content;
  max-width: 0;
  text-shadow: 0 4px 16px rgba(0,0,0,0.35);
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid rgba(255,255,255,0.8);
  animation: fadeUpHero 0.9s var(--ease-expo) 1.2s forwards,
             typingTitle 7.2s var(--ease-soft) 1.5s forwards;
}
.hero-sub-main {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 300;
  font-family: var(--font-main);
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  white-space: nowrap;
  margin-bottom: 28px;
  width: fit-content;
  max-width: 0;
  text-shadow: 0 4px 16px rgba(0,0,0,0.3);
  opacity: 0;
  overflow: hidden;
  border-right: 2px solid rgba(255,255,255,0.6);
  animation: fadeUpHero 0.9s var(--ease-expo) 1.8s forwards,
             typingSub 6.3s var(--ease-soft) 2.1s forwards;
}
.btn-hero-main {
  display: inline-block; padding: 16px 40px;
  border: 2px solid var(--color-lime); border-radius: 50px;
  color: #fff; text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
  background: var(--color-lime); transition: 0.3s;
  opacity: 0; animation: fadeUpHero 1.4s var(--ease-expo) 2.2s forwards;
}
.btn-hero-main:hover {
  background: var(--color-lime-dark); color: #fff; border-color: var(--color-lime-dark); transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.22);
}
@keyframes fadeUpHero {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes typingTitle {
  from {
    max-width: 0;
    border-right-color: rgba(255,255,255,0.8);
  }
  to {
    max-width: 100%;
    border-right-color: transparent;
  }
}
@keyframes typingSub {
  from {
    max-width: 0;
    border-right-color: rgba(255,255,255,0.6);
  }
  to {
    max-width: 100%;
    border-right-color: transparent;
  }
}

/* --- MARQUEE --- */
.marquee-strip {
  background: var(--color-lime); color: #fff;
  padding: 20px 0; overflow: hidden;
  font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 1.2rem;
  border-bottom: 1px solid white;
  margin-bottom: 20px;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
}
.marquee-content > span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-right: 0;
}
.marquee-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  flex: 0 0 7px;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-25%); } }

/* --- SECTIONS --- */
section { padding: 120px 0; }
.section-title { font-size: 3.5rem; font-weight: 300; margin-bottom: 40px; }
.eyebrow-line {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.eyebrow { color: var(--color-lime); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.eyebrow-line.full-width-line::after {
  content: '';
  height: 2px;
  background: var(--color-lime);
  flex-grow: 1;
  min-width: 50px;
  opacity: 1;
  display: block;
}

/* --- ABOUT --- */
.about-container-flex { display: flex; gap: 80px; align-items: center; }
.about-text { flex: 1; }
.about-text p { margin-bottom: 20px; font-size: 1.1rem; color: #555; }
.about-video-wrapper {
  flex: 1;
  position: relative;
  min-width: 0;
  min-height: 380px;
  opacity: 1;
  visibility: visible;
}
.video-mask {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 20px 20px 0px var(--color-lime);
  transition: 0.5s;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 320px;
  background: #111;
}
.video-mask:hover { box-shadow: 15px 15px 0px var(--color-lime-dark); transform: translate(5px, 5px); }
.video-sticky {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.btn-green {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--color-lime); color: #fff;
  padding: 15px 35px; border-radius: 4px; font-weight: 700; transition: 0.3s;
}
.btn-green:hover { background: var(--color-lime-dark); transform: translateY(-3px); }

/* --- PRODUCTS (IMPROVED BLINDS) --- */
.section-products {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.products-parallax-bg {
  position: absolute;
  top: -12%;
  left: 0;
  right: 0;
  bottom: -12%;
  z-index: 0;
  pointer-events: none;
  transform: translate3d(0, var(--products-parallax-y, 0px), 0) scale(1.08);
  transform-origin: center;
  will-change: transform;
}
.products-parallax-bg {
  /* Bialy welon na zdjeciu - zdjecie lekko widoczne, tekst czytelny */
  background-image: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.95)), url("../img/slajd2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section-products::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 2;
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}
.section-products > .container {
  position: relative;
  z-index: 3;
}
.product-card {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px;
}
.product-img-wrapper {
  position: relative; border-radius: 20px; overflow: hidden; height: 500px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
/* Base image (zawsze na spodzie) */
.product-img-base {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
  transition: opacity 0.3s ease;
  object-position: center;
  transform: scale(1.06);
  transform-origin: center;
  will-change: transform;
}
/* Plasterki – pionowe paski (przecinanie), na wierzchu stary obraz */
.blinds-container {
  position: absolute; inset: 0; z-index: 3;
  display: flex;
  flex-direction: row;
  pointer-events: none;
}
.blind-slice {
  flex: 1;
  min-width: 0;
  height: 100%;
  background-repeat: no-repeat;
  transform-origin: left center;
  will-change: transform;
}

.product-info { display: flex; flex-direction: column; justify-content: center; }
.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 30px;
}
.product-header h3 {
  font-size: 3rem;
  font-weight: 300;
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.btn-green-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  white-space: nowrap;
  line-height: 1;
  background: var(--color-lime);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.3s;
}
.btn-green-sm:hover { background: var(--color-lime-dark); transform: scale(1.05); }
.product-info p { font-size: 1.2rem; color: #666; line-height: 1.6; }

.product-nav {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.nav-arrow {
  width: 60px; height: 60px; border-radius: 50%; border: 2px solid #eee;
  background: #fff; font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  transition: 0.3s; color: var(--color-lime);
}
.nav-arrow:hover {
  background: var(--color-lime); color: #fff; border-color: var(--color-lime); transform: scale(1.1);
}

/* --- JAKOŚĆ (FLIP TILES) --- */
.section-quality-full { 
  position: relative; color: #fff; 
  padding: 100px 0 150px;
}
.quality-bg-video { 
  position: absolute; inset: 0; width: 100%; height: 100%; 
  object-fit: cover; opacity: 1; z-index: 1; 
}
.quality-overlay-dark { 
  position: absolute; inset: 0; background: rgba(0,0,0,0.4); z-index: 2; 
}
.quality-content-layer { position: relative; z-index: 3; }

.quality-glass-box {
  background: rgba(172, 207, 62, 0.9);
  backdrop-filter: blur(12px);
  padding: 60px;
  max-width: 600px;
  margin-left: auto;
  color: #fff;
  border-radius: 4px;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
}
.quality-glass-box h2 { font-size: 3rem; margin-bottom: 20px; line-height: 1.1; font-weight: 400; }
.quality-glass-box .light-text {
  display: inline-block;
  font-size: 0.5em;
  font-weight: 300;
  line-height: 1.15;
  white-space: nowrap;
}
.btn-white-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid #fff; padding: 12px 30px; border-radius: 4px;
  color: #fff; background: transparent; transition: 0.3s; font-weight: 500;
}
.quality-glass-box .btn-white-outline {
  margin-top: 34px;
  margin-left: auto;
}
.btn-white-outline:hover { background: #fff; color: var(--color-lime); }

/* TILES 3D FLIP */
.tiles-grid-3d {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
}
.tile-flip-box {
  height: 400px; perspective: 1000px; cursor: pointer;
  transform-style: preserve-3d;
}
.tile-flip-inner {
  position: relative; width: 100%; height: 100%;
  text-align: center;
  transition: transform 0.9s var(--ease-soft);
  transform-style: preserve-3d;
}
.tile-flip-box:hover .tile-flip-inner { transform: rotateY(180deg); } /* HOVER FLIP */

.tile-face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.tile-front {
  background-image: url('../img/artykul.webp');
  background-size: 400% 100%; color: #fff; overflow: hidden;
}
.tile-flip-box:nth-child(1) .tile-front { background-position: 0% 50%; }
.tile-flip-box:nth-child(2) .tile-front { background-position: 33.3% 50%; }
.tile-flip-box:nth-child(3) .tile-front { background-position: 66.6% 50%; }
.tile-flip-box:nth-child(4) .tile-front { background-position: 100% 50%; }

.tile-overlay-gradient {
  position: absolute; inset: 0; background: rgba(0,0,0,0.4); transition: 0.3s;
}
.tile-flip-box:hover .tile-overlay-gradient { opacity: 0; }
.tile-content-front { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.tile-icon { font-size: 3.5rem; margin-bottom: 20px; }
.tile-icon svg { width: 1em; height: 1em; display: block; color: #fff; }
.tile-icon-pig svg { width: 2em; height: 2em; }
.tile-icon svg path { fill: currentColor; }
.tile-arrow {
  margin-top: 30px; width: 40px; height: 40px; border: 2px solid #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.tile-back {
  background: var(--color-lime); color: #fff;
  transform: rotateY(180deg); padding: 30px;
}
.tile-back i { font-size: 2.5rem; margin-bottom: 20px; }

/* --- PROCESS --- */
.section-process-final {
  position: relative;
  overflow: hidden;
}
.process-parallax-bg {
  position: absolute;
  top: -14%;
  left: 0;
  right: 0;
  bottom: -14%;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.9)), url("../img/slajd1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate3d(0, var(--process-parallax-y, 0px), 0) scale(1.12);
  transform-origin: center;
  will-change: transform;
}
.section-process-final > .process-parallax-bg {
  position: absolute;
  z-index: 0;
}
.section-process-final > * {
  position: relative;
  z-index: 1;
}
.process-title-block { background: transparent; }
.process-title-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.process-title-left {
  flex: 0 1 45%;
}
.process-title-right {
  flex: 0 1 50%;
}
.process-title-right p {
  font-size: 1.05rem;
  color: #555;
  max-width: 560px;
}

.process-video-centered {
  position: relative; 
  width: 100%;
  max-width: 100%;
  margin: 30px auto 30px;
  overflow: hidden; border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  aspect-ratio: 16/9;
}
.process-bg-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
}
.process-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); z-index: 2; }
.logo-centered {
  display: none;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: none;
  border-radius: 50%;
  background: var(--color-lime);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(0,0,0,0.34), 0 0 0 4px rgba(255,255,255,0.28);
  z-index: 20;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.video-play-btn::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.55);
  pointer-events: none;
  animation: playBtnPulseRing 2.2s ease-out infinite;
}
@keyframes playBtnPulseRing {
  0% { transform: scale(1); opacity: 0.62; }
  70% { transform: scale(1.14); opacity: 0.18; }
  100% { transform: scale(1.2); opacity: 0; }
}
.video-play-btn .btn-txt { display: none; }
.video-play-btn i { font-size: 28px; line-height: 1; margin-left: 4px; }
.video-play-btn:hover,
.video-play-btn:focus-visible {
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow: 0 16px 34px rgba(0,0,0,0.4), 0 0 0 4px rgba(255,255,255,0.34);
}
.video-play-btn.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
}

/* --- NEWS --- */
.section-news { padding-top: 40px; }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.news-item { position: relative; }
.news-img-wrap {
  height: 300px; border-radius: 10px; overflow: hidden; position: relative; margin-bottom: 0;
}
.news-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.news-item:hover .news-img-wrap img { transform: scale(1.05); }
.news-date {
  position: absolute; top: 15px; left: 15px;
  background: #fff; color: #000; padding: 5px 15px; font-weight: 700; border-radius: 20px;
}
.news-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px;
  background: rgba(172, 207, 62, 0.85);
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.news-content h3 {
  margin: 0;
  flex: 1;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.25;
}
.read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 0;
  margin-left: auto;
  white-space: nowrap;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.8);
  padding-bottom: 2px;
  transition: 0.3s;
}
.read-more i { margin-left: 8px; }
.news-item:hover .read-more { border-color: #fff; color: #fff; }

/* --- FOOTER --- */
.site-footer {
  background-color: var(--color-lime); color: #fff; padding: 0px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 6px; margin-bottom: 50px;
}
.footer-logo img { height: 80px; filter: brightness(0) invert(1); margin-bottom: 30px; }
.footer-left address { font-style: normal; margin-bottom: 20px; opacity: 0.9; }
.hours-label { font-weight: 700; margin-bottom: 5px; }

.footer-right { text-align: right; }
.footer-right h4 { font-size: 1.5rem; font-weight: 300; margin-bottom: 30px; }
/* Usunięte punktatory */
.footer-links { list-style: none !important; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; list-style: none; }
.footer-links a { font-size: 1.1rem; opacity: 0.8; transition: 0.3s; text-decoration: none; }
.footer-links a:hover { opacity: 1; text-decoration: underline; }

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

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
  .site-header .logo { width: 240px; }
  .site-header.is-scrolled .logo { width: 170px; }
  .logo-hero { height: 120px; }
  .logo-sticky { height: 50px; }
}
@media (max-width: 1024px) {
  .about-container-flex { flex-direction: column; }
  .tiles-grid-3d { grid-template-columns: 1fr 1fr; }
  .product-card { grid-template-columns: 1fr; }
  .product-img-wrapper { height: 350px; }
  .hero-static-content {
    left: 0;
    transform: none;
    padding: 0 24px;
    bottom: 60px;
  }
  .site-header { height: 110px; }
  .site-header .logo { width: 220px; }
  .site-header.is-scrolled .logo { width: 160px; }
  .logo-hero { height: 108px; }
  .logo-sticky { height: 46px; }
  .main-nav > .nav-links { gap: 24px; }
}
@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
    overflow-x: clip;
  }
  .burger { display: flex; z-index: 2200; }
  body.menu-open .burger .bar { background: #111; }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(82vw, 360px);
    background: #fff;
    padding-top: 126px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-soft);
    box-shadow: -20px 0 35px rgba(0,0,0,0.14);
    visibility: hidden;
    pointer-events: none;
  }
  .main-nav.nav-active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .main-nav > .nav-links {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
    padding: 0 34px;
  }
  .main-nav > .nav-links > li {
    width: auto;
    padding: 6px 0;
    border-bottom: none;
  }
  .main-nav .nav-item {
    display: block;
    width: auto;
    color: #111;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    padding: 8px 0;
    text-align: center;
  }
  .main-nav .nav-item::after { display: none; }
  .main-nav .has-dropdown {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .main-nav .has-dropdown > .nav-dropdown-toggle {
    width: 100%;
    justify-content: center;
  }
  .main-nav .nav-dropdown {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    min-width: 0;
    width: 100%;
    margin-top: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.34s var(--ease-soft), margin-top 0.34s var(--ease-soft);
  }
  .main-nav .has-dropdown.is-open > .nav-dropdown {
    max-height: 340px;
    margin-top: 6px;
  }
  .main-nav .nav-dropdown .nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    text-align: left;
    justify-content: flex-start;
    font-size: 1.02rem;
    font-weight: 600;
    color: #111 !important;
  }
  .main-nav .nav-dropdown .nav-sub-item::before {
    border-right-color: var(--color-lime);
    border-bottom-color: var(--color-lime);
  }
}
@media (max-width: 768px) {
  .process-title-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .hero-static-content { bottom: 48px; padding: 0 18px; }
  .hero-title-main {
    font-size: clamp(2.2rem, 9vw, 3rem);
    width: auto;
    max-width: 100%;
    border-right: none;
    white-space: normal;
    line-height: 1.15;
    animation: fadeUpHero 0.9s var(--ease-expo) 0.8s forwards;
  }
  .hero-sub-main {
    font-size: clamp(1.1rem, 4.8vw, 1.45rem);
    white-space: normal;
    letter-spacing: 0.08em;
    width: auto;
    max-width: 100%;
    border-right: none;
    animation: fadeUpHero 0.9s var(--ease-expo) 1.1s forwards;
  }
  .quality-glass-box .light-text { font-size: 0.42em; }
  .btn-hero-main { padding: 14px 30px; letter-spacing: 1px; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
  .footer-right { text-align: left; }
  .footer-right h4 { margin-bottom: 18px; }
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .footer-bottom span { white-space: nowrap; }
  .site-header { height: 96px; }
  .site-header .logo { width: 190px; }
  .site-header.is-scrolled .logo { width: 138px; }
  .logo-hero { height: 92px; }
  .logo-sticky { height: 40px; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero-title-main { font-size: clamp(2rem, 10vw, 2.7rem); }
  .hero-sub-main { letter-spacing: 0.06em; }
  .main-nav { width: 88vw; padding-top: 116px; }
  .main-nav > .nav-links { padding: 0 24px; }
  .main-nav .nav-item { font-size: 1.06rem; }
  .footer-bottom { font-size: 0.8rem; }
  .marquee-strip { font-size: 0.9rem; letter-spacing: 1px; }
  .marquee-content { gap: 10px; }
  .marquee-content > span { gap: 10px; }
  .marquee-dot { width: 6px; height: 6px; flex-basis: 6px; }
}

