:root {
  --navy: #0f2a44;
  --navy-deep: #071520;
  --bg-base-start: #0b1f35;
  --bg-base-end: #0f2a44;
  --glow: #4da6ff;
  --cyan: #22d3ee;
  --cyan-soft: rgba(34, 211, 238, 0.35);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-highlight: rgba(255, 255, 255, 0.05);
  --glass-surface: rgba(255, 255, 255, 0.05);
  --glass-radius: 24px;
  --glass-blur: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  /* Lartësi referuese për padding të përmbajtjes nën navbar fiks (~80px + hapësirë) */
  --header-h: 5rem;
  --hero-font: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-trust-badge:hover {
    transform: none;
  }

  .hero::before {
    transform: none !important;
    opacity: 0.9 !important;
  }

  .btn::before {
    display: none !important;
  }
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background: linear-gradient(180deg, var(--bg-base-start) 0%, var(--bg-base-end) 48%, #0a1929 100%);
  background-color: var(--bg-base-start);
}

/* Video sfond — fiks; MP4 i vërtetë H.264 (jo skedar .m3u8 / playlist) */
.bg-video {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  background:
    radial-gradient(ellipse 85% 65% at 50% 38%, rgba(77, 166, 255, 0.11) 0%, transparent 58%),
    radial-gradient(ellipse 70% 55% at 12% 22%, rgba(77, 166, 255, 0.07) 0%, transparent 52%),
    radial-gradient(ellipse 65% 50% at 92% 78%, rgba(34, 211, 238, 0.055) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 78% 18%, rgba(34, 211, 238, 0.04) 0%, transparent 55%),
    linear-gradient(180deg, rgba(11, 31, 53, 0.72) 0%, rgba(15, 42, 68, 0.82) 42%, rgba(6, 18, 32, 0.9) 100%);
  animation: premiumAmbientDrift 28s var(--ease-in-out) infinite alternate;
}

@keyframes premiumAmbientDrift {
  0% {
    transform: translate3d(-1.2%, -0.9%, 0) scale(1);
  }
  100% {
    transform: translate3d(1.1%, 1%, 0) scale(1.03);
  }
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.042;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  mix-blend-mode: overlay;
}

/* Pa lëvizje të shumtë: fshi video, përdor foto poster */
@media (prefers-reduced-motion: reduce) {
  .bg-video {
    display: none;
  }

  body::before {
    animation: none !important;
    transform: none !important;
    background:
      linear-gradient(180deg, rgba(10, 31, 51, 0.76) 0%, rgba(10, 31, 51, 0.88) 55%, rgba(10, 31, 51, 0.92) 100%),
      url("/images/hero-bg.png") center top / cover no-repeat;
  }

  body::after {
    opacity: 0.02;
  }
}

body {
  margin: 0;
  font-family: var(--hero-font), -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: transparent;
  color: #f8fafc;
  min-height: 100dvh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ——— Header (hero / global top bar) — fiks, gjithmonë mbi përmbajtje ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 9999;
  isolation: isolate;
  min-height: var(--header-h);
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: max(0.35rem, env(safe-area-inset-top, 0px)) clamp(1rem, 4vw, 2.25rem) 0.55rem;
  font-family: var(--hero-font);
  overflow: visible;
  background: rgba(11, 31, 53, 0.72);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.12);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.12);
  border-bottom: 1px solid var(--glass-border);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 0 40px rgba(77, 166, 255, 0.1),
    0 8px 32px rgba(0, 0, 0, 0.28);
  transition:
    background 0.45s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    backdrop-filter 0.45s var(--ease);
}

.site-header.site-header--scrolled {
  background: rgba(11, 31, 53, 0.86);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border-bottom-color: rgba(77, 166, 255, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 0 48px rgba(77, 166, 255, 0.12),
    0 12px 40px rgba(0, 0, 0, 0.32);
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

.logo::after {
  content: none;
}

.logo img {
  height: clamp(2rem, 5vw, 2.7rem);
  will-change: transform, filter;
  width: auto;
  max-width: min(48vw, 210px);
  object-fit: contain;
  object-position: left center;
  display: block;
  position: relative;
  z-index: 1;
  transition:
    transform 0.6s var(--ease),
    filter 0.6s var(--ease),
    opacity 0.55s var(--ease);
}

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

@keyframes logoShineSweep {
  0% {
    transform: translateX(-130%);
  }
  100% {
    transform: translateX(280%);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .logo.logo--pick-animate img {
    animation: logoPickPulse 1s var(--ease) forwards;
    filter: drop-shadow(0 0 14px rgba(77, 163, 255, 0.55))
      drop-shadow(0 0 28px rgba(77, 166, 255, 0.32));
  }

  .logo.logo--pick-animate::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(
      118deg,
      transparent 0%,
      rgba(255, 255, 255, 0.38) 45%,
      transparent 78%
    );
    pointer-events: none;
    z-index: 2;
    opacity: 0.95;
    animation: logoShineSweep 0.8s var(--ease) forwards;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo.logo--pick-animate img {
    filter: drop-shadow(0 0 12px rgba(77, 163, 255, 0.4));
  }
}

.logo:focus-visible {
  outline: 2px solid rgba(77, 166, 255, 0.65);
  outline-offset: 5px;
  border-radius: 6px;
}

.site-header__nav-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 0.35rem;
  column-gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

.site-header__nav-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  min-width: 0;
}

.site-header__brand {
  font-family: var(--hero-font);
  font-size: clamp(0.6875rem, 1.35vw, 0.8125rem);
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(255, 255, 255, 0.94);
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.12),
    0 0 36px rgba(0, 150, 255, 0.22);
  padding-bottom: 0.2rem;
  margin-bottom: 0.02rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  min-height: 1.15em;
  white-space: nowrap;
  user-select: none;
}

.site-header__brand.is-typing:not(:empty)::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.9em;
  margin-left: 3px;
  vertical-align: -0.05em;
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.95), rgba(37, 99, 235, 0.75));
  border-radius: 1px;
  animation: header-brand-caret 0.85s steps(1, end) infinite;
}

@keyframes header-brand-caret {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  row-gap: 0.2rem;
  gap: clamp(0.35rem, 2.5vw, 0.15rem);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 0.5rem 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.35s var(--ease), text-shadow 0.35s var(--ease);
}

.nav a.nav__product {
  color: rgba(125, 211, 252, 0.92);
}

.nav a.nav__product:hover {
  color: #e0f7ff;
  text-shadow: 0 0 20px rgba(34, 211, 238, 0.45);
}

.nav a.nav__product--here {
  color: #e0f7ff;
  text-shadow: 0 0 18px rgba(34, 211, 238, 0.35);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.2rem;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glow), transparent);
  transform: translateX(-50%);
  transition: width 0.4s var(--ease), opacity 0.4s var(--ease);
  opacity: 0;
  border-radius: 1px;
}

.nav a:hover {
  color: #fff;
  text-shadow: 0 0 24px rgba(77, 166, 255, 0.35);
}

.nav a:hover::after {
  width: 70%;
  opacity: 1;
}

@media (max-width: 640px) {
  .nav {
    gap: 0;
    font-size: 0.7rem;
  }

  .nav a {
    padding: 0.45rem 0.55rem;
  }
}

/* ——— Particles (të lehta — pamje më korporative) ——— */
.particles {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.11;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.85) 0%, transparent 70%);
  box-shadow: 0 0 10px rgba(77, 166, 255, 0.45);
  opacity: 0;
  animation: drift linear infinite;
}

@keyframes drift {
  0% {
    transform: translate3d(0, 105vh, 0) scale(0.3);
    opacity: 0;
  }
  8% {
    opacity: 0.55;
  }
  92% {
    opacity: 0.35;
  }
  100% {
    transform: translate3d(var(--dx, 0), -8vh, 0) scale(1);
    opacity: 0;
  }
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.625rem;
  min-height: 48px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  font-family: inherit;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), filter 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--rx, 50%) var(--ry, 50%), rgba(255, 255, 255, 0.45) 0%, transparent 55%);
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  pointer-events: none;
}

.btn:active::before {
  opacity: 0.35;
  transform: scale(2.2);
  transition: opacity 0s, transform 0s;
}

.primary {
  color: #fff;
  background: linear-gradient(135deg, #4da6ff 0%, #2563eb 42%, #1a5f9e 100%);
  box-shadow:
    0 4px 24px rgba(77, 166, 255, 0.42),
    0 0 32px rgba(34, 211, 238, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 12px 32px rgba(0, 0, 0, 0.22);
}

.primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 48px rgba(77, 166, 255, 0.5),
    0 0 40px rgba(34, 211, 238, 0.18),
    0 6px 28px rgba(26, 115, 232, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.18) inset;
  filter: brightness(1.06);
}

.primary:active {
  transform: translateY(0) scale(0.99);
}

.secondary {
  background: rgba(15, 42, 68, 0.38);
  border: 1px solid rgba(77, 166, 255, 0.55);
  color: #c8e8ff;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.18),
    0 0 0 1px var(--glass-highlight) inset;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.secondary:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(77, 166, 255, 0.16);
  color: #fff;
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow:
    0 0 28px rgba(77, 166, 255, 0.4),
    0 8px 28px rgba(0, 0, 0, 0.2);
}

.secondary:active {
  transform: translateY(0) scale(0.99);
}

/* ——— Sections ——— */
.section {
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: 1px 960px;
  z-index: 3;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2rem);
  max-width: 100%;
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
}

.section-head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 4.5vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
}

.section-head p {
  margin: 0;
  opacity: 0.92;
  line-height: 1.62;
  font-size: clamp(1rem, 2.2vw, 1.0625rem);
  color: rgba(230, 242, 255, 0.88);
}
/* ——— ALUPLAST Premium (Energeto Neo) ——— */
.aluplast-premium {
  position: relative;
  font-family: var(--hero-font);
  background: linear-gradient(
    175deg,
    rgba(8, 22, 42, 0.55) 0%,
    rgba(4, 14, 28, 0.72) 45%,
    rgba(6, 18, 36, 0.65) 100%
  );
  border-top: 1px solid rgba(77, 166, 255, 0.12);
  overflow: hidden;
}

.aluplast-premium::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translate(-50%, -50%);
  width: min(120%, 52rem);
  height: 22rem;
  background: radial-gradient(ellipse at center, rgba(77, 166, 255, 0.1) 0%, rgba(34, 211, 238, 0.04) 40%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.aluplast-premium__intro {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(1.5rem, 4vw, 2.25rem);
}

.aluplast-premium__heading {
  margin: 0 0 0.5rem;
  font-size: clamp(1.25rem, 3.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.2);
}

.aluplast-premium__sub {
  margin: 0;
  opacity: 0.88;
  line-height: 1.55;
  font-size: clamp(0.9375rem, 2vw, 1.02rem);
  color: rgba(200, 225, 255, 0.85);
}

.aluplast-showcase {
  position: relative;
  z-index: 1;
  max-width: min(100%, 72rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

/* IDEAL 8000: kolona e kundërt (tekst majtas, foto djathtas) */
.aluplast-showcase__card--ideal {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}

.aluplast-showcase__card--ideal .aluplast-showcase__visual {
  grid-column: 2;
  grid-row: 1;
}

.aluplast-showcase__card--ideal .aluplast-showcase__content {
  grid-column: 1;
  grid-row: 1;
}

.aluplast-showcase__ideal-visuals {
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 2vw, 1.15rem);
}

.aluplast-showcase__img-glow--lifestyle {
  min-height: clamp(200px, 36vw, 300px);
}

.aluplast-showcase__img--lifestyle {
  width: 100%;
  max-width: 100%;
  max-height: min(340px, 52vw);
  height: auto;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 14px;
}

.aluplast-showcase__img-glow--profile {
  min-height: clamp(200px, 38vw, 320px);
}

.aluplast-showcase__lede {
  margin: 0;
  font-size: clamp(0.9rem, 1.8vw, 0.98rem);
  line-height: 1.55;
  font-weight: 600;
  color: rgba(186, 230, 253, 0.95);
}

.aluplast-showcase__checks {
  list-style: none;
  margin: 0.35rem 0 0.15rem;
  padding: 0;
}

.aluplast-showcase__checks li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.5rem;
  font-size: clamp(0.8125rem, 1.5vw, 0.875rem);
  line-height: 1.45;
  font-weight: 600;
  color: rgba(224, 242, 254, 0.92);
}

.aluplast-showcase__checks li:last-child {
  margin-bottom: 0;
}

.aluplast-showcase__checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: rgba(34, 211, 238, 0.95);
  font-weight: 800;
  font-size: 0.95em;
}

.aluplast-showcase__card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.35rem) clamp(1.25rem, 3.5vw, 2rem);
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.025) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(77, 166, 255, 0.08) inset,
    0 20px 56px rgba(0, 0, 0, 0.28),
    0 0 64px rgba(34, 211, 238, 0.06);
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease),
    border-color 0.5s var(--ease);
}

@media (prefers-reduced-motion: no-preference) {
  .aluplast-showcase__card:hover {
    transform: scale(1.02);
    border-color: rgba(77, 166, 255, 0.28);
    box-shadow:
      0 0 0 1px rgba(34, 211, 238, 0.12) inset,
      0 26px 64px rgba(0, 0, 0, 0.32),
      0 0 72px rgba(77, 166, 255, 0.18),
      0 0 48px rgba(34, 211, 238, 0.1);
  }
}

.aluplast-showcase__visual {
  position: relative;
  min-height: 280px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal-on-scroll.is-revealed .aluplast-showcase__visual {
  opacity: 1;
  transform: translateY(0);
}

.aluplast-showcase__img-glow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(260px, 52vw, 420px);
  border-radius: 20px;
  background: radial-gradient(ellipse 70% 65% at 50% 88%, rgba(255, 255, 255, 0.14) 0%, rgba(77, 166, 255, 0.08) 28%, transparent 62%);
  overflow: hidden;
}

.aluplast-showcase__img-glow::after {
  content: "";
  position: absolute;
  inset: 10% 8% 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(34, 211, 238, 0.22) 0%, transparent 55%);
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.aluplast-showcase__img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(100%, 380px);
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.45));
}

@media (prefers-reduced-motion: no-preference) {
  .bajer-lightbox .aluplast-showcase__img {
    animation: aluplast-img-float 7s ease-in-out infinite;
  }
}

@keyframes aluplast-img-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.aluplast-showcase__content {
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 2vw, 1.15rem);
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.85s var(--ease) 0.12s, transform 0.85s var(--ease) 0.12s;
}

.reveal-on-scroll.is-revealed .aluplast-showcase__content {
  opacity: 1;
  transform: translateX(0);
}

.aluplast-showcase__brand {
  width: auto;
  max-width: min(220px, 72%);
  height: auto;
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.25);
}

.aluplast-showcase__product {
  margin: 0;
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.aluplast-showcase__desc {
  margin: 0;
  font-size: clamp(0.875rem, 1.65vw, 0.9375rem);
  line-height: 1.68;
  color: rgba(210, 228, 248, 0.82);
  letter-spacing: 0.01em;
}

.aluplast-showcase__desc p {
  margin: 0 0 0.85rem;
}

.aluplast-showcase__desc p:last-child {
  margin-bottom: 0;
}

.aluplast-showcase__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  margin: 0.25rem 0 0.15rem;
  padding: 0;
  list-style: none;
}

.aluplast-showcase__badges li {
  padding: 0.4rem 0.85rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(230, 242, 255, 0.92);
  border-radius: 999px;
  border: 1px solid rgba(77, 166, 255, 0.35);
  background: linear-gradient(135deg, rgba(77, 166, 255, 0.12) 0%, rgba(34, 211, 238, 0.06) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 0 20px rgba(77, 166, 255, 0.12);
}

.aluplast-showcase__cta {
  align-self: flex-start;
  margin-top: 0.35rem;
  padding: 0.95rem 1.5rem;
  background: linear-gradient(135deg, #4da6ff 0%, #2563eb 45%, #135bb8 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 4px 28px rgba(77, 166, 255, 0.45),
    0 0 36px rgba(34, 211, 238, 0.15);
}

.aluplast-showcase__cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 48px rgba(77, 166, 255, 0.5),
    0 0 40px rgba(34, 211, 238, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.25);
}

@media (max-width: 900px) {
  .aluplast-showcase__card {
    grid-template-columns: 1fr;
    gap: clamp(1.35rem, 4vw, 1.85rem);
  }

  .aluplast-showcase__card--ideal .aluplast-showcase__visual,
  .aluplast-showcase__card--ideal .aluplast-showcase__content {
    grid-column: 1;
    grid-row: auto;
  }

  .aluplast-showcase__visual {
    order: -1;
  }

  .aluplast-showcase__content {
    transform: translateY(18px);
  }

  .reveal-on-scroll.is-revealed .aluplast-showcase__content {
    transform: translateY(0);
  }

  .aluplast-showcase__cta {
    align-self: stretch;
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aluplast-showcase__img {
    animation: none !important;
  }

  .aluplast-showcase__card:hover {
    transform: none;
  }
}

/* ——— SIGENIA — mekanizëm gjerman (brenda ALUPLAST) ——— */
.aluplast-sigenia {
  position: relative;
  z-index: 1;
  max-width: min(100%, 72rem);
  margin: clamp(2.25rem, 5.5vw, 3.75rem) auto 0;
  padding: 0 clamp(0.25rem, 2vw, 0.5rem);
}

.aluplast-sigenia__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.35rem, 3.5vw, 2rem);
  border-radius: 20px;
  background: linear-gradient(152deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 55%, rgba(77, 166, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(77, 166, 255, 0.1) inset,
    0 24px 64px rgba(0, 0, 0, 0.32),
    0 0 80px rgba(77, 166, 255, 0.12),
    0 0 48px rgba(34, 211, 238, 0.06);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  transition: border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

@media (prefers-reduced-motion: no-preference) {
  .aluplast-sigenia__card:hover {
    border-color: rgba(77, 166, 255, 0.28);
    box-shadow:
      0 0 0 1px rgba(34, 211, 238, 0.14) inset,
      0 28px 72px rgba(0, 0, 0, 0.36),
      0 0 96px rgba(77, 166, 255, 0.2),
      0 0 56px rgba(34, 211, 238, 0.12);
  }
}

.aluplast-sigenia__visual {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal-on-scroll.is-revealed .aluplast-sigenia__visual {
  opacity: 1;
  transform: translateY(0);
}

.aluplast-sigenia__visual-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.35rem);
  width: 100%;
  max-width: min(100%, 430px);
  margin: 0 auto;
}

.aluplast-sigenia__img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: min(100%, 400px);
  min-height: clamp(220px, 42vw, 320px);
  border-radius: 18px;
  background:
    radial-gradient(ellipse 75% 70% at 50% 85%, rgba(77, 166, 255, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse 55% 50% at 50% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  overflow: hidden;
  isolation: isolate;
}

.aluplast-sigenia__img-wrap--secondary {
  min-height: clamp(150px, 30vw, 210px);
  background:
    radial-gradient(ellipse 72% 72% at 50% 88%, rgba(77, 166, 255, 0.18) 0%, transparent 56%),
    radial-gradient(ellipse 50% 45% at 50% 15%, rgba(255, 255, 255, 0.07) 0%, transparent 48%);
}

.aluplast-sigenia__img-wrap::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 50% 50%, rgba(77, 166, 255, 0.18) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
  filter: blur(12px);
}

.aluplast-sigenia__img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(100%, 360px);
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.45));
  transition: transform 0.55s var(--ease);
}

@media (prefers-reduced-motion: no-preference) {
  .aluplast-sigenia__img-wrap--primary .bajer-lightbox .aluplast-sigenia__img {
    animation: aluplast-img-float 6.5s ease-in-out infinite;
  }
}

.aluplast-sigenia__img--secondary {
  max-width: min(100%, 340px);
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.4));
  transition: transform 0.5s var(--ease);
}

.aluplast-sigenia__shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}

.aluplast-sigenia__shine::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -60%;
  width: 45%;
  height: 140%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.2) 48%,
    rgba(255, 255, 255, 0.06) 52%,
    transparent 65%
  );
  transform: skewX(-14deg);
  opacity: 0.85;
}

@media (prefers-reduced-motion: no-preference) {
  .aluplast-sigenia__shine::after {
    animation: sigenia-shine-sweep 5.5s ease-in-out infinite;
  }

  .aluplast-sigenia__shine--soft::after {
    animation: sigenia-shine-sweep 7.5s ease-in-out infinite;
    animation-delay: 2.2s;
    opacity: 0.55;
  }
}

@keyframes sigenia-shine-sweep {
  0%,
  12% {
    transform: translateX(-20%) skewX(-14deg);
    opacity: 0;
  }
  22% {
    opacity: 0.9;
  }
  55% {
    transform: translateX(320%) skewX(-14deg);
    opacity: 0.75;
  }
  70%,
  100% {
    transform: translateX(320%) skewX(-14deg);
    opacity: 0;
  }
}

.aluplast-sigenia__body {
  display: flex;
  flex-direction: column;
  gap: clamp(0.9rem, 2.2vw, 1.2rem);
  opacity: 0;
  transform: translateX(26px);
  transition: opacity 0.85s var(--ease) 0.1s, transform 0.85s var(--ease) 0.1s;
}

.reveal-on-scroll.is-revealed .aluplast-sigenia__body {
  opacity: 1;
  transform: translateX(0);
}

.aluplast-sigenia__logo {
  width: auto;
  max-width: min(220px, 88%);
  height: auto;
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(77, 166, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55) inset,
    0 10px 32px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(77, 166, 255, 0.12);
}

.aluplast-sigenia__title {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: #fff;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.35);
}

.aluplast-sigenia__text {
  margin: 0;
  font-size: clamp(0.875rem, 1.65vw, 0.9375rem);
  line-height: 1.72;
  color: rgba(210, 228, 248, 0.88);
}

.aluplast-sigenia__text p {
  margin: 0 0 0.85rem;
}

.aluplast-sigenia__text p:last-child {
  margin-bottom: 0;
  font-weight: 500;
  color: rgba(230, 242, 255, 0.92);
}

.aluplast-sigenia__features {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.65rem 1rem;
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
}

.aluplast-sigenia__feat {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem 0.5rem 0.55rem;
  border-radius: 12px;
  border: 1px solid rgba(77, 166, 255, 0.28);
  background: rgba(4, 18, 36, 0.45);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(230, 242, 255, 0.94);
  line-height: 1.35;
}

.aluplast-sigenia__feat-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(77, 166, 255, 0.2) 0%, rgba(34, 211, 238, 0.08) 100%);
  color: rgba(160, 210, 255, 0.98);
  box-shadow: 0 0 20px rgba(77, 166, 255, 0.15);
}

.aluplast-sigenia__feat-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.aluplast-sigenia__cta {
  align-self: flex-start;
  margin-top: 0.25rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 4px 28px rgba(77, 166, 255, 0.4),
    0 0 36px rgba(34, 211, 238, 0.12);
}

@media (max-width: 900px) {
  .aluplast-sigenia__card {
    grid-template-columns: 1fr;
    gap: clamp(1.35rem, 4vw, 1.85rem);
    text-align: center;
  }

  .aluplast-sigenia__body {
    transform: translateY(18px);
    align-items: center;
  }

  .reveal-on-scroll.is-revealed .aluplast-sigenia__body {
    transform: translateY(0);
  }

  .aluplast-sigenia__features {
    justify-content: center;
  }

  .aluplast-sigenia__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .aluplast-sigenia__feat {
    flex: 1 1 auto;
    min-width: min(100%, 12rem);
    justify-content: center;
  }

  .aluplast-sigenia__cta {
    align-self: stretch;
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aluplast-sigenia__img-wrap--primary .bajer-lightbox .aluplast-sigenia__img,
  .aluplast-sigenia__img--secondary {
    animation: none !important;
  }

  .aluplast-sigenia__img-wrap .bajer-lightbox:hover .aluplast-sigenia__img,
  .aluplast-sigenia__img-wrap .bajer-lightbox:focus-visible .aluplast-sigenia__img {
    transform: none !important;
  }

  .aluplast-sigenia__shine::after,
  .aluplast-sigenia__shine--soft::after {
    animation: none !important;
  }

  .aluplast-sigenia__card:hover {
    box-shadow:
      0 0 0 1px rgba(77, 166, 255, 0.1) inset,
      0 24px 64px rgba(0, 0, 0, 0.32),
      0 0 80px rgba(77, 166, 255, 0.12);
  }
}

/* ——— Teknologjitë e integruara (ALUPLAST showcase) ——— */
.tech-integrated {
  position: relative;
  font-family: var(--hero-font);
  background: linear-gradient(
    168deg,
    rgba(6, 18, 38, 0.72) 0%,
    rgba(4, 12, 26, 0.88) 50%,
    rgba(8, 22, 42, 0.75) 100%
  );
  border-top: 1px solid rgba(77, 166, 255, 0.1);
  overflow: hidden;
}

.tech-integrated::before {
  content: "";
  position: absolute;
  right: -15%;
  top: 10%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(30, 58, 138, 0.22) 0%, rgba(77, 166, 255, 0.06) 45%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.tech-integrated__inner {
  position: relative;
  z-index: 1;
  max-width: min(100%, 76rem);
  margin: 0 auto;
}

.tech-integrated__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
  text-align: left;
}

@media (min-width: 900px) {
  .tech-integrated__head {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr);
    align-items: end;
  }

  .tech-integrated__head .tech-integrated__titles {
    max-width: 28rem;
  }
}

.tech-integrated__titles h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
}

.tech-integrated__titles p {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.0625rem);
  line-height: 1.55;
  color: rgba(210, 228, 248, 0.88);
  max-width: 34rem;
}

.tech-integrated__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.15rem, 3vw, 1.5rem);
}

@media (min-width: 768px) {
  .tech-integrated__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 1.35rem);
  }
}

.tech-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: clamp(280px, 52vw, 360px);
  background: linear-gradient(165deg, rgba(7, 21, 40, 0.95) 0%, rgba(15, 42, 68, 0.65) 100%);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(77, 166, 255, 0.12) inset,
    0 0 48px rgba(30, 58, 138, 0.12);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) and (pointer: fine) {
  .tech-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 12px 40px rgba(0, 0, 0, 0.4),
      0 0 0 1px rgba(34, 211, 238, 0.15) inset,
      0 0 56px rgba(77, 166, 255, 0.22),
      0 0 40px rgba(30, 58, 138, 0.35);
  }
}

.tech-card__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tech-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.tech-card__visual .bajer-lightbox--cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tech-card__visual .bajer-lightbox--cover .bajer-lightbox__frame {
  width: 100%;
  height: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .tech-card__visual .bajer-lightbox--cover:hover .tech-card__img,
  .tech-card__visual .bajer-lightbox--cover:focus-visible .tech-card__img {
    transform: scale(1.05);
  }
}

.tech-card__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 44px;
  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 45%, #4da6ff 100%);
  box-shadow:
    0 -8px 32px rgba(30, 58, 138, 0.45),
    0 0 40px rgba(77, 166, 255, 0.18);
}

.tech-card__panel-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.05rem;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.4s ease-in-out 0.05s,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
  min-height: 0;
  overflow: hidden;
}

.tech-card__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.tech-card__text {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(230, 240, 255, 0.88);
  max-width: 22rem;
}

@media (hover: hover) and (pointer: fine) {
  .tech-card:hover .tech-card__panel {
    height: 48%;
    min-height: 160px;
  }

  .tech-card:hover .tech-card__panel-inner {
    opacity: 1;
    transform: translateY(0);
    padding: 1.1rem 1.05rem 1.15rem;
  }
}

/* Mobile / coarse: teksti gjithmonë i lexueshëm + panel më i hapur */
@media (hover: none), (max-width: 767px) {
  .tech-card__panel {
    height: auto;
    min-height: 44%;
    max-height: 52%;
  }

  .tech-card__panel-inner {
    opacity: 1;
    transform: none;
    padding: 1rem 1.05rem 1.1rem;
  }

  .tech-card__visual .bajer-lightbox--cover:active .tech-card__img {
    transform: scale(1.03);
  }

  .tech-card:active .tech-card__panel {
    box-shadow:
      0 -12px 40px rgba(30, 58, 138, 0.55),
      0 0 48px rgba(77, 166, 255, 0.25);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tech-card,
  .tech-card__img,
  .tech-card__panel,
  .tech-card__panel-inner {
    transition-duration: 0.01ms !important;
  }

  .tech-card__visual .bajer-lightbox--cover:hover .tech-card__img,
  .tech-card__visual .bajer-lightbox--cover:active .tech-card__img {
    transform: none !important;
  }
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.lang-switcher__btn {
  padding: 0.35rem 0.5rem;
  min-width: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--hero-font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.2s var(--ease),
    color 0.2s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.lang-switcher__btn:hover {
  background: rgba(77, 166, 255, 0.18);
  border-color: rgba(77, 166, 255, 0.4);
}

.lang-switcher__btn.is-active {
  background: rgba(77, 166, 255, 0.32);
  border-color: rgba(77, 166, 255, 0.55);
  color: #fff;
}

@media (prefers-reduced-motion: no-preference) {
  .lang-switcher__btn:active {
    transform: scale(0.94);
  }
}

@media (max-width: 720px) {
  /* Mos përdor absolute — përndryshe përplaset me nav / logo dhe pritet nga header i ulët */
  .lang-switcher {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin-left: 0;
    flex-shrink: 0;
  }

  .site-header {
    flex-wrap: wrap;
    align-items: flex-start;
    padding-top: max(0.45rem, env(safe-area-inset-top, 0px));
    padding-bottom: 0.5rem;
  }

  .site-header__nav-wrap {
    flex: 1 1 auto;
    min-width: min(100%, 12rem);
    justify-content: flex-end;
  }

  .site-header__nav-block {
    align-items: flex-end;
    max-width: 100%;
  }

  .site-header .logo img {
    max-width: min(140px, 38vw);
    height: auto;
  }

  .particles {
    opacity: 0.12;
  }

  .particle {
    box-shadow: none;
  }

  .site-header,
  .lang-gate__panel,
  .price-calc-card,
  .bajer-chat-panel {
    backdrop-filter: blur(10px) saturate(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(1.08);
  }
}

/* ——— Faqja ALUPLAST ——— */
.aluplast-page {
  position: relative;
  z-index: 3;
  padding-top: 0.5rem;
}

.aluplast-page > .section.aluplast-hero:first-of-type {
  padding-top: calc(var(--header-h) + clamp(1.75rem, 5vw, 2.75rem));
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.aluplast-hero {
  position: relative;
  min-height: min(68vh, 36rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse 120% 80% at 50% 20%, rgba(77, 166, 255, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 80% 70%, rgba(34, 211, 238, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, rgba(6, 18, 36, 0.35) 0%, rgba(4, 12, 26, 0.55) 100%);
  border-bottom: 1px solid rgba(77, 166, 255, 0.1);
  overflow: hidden;
}

.aluplast-hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(77, 166, 255, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.aluplast-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(100%, 44rem);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.aluplast-hero__card {
  text-align: center;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.35rem, 3.5vw, 2rem);
  border-radius: 1.25rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.07) 0%, rgba(12, 28, 48, 0.55) 100%);
  border: 1px solid rgba(125, 211, 252, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
}

.aluplast-hero__badge {
  margin: 0 0 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(125, 211, 252, 0.88);
}

.aluplast-hero__logo {
  display: block;
  width: min(240px, 72vw);
  height: auto;
  margin: 0 auto 1.25rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.aluplast-hero__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 4.2vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.3);
}

.aluplast-hero__lead {
  margin: 0 0 1.5rem;
  font-size: clamp(0.98rem, 2.1vw, 1.08rem);
  line-height: 1.62;
  color: rgba(220, 235, 255, 0.9);
  opacity: 0.95;
}

.aluplast-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.75rem;
  justify-content: center;
  align-items: center;
}

@media (max-width: 480px) {
  .aluplast-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.aluplast-footer-bar {
  border-top: 1px solid rgba(77, 166, 255, 0.12);
  background: rgba(4, 14, 28, 0.5);
  padding: clamp(2rem, 5vw, 2.75rem) clamp(1.25rem, 4vw, 2rem);
}

.aluplast-footer-bar__inner {
  max-width: 44rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
  align-items: center;
}

/* ——— WhatsApp (glass) + chat ——— */
.whatsapp-float {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  left: max(20px, env(safe-area-inset-left, 0px));
  z-index: 9999;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
}

.whatsapp-float__pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50px;
  background: radial-gradient(
    ellipse 100% 100% at 50% 50%,
    rgba(77, 166, 255, 0.14) 0%,
    rgba(77, 166, 255, 0.04) 52%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
  animation: whatsappFloatPulse 3.2s ease-in-out infinite;
}

.whatsapp-float__bob {
  position: relative;
  z-index: 1;
  display: inline-block;
  animation: whatsappFloatBob 2.5s ease-in-out infinite;
}

.whatsapp-float__content {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 50px;
  line-height: 1.3;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.whatsapp-float__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.whatsapp-float__icon svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: #25d366;
}

.whatsapp-float__label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

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

@keyframes whatsappFloatPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.025);
  }
}

.whatsapp-float:hover .whatsapp-float__content {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 10px 40px rgba(77, 166, 255, 0.4),
    0 8px 28px rgba(0, 0, 0, 0.18);
}

.whatsapp-float:active .whatsapp-float__content {
  transform: scale(1.02);
}

.whatsapp-float:focus-visible {
  outline: none;
}

.whatsapp-float:focus-visible .whatsapp-float__content {
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.9),
    0 0 0 4px rgba(77, 166, 255, 0.45),
    0 8px 30px rgba(0, 0, 0, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float__bob,
  .whatsapp-float__pulse {
    animation: none;
  }

  .whatsapp-float__bob {
    transform: none;
  }
}

.bajer-chat {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  right: max(20px, env(safe-area-inset-right, 0px));
  z-index: 10050;
  font-family: var(--hero-font);
}

.bajer-chat-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  color: transparent;
  font-size: 0;
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.35s var(--ease), filter 0.35s var(--ease);
  filter: drop-shadow(0 4px 14px rgba(77, 166, 255, 0.38))
    drop-shadow(0 0 26px rgba(77, 166, 255, 0.22));
}

.bajer-chat-toggle__glow {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(77, 166, 255, 0.32),
    rgba(77, 166, 255, 0.08) 55%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
}

.bajer-chat-toggle__img-stack {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
}

.bajer-chat-toggle__base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  display: block;
  user-select: none;
}

.bajer-chat-toggle__layer {
  position: absolute;
  inset: 0;
  background: url(/images/bajer-chat-bubbles.png) center / contain no-repeat;
  pointer-events: none;
  will-change: transform;
}

.bajer-chat-toggle__layer--back {
  clip-path: ellipse(38% 36% at 35% 40%);
  animation: bajerChatBubbleUp 2.6s ease-in-out infinite;
}

.bajer-chat-toggle__layer--front {
  clip-path: ellipse(40% 38% at 65% 60%);
  animation: bajerChatBubbleDown 2.6s ease-in-out infinite;
}

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

@keyframes bajerChatBubbleDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

.bajer-chat-toggle:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 20px rgba(77, 166, 255, 0.48))
    drop-shadow(0 0 34px rgba(77, 166, 255, 0.3));
}

.bajer-chat-toggle:active {
  transform: scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
  .bajer-chat-toggle__layer--back,
  .bajer-chat-toggle__layer--front {
    animation: none;
  }
}

@media (max-width: 600px) {
  .bajer-chat {
    bottom: max(88px, calc(20px + env(safe-area-inset-bottom, 0px)));
    right: max(16px, env(safe-area-inset-right, 0px));
  }

  .bajer-chat-toggle {
    width: 56px;
    height: 56px;
  }

  .whatsapp-float {
    left: max(12px, env(safe-area-inset-left, 0px));
    right: auto;
    max-width: min(19.5rem, calc(100vw - 5.75rem));
  }

  .whatsapp-float__content {
    padding: 9px 13px;
    gap: 8px;
    border-radius: 50px;
  }

  .whatsapp-float__icon svg {
    width: 21px;
    height: 21px;
  }

  .whatsapp-float__label {
    font-size: 12.5px;
    white-space: normal;
    max-width: 14rem;
  }
}

/* ——— Lightbox imazhesh (ALUPLAST + SPECTRUM) ——— */
button.bajer-lightbox {
  appearance: none;
  border: 0;
  margin: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  text-align: inherit;
  cursor: zoom-in;
  -webkit-tap-highlight-color: transparent;
  display: block;
  width: 100%;
}

.bajer-lightbox__frame {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.bajer-lightbox__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.bajer-lightbox__zoom {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 52px;
  height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.32),
    0 12px 40px rgba(0, 0, 0, 0.45),
    0 0 32px rgba(125, 211, 252, 0.4);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.88);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.bajer-lightbox__zoom::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='10.5' cy='10.5' r='6.5' stroke='%23ffffff' stroke-width='2'/%3E%3Cpath d='M16 16l5 5' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

@media (hover: hover) and (pointer: fine) {
  .bajer-lightbox:hover .bajer-lightbox__frame > img,
  .bajer-lightbox:focus-visible .bajer-lightbox__frame > img {
    transform: scale(1.05);
  }

  .bajer-lightbox:hover .bajer-lightbox__overlay,
  .bajer-lightbox:focus-visible .bajer-lightbox__overlay {
    background: rgba(0, 0, 0, 0.3);
  }

  .bajer-lightbox:hover .bajer-lightbox__zoom,
  .bajer-lightbox:focus-visible .bajer-lightbox__zoom {
    opacity: 1;
    transform: scale(1);
  }

  .bajer-lightbox:hover .aluplast-showcase__img,
  .bajer-lightbox:focus-visible .aluplast-showcase__img,
  .bajer-lightbox:hover .spectrum-hero-card__img,
  .bajer-lightbox:focus-visible .spectrum-hero-card__img {
    animation: none;
  }
}

.bajer-lightbox__frame > img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  vertical-align: middle;
}

.aluplast-showcase__img-glow .bajer-lightbox {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  min-height: clamp(260px, 52vw, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.aluplast-showcase__img-glow .bajer-lightbox__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: inherit;
  border-radius: 20px;
}

.aluplast-showcase__img-glow--lifestyle .bajer-lightbox {
  min-height: clamp(200px, 36vw, 300px);
}

.aluplast-showcase__img-glow--profile .bajer-lightbox {
  min-height: clamp(200px, 38vw, 320px);
}

.aluplast-sigenia__img-wrap .bajer-lightbox {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aluplast-sigenia__img-wrap .bajer-lightbox__frame {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
}

.spectrum-hero-card__img-wrap .bajer-lightbox {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: clamp(240px, 48vw, 400px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spectrum-hero-card__img-wrap .bajer-lightbox__frame {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
}

@media (prefers-reduced-motion: no-preference) {
  .spectrum-hero-card__img-wrap .bajer-lightbox .spectrum-hero-card__img {
    animation: aluplast-img-float 7s ease-in-out infinite;
  }
}

.spectrum-profile-card__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.spectrum-profile-card .bajer-lightbox {
  width: 100%;
}

.spectrum-profile-card .bajer-lightbox__frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(160px, 28vw, 200px);
}

.spectrum-sigenia__img-frame .bajer-lightbox {
  width: 100%;
  display: block;
}

.spectrum-sigenia__img-frame .bajer-lightbox__frame {
  border-radius: 16px;
}

@media (prefers-reduced-motion: reduce) {
  .spectrum-hero-card__img-wrap .bajer-lightbox .spectrum-hero-card__img {
    animation: none !important;
  }

  .bajer-lightbox__frame > img,
  .bajer-lightbox__overlay,
  .bajer-lightbox__zoom {
    transition-duration: 0.01ms !important;
  }

  .bajer-lightbox:hover .bajer-lightbox__frame > img,
  .bajer-lightbox:focus-visible .bajer-lightbox__frame > img {
    transform: none;
  }

  .bajer-lightbox:hover .bajer-lightbox__overlay,
  .bajer-lightbox:focus-visible .bajer-lightbox__overlay {
    background: transparent;
  }

  .bajer-lightbox:hover .bajer-lightbox__zoom,
  .bajer-lightbox:focus-visible .bajer-lightbox__zoom {
    opacity: 0;
    transform: scale(0.88);
  }
}

/* Modal */
.bajer-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 10100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right))
    max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.38s;
}

.bajer-lightbox-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bajer-lightbox-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.bajer-lightbox-modal__close {
  position: absolute;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, env(safe-area-inset-right));
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.bajer-lightbox-modal__close:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
}

.bajer-lightbox-modal__close:active {
  transform: scale(0.96);
}

.bajer-lightbox-modal__frame {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1440px);
  max-height: min(88vh, 1200px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bajer-lightbox-modal__img {
  max-width: 100%;
  max-height: min(88vh, 1200px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.04s, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1) 0.04s;
}

.bajer-lightbox-modal.is-open .bajer-lightbox-modal__img {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .bajer-lightbox-modal,
  .bajer-lightbox-modal__img {
    transition-duration: 0.01ms !important;
  }

  .bajer-lightbox-modal__img {
    transform: none;
  }

  .bajer-lightbox-modal.is-open .bajer-lightbox-modal__img {
    transform: none;
  }
}
