/* Faqja SPECTRUM — përdor bashkë /aluplast.css (header, btn, section, reveal, video, etj.) */

.spectrum-page {
  position: relative;
  z-index: 3;
  padding-top: 0.5rem;
}

.spectrum-page > .section:first-of-type {
  padding-top: calc(var(--header-h) + clamp(2rem, 6vw, 3.25rem));
}

/* Nuancë premium: blu + theks i lehtë “Spectrum” (korall) */
.spectrum-main {
  position: relative;
  font-family: var(--hero-font);
  background: linear-gradient(
    175deg,
    rgba(8, 22, 42, 0.58) 0%,
    rgba(32, 14, 18, 0.22) 38%,
    rgba(4, 14, 28, 0.72) 100%
  );
  border-top: 1px solid rgba(77, 166, 255, 0.12);
  overflow: hidden;
}

.spectrum-main::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 28%;
  transform: translate(-50%, -50%);
  width: min(130%, 56rem);
  height: 24rem;
  background:
    radial-gradient(ellipse at center, rgba(77, 166, 255, 0.11) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 60%, rgba(232, 93, 76, 0.08) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.spectrum-main .section-head {
  position: relative;
  z-index: 1;
}

.spectrum-main .section-head h2 {
  background: linear-gradient(135deg, #fff 0%, rgba(255, 220, 214, 0.95) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 24px rgba(0, 0, 0, 0.35));
}

.spectrum-hero-card {
  position: relative;
  z-index: 1;
  max-width: min(100%, 72rem);
  margin: 0 auto;
  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: 22px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.025) 100%);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow:
    0 0 0 1px rgba(232, 93, 76, 0.12) inset,
    0 0 0 1px rgba(77, 166, 255, 0.08) inset,
    0 22px 56px rgba(0, 0, 0, 0.3),
    0 0 64px rgba(77, 166, 255, 0.1);
  backdrop-filter: blur(12px) saturate(1.18);
  -webkit-backdrop-filter: blur(12px) saturate(1.18);
  transition: border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

@media (prefers-reduced-motion: no-preference) {
  .spectrum-hero-card:hover {
    border-color: rgba(77, 166, 255, 0.28);
    box-shadow:
      0 0 0 1px rgba(232, 93, 76, 0.18) inset,
      0 26px 64px rgba(0, 0, 0, 0.34),
      0 0 72px rgba(77, 166, 255, 0.16),
      0 0 40px rgba(232, 93, 76, 0.08);
  }
}

.spectrum-hero-card__visual {
  opacity: 1;
  transform: none;
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal-on-scroll.is-revealed .spectrum-hero-card__visual {
  opacity: 1;
  transform: none;
}

.spectrum-hero-card__img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(240px, 48vw, 400px);
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 75% 70% at 50% 85%, rgba(77, 166, 255, 0.2) 0%, transparent 58%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.spectrum-hero-card__img-wrap::before {
  content: "";
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle at 50% 50%, rgba(232, 93, 76, 0.12) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
  filter: blur(16px);
}

.spectrum-hero-card__img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(100%, 440px);
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  filter: drop-shadow(0 14px 40px rgba(0, 0, 0, 0.4));
  transition: transform 0.55s var(--ease);
}

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

.spectrum-hero-card__shine::after {
  content: "";
  position: absolute;
  top: -15%;
  left: -55%;
  width: 40%;
  height: 130%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 32%,
    rgba(255, 255, 255, 0.22) 48%,
    rgba(255, 255, 255, 0.05) 54%,
    transparent 68%
  );
  transform: skewX(-12deg);
}

@media (prefers-reduced-motion: no-preference) {
  .spectrum-hero-card__shine::after {
    animation: sigenia-shine-sweep 6s ease-in-out infinite;
  }
}

.spectrum-hero-card__body {
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 2vw, 1.1rem);
  opacity: 1;
  transform: none;
  transition: opacity 0.85s var(--ease) 0.1s, transform 0.85s var(--ease) 0.1s;
}

.reveal-on-scroll.is-revealed .spectrum-hero-card__body {
  opacity: 1;
  transform: none;
}

.spectrum-hero-card__logo {
  width: auto;
  max-width: min(200px, 88%);
  height: auto;
  display: block;
  padding: 0.5rem 0.65rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.spectrum-hero-card__text {
  margin: 0;
  font-size: clamp(0.875rem, 1.65vw, 0.9375rem);
  line-height: 1.72;
  color: rgba(210, 228, 248, 0.9);
}

.spectrum-hero-card__text p {
  margin: 0 0 0.85rem;
}

.spectrum-hero-card__text p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: rgba(255, 248, 246, 0.95);
}

.spectrum-hero-card__cta {
  align-self: flex-start;
  margin-top: 0.35rem;
  background: linear-gradient(135deg, #4da6ff 0%, #2563eb 42%, #1a5f9e 100%);
  box-shadow:
    0 0 0 1px rgba(232, 93, 76, 0.2) inset,
    0 4px 28px rgba(77, 166, 255, 0.42),
    0 0 32px rgba(232, 93, 76, 0.1);
}

.spectrum-hero-card__cta:hover {
  filter: brightness(1.05);
}

/* Galeri profile */
.spectrum-profiles {
  position: relative;
  font-family: var(--hero-font);
  background: linear-gradient(168deg, rgba(6, 18, 38, 0.75) 0%, rgba(4, 12, 26, 0.9) 100%);
  border-top: 1px solid rgba(77, 166, 255, 0.1);
}

.spectrum-profiles__inner {
  max-width: min(100%, 72rem);
  margin: 0 auto;
}

.spectrum-profiles__heading {
  margin: 0 0 clamp(1.25rem, 3vw, 1.75rem);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(230, 242, 255, 0.92);
  text-align: center;
}

.spectrum-profiles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.5vw, 1.35rem);
}

@media (min-width: 640px) {
  .spectrum-profiles__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.spectrum-profile-card {
  margin: 0;
  padding: clamp(1rem, 2.5vw, 1.25rem);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 0 1px rgba(77, 166, 255, 0.06) inset;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

@media (prefers-reduced-motion: no-preference) {
  .spectrum-profile-card:hover {
    transform: translateY(-4px);
    border-color: rgba(77, 166, 255, 0.28);
    box-shadow:
      0 0 0 1px rgba(77, 166, 255, 0.12) inset,
      0 16px 40px rgba(0, 0, 0, 0.28),
      0 0 36px rgba(77, 166, 255, 0.12);
  }
}

.spectrum-profile-card__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(160px, 28vw, 200px);
  border-radius: 12px;
  background: radial-gradient(ellipse at 50% 100%, rgba(77, 166, 255, 0.12) 0%, transparent 60%);
  margin-bottom: 0.65rem;
}

.spectrum-profile-card img {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
  transition: transform 0.45s var(--ease);
}

.spectrum-profile-card figcaption {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(200, 220, 248, 0.88);
  line-height: 1.4;
}

/* SIGENIA — mekanizëm gjerman (faqe SPECTRUM) */
.spectrum-sigenia {
  position: relative;
  font-family: var(--hero-font);
  background: linear-gradient(172deg, rgba(8, 24, 48, 0.82) 0%, rgba(6, 16, 34, 0.92) 50%, rgba(4, 12, 26, 0.88) 100%);
  border-top: 1px solid rgba(59, 130, 246, 0.18);
  overflow: hidden;
}

.spectrum-sigenia::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translate(-50%, -50%);
  width: min(110%, 48rem);
  height: 20rem;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.12) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.spectrum-sigenia__inner {
  position: relative;
  z-index: 1;
  max-width: min(100%, 72rem);
  margin: 0 auto;
}

.spectrum-sigenia__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto clamp(1.75rem, 4vw, 2.5rem);
}

.spectrum-sigenia__logo {
  display: block;
  width: auto;
  max-width: min(200px, 72%);
  height: auto;
  margin: 0 auto 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(15, 42, 68, 0.08);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}

.spectrum-sigenia__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3.8vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.3);
}

.spectrum-sigenia__lead {
  margin: 0;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.55;
  font-weight: 500;
  color: rgba(147, 197, 253, 0.95);
}

.spectrum-sigenia__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.spectrum-sigenia__visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.spectrum-sigenia__shot {
  margin: 0;
}

.spectrum-sigenia__shot--wide {
  grid-column: 1 / -1;
}

.spectrum-sigenia__img-frame {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(15, 42, 68, 0.35) 100%);
  border: 1px solid rgba(77, 166, 255, 0.2);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 16px 48px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(59, 130, 246, 0.1);
}

.spectrum-sigenia__img-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.spectrum-sigenia__copy {
  padding: clamp(0.25rem, 1vw, 0.5rem) 0;
}

.spectrum-sigenia__subtitle {
  margin: 0 0 1rem;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: rgba(191, 219, 254, 0.98);
}

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

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

.spectrum-sigenia__text p:last-child {
  margin-bottom: 0;
}

.spectrum-sigenia__closing {
  margin: 1.15rem 0 0;
  font-size: clamp(0.9rem, 1.7vw, 0.98rem);
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.94);
}

@media (max-width: 900px) {
  .spectrum-sigenia__grid {
    grid-template-columns: 1fr;
  }

  .spectrum-sigenia__visuals {
    order: 2;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
  }

  .spectrum-sigenia__copy {
    order: 1;
    text-align: center;
  }

  .spectrum-sigenia__subtitle {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spectrum-sigenia__img-frame img {
    transform: none;
  }
}

.spectrum-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);
}

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

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

  .spectrum-hero-card__body {
    transform: none;
    align-items: center;
  }

  .reveal-on-scroll.is-revealed .spectrum-hero-card__body {
    transform: none;
  }

  .spectrum-hero-card__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .spectrum-hero-card__cta {
    align-self: stretch;
    width: 100%;
    justify-content: center;
  }
}

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

  .spectrum-hero-card__img-wrap:hover .spectrum-hero-card__img {
    transform: none !important;
  }

  .spectrum-hero-card__shine::after {
    animation: none !important;
  }

  .spectrum-profile-card:hover {
    transform: none;
  }

  .spectrum-profile-card:hover img {
    transform: none;
  }
}
