/* ============================================
   🔹 nt-hero — адаптивний банер з послідовною анімацією
   ============================================ */
.nt-hero {
  background: linear-gradient(120deg, #f8fdff 0%, #e6f8f9 100%);
  overflow: hidden;
}

/* ---- Контент ---- */
.nt-hero-content {
  max-width: 520px;
}

.nt-hero-title,
.nt-hero-text,
.nt-hero-form,
.nt-hero-note,
.nt-hero-image-wrapper {
  opacity: 0;
  transform: translateY(25px);
  animation: nt-hero-fadeUp 0.8s ease forwards;
}

/* ---- Затримки для послідовної появи ---- */
.nt-hero-title { animation-delay: 0.1s; }
.nt-hero-text { animation-delay: 0.2s; }
.nt-hero-form { animation-delay: 0.2s; }
.nt-hero-note { animation-delay: 0.2s; }
.nt-hero-image-wrapper { animation-delay: 0.1s; }

/* ---- Основна анімація ---- */
@keyframes nt-hero-fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Текст ---- */
.nt-hero-title {
  font-weight: 700;
  color: var(--color-var10, #3c3c3c);
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.nt-hero-text {
  color: var(--color-var8, #94a3b8);
  font-size: 17px;
  margin-bottom: 30px;
}

/* ---- Форма ---- */
.nt-hero-form {
  display: flex;
  max-width: 420px;
  margin-bottom: 12px;
}
.nt-hero-form input {
  flex: 1;
  border: 1px solid var(--color-var6, #e2e8f0);
  border-radius: 30px 0 0 30px;
  padding: 12px 20px;
  font-size: 15px;
  background: #fff;
}
.nt-hero-form button {
  border: none;
  border-radius: 0 30px 30px 0;
  background: var(--color-var1, #38b6ff);
  color: var(--color-var5, #fff);
  font-weight: 600;
  padding: 0 25px;
  transition: all 0.3s ease;
}
.nt-hero-form button:hover {
  background: #0591c4;
  transform: translateY(-1px);
}

/* ---- Примітка ---- */
.nt-hero-note {
  font-size: 13px;
  color: var(--color-var8, #94a3b8);
  margin-top: 6px;
}

/* ---- Анімація ---- */
.nt-hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
      width: 70%;
}
.nt-hero-animation {
  width: 100%;
  max-width: 500px;
  border-radius: 0;
  box-shadow: none;
}

/* ---- Адаптивність ---- */
@media (max-width: 991.98px) {
  .nt-hero-title { font-size: 32px; }
  .nt-hero-content { text-align: center; margin: 0 auto; }
  .nt-hero-form { margin: 0 auto 12px; }
  
}
@media (max-width: 575.98px) {
  .nt-hero-animation { max-width: 320px; }
}
