/* ==================== ДОБРО ПОЖАЛОВАТЬ В БУДУЩЕЕ ==================== */
.welcome-future-section {
  background-color: var(--color-black);
  color: var(--color-white);
  position: relative;
  overflow-x: clip;
}

.welcome-glow-bg {
  position: absolute;
  top: -5vw;
  left: 50%;
  transform: translateX(-50%) scaleY(-1);
  width: 2200px;
  height: 1200px;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: plus-lighter;
}

.welcome-glow-bg img {
  width: 100%;
  height: 100%;
}

.welcome-future-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 120px;
  position: relative;
  z-index: 1;
}

.welcome-hero-image {
  position: relative;
  contain: layout;
}

.welcome-hero-image::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -50%;
  transform: translate(-50%, 50%);
  width: 500%;
  height: 350%;
  background: url('../images/final_glowing_v2.svg') center center no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}

.welcome-hand-img {
  max-width: 320px;
  height: auto;
}

.welcome-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1008px;
  text-align: center;
}

.welcome-hero-title {
  font-family: 'Onest', sans-serif;
  font-size: 60px;
  font-weight: 500;
  line-height: 72px;
  letter-spacing: -1.2px;
  margin: 0;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Firefox fix */
}

.welcome-hero-subtitle {
  font-family: 'Onest', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.48px;
  color: #7E7E7E;
  margin: 0;
}

/* Старые стили welcome-hero-btn удалены - используются унифицированные .btn классы из common.css */

/* ==================== RESPONSIVE: TABLET (768px - 1024px) ==================== */
@media (min-width: 768px) and (max-width: 1024px) {
  .welcome-hero-title {
    font-size: 40px;
    line-height: 50px;
  }

  .welcome-hero-subtitle {
    font-size: 18px;
    line-height: 26px;
  }

  .welcome-hand-img {
    max-width: 400px;
  }

  .welcome-future-hero {
    gap: 32px;
    margin-bottom: 80px;
  }
}

/* ==================== RESPONSIVE: 1200px ==================== */
@media (max-width: 1200px) {
  .welcome-future-section {
    padding: 120px 0 0;
  }

  .welcome-hero-title {
    font-size: 48px;
    line-height: 60px;
  }

  .welcome-hero-subtitle {
    font-size: 20px;
    line-height: 28px;
  }
}

/* ==================== RESPONSIVE: MOBILE (<768px) ==================== */
@media (max-width: 768px) {
  .welcome-future-section {
    padding: 80px 0 0;
  }

  .welcome-future-hero {
    gap: 32px;
    margin-bottom: 80px;
  }

  .welcome-hero-image {
    width: 360px;
    max-width: 100%;
    height: 470px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .welcome-hero-image img {
    width: 240px;
    height: 360px;
    top: 80px;
  }

  .welcome-hero-title {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.64px;
  }

  .welcome-hero-subtitle {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.32px;
  }
}
