/* ═══════════════════════════════════════
   HERO — главный экран
   ═══════════════════════════════════════ */

.hero {
  min-height: 100vh;
  padding-top: var(--nav-height);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #6B3FEF 0%, #9B6EFF 50%, #7B4FFF 100%);
}

/* ── Декоративные блобы ── */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__blob--1 {
  width: 600px;
  height: 600px;
  background: #A07EFF;
  opacity: 0.35;
  top: -100px;
  right: -100px;
}

.hero__blob--2 {
  width: 400px;
  height: 400px;
  background: var(--green);
  opacity: 0.2;
  bottom: -50px;
  left: 200px;
}

/* ── Двухколоночная раскладка ── */
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
}

/* ── Левая колонка (текст) ── */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: #1A1A2E;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  width: fit-content;
}

.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1A1A2E;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.hero__title .accent {
  color: var(--yellow);
}

.hero__sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Правая колонка (карточка с формой) ── */
.hero__card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
  animation: float 5s ease-in-out infinite;
}

.hero__card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.4;
}

.hero__card .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ── Анимации появления ── */
.hero__content {
  animation: fadeUp 0.7s var(--ease) 0.1s both;
}

.hero__card {
  animation: fadeUp 0.7s var(--ease) 0.3s both,
             float 5s ease-in-out 1s infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
