/* ==== СЕКЦІЯ ==== */
.nt-about {
  background: var(--negative-gradient);
  color: var(--color-var5);
  overflow: hidden;
  padding: 100px 0;
}

/* ==== ВІДЕО ==== */
.nt-about-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  background: #0d0d0d;
  box-shadow: 0 2px 40px rgba(43, 42, 42, 0.637);
  transform: scale(0.95);
  transition: transform 0.8s ease, box-shadow 0.8s ease;
}
.nt-about-video.active {
  transform: scale(1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

/* ==== ПОСТЕР ==== */
.nt-poster {
  background:url(/catalog/view/theme/ft_nt/image/new-nt/logo.jpg);
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 3;
}
.nt-poster.visible {
  opacity: 1;
}

/* ==== ВІДЕО ==== */
.nt-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 1.5s ease;
  position: relative;
  z-index: 2;
}
.nt-video.playing {
  opacity: 1;
}

/* ==== ТЕКСТ ==== */
.nt-title {
  font-weight: 800;
  font-size: 36px;
  margin-bottom: 12px;
  color: var(--color-var4);
}
.nt-title .highlight {
  background: linear-gradient(90deg, var(--color-var1), var(--color-var2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nt-subtitle {
  font-size: 16px;
  color: var(--color-var8);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nt-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-var7);
  margin-bottom: 15px;
}
.nt-text strong { color: var(--color-var1); }

/* ==== Анімації появи ==== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==== Затримки ==== */
.step-1.active { transition-delay: 0.1s; }
.step-2.active { transition-delay: 0.2s; }
.step-3.active { transition-delay: 0.3s; }
.step-4.active { transition-delay: 0.4s; }
.step-5.active { transition-delay: 0.5s; }

/* ==== Адаптив ==== */
@media (max-width: 991.98px) {
  .nt-about { padding: 80px 0; }
  .nt-title { font-size: 30px; }
  .nt-text { font-size: 15px; }
}
