.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 10vh - 25vh);
  padding: clamp(20px, 4vh, 60px) clamp(16px, 4vw, 60px);
}

/* ── HERO ── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vh, 36px);
  text-align: center;
  max-width: 720px;
  width: 100%;

  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── ЛОГОТИП ── */
.hero__logo {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 16px);
}

.hero__logo-img {
  width: clamp(48px, 12vw, 120px);
  height: clamp(48px, 12vw, 120px);
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #364153;
  box-shadow: 0 0 20px rgba(80, 130, 236, 0.3);
}

.hero__logo-text {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: bold;
  color: aliceblue;
  letter-spacing: 1px;
}

.hero__logo-accent {
  color: #5082ec;
}

/* ── ЗАГОЛОВОК ── */
.hero__title {
  font-size: clamp(24px, 4vw, 52px);
  font-weight: bold;
  color: aliceblue;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.hero__title-accent {
  background: linear-gradient(135deg, #5082ec, #93c5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ПОДЗАГОЛОВОК ── */
.hero__subtitle {
  font-size: clamp(14px, 1.5vw, 20px);
  color: #99a1af;
  line-height: 1.6;
  max-width: 500px;
}

/* ── ФИЧИ ── */
.hero__features {
  display: flex;
  gap: clamp(12px, 2vw, 24px);
  flex-wrap: wrap;
  justify-content: center;
}

.hero__feature {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: clamp(8px, 1.2vh, 14px) clamp(14px, 2vw, 22px);
  border-radius: 10px;
  border: 1px solid #364153;
  background-color: #1e2838;

  color: #99a1af;
  font-size: clamp(12px, 1vw, 15px);
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.hero__feature:hover {
  border-color: #5082ec;
  color: aliceblue;
  background-color: #1c2e49;
}

.hero__feature-icon {
  color: #5082ec;
  font-size: clamp(14px, 1.2vw, 18px);
}

/* ── CTA ── */
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2.5vh, 24px);

  padding: clamp(20px, 3vh, 36px) clamp(24px, 4vw, 48px);
  border-radius: 16px;
  border: 1px solid #364153;
  background-color: #1e2838;
  width: 100%;
}

.hero__cta-text {
  font-size: clamp(14px, 1.4vw, 18px);
  color: #99a1af;
  line-height: 1.6;
}

.hero__cta-accent {
  color: aliceblue;
  font-weight: bold;
}

.hero__btn {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: clamp(10px, 1.5vh, 16px) clamp(24px, 3vw, 40px);
  border-radius: 12px;
  border: 1px solid #364153;
  background: linear-gradient(135deg, #5082ec, #1f52b8, #0b3ca8);

  color: aliceblue;
  text-decoration: none;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: bold;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hero__btn:hover {
  box-shadow: 0 0 20px rgba(80, 130, 236, 0.5);
  transform: translateY(-2px);
}

.hero__btn i {
  font-size: clamp(14px, 1.2vw, 18px);
}

/* ── MOBILE ── */
@media (max-width: 480px) {
  .hero__features {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__feature {
    justify-content: center;
  }
}