.motavix-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 40px;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(13, 148, 136, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(249, 115, 22, 0.12), transparent 50%),
    linear-gradient(180deg, #eef8f6 0%, rgb(var(--color-background, 244, 246, 248)) 100%);
}

.motavix-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.motavix-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 13px;
  font-weight: 600;
  color: #0f766e;
  margin-bottom: 18px;
}

.motavix-hero__title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: #0f172a;
  font-weight: 800;
}

.motavix-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, #0d9488, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
}

.motavix-hero__lead {
  color: #475569;
  font-size: 1.05rem;
  max-width: 34em;
  margin: 0 0 28px;
  line-height: 1.7;
}

.motavix-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.motavix-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s;
}

.motavix-hero__btn--primary {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  color: #fff;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.28);
}

.motavix-hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.38);
}

.motavix-hero__btn--ghost {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: #0f172a;
}

.motavix-hero__btn--ghost:hover {
  border-color: #0d9488;
  color: #0f766e;
}

.motavix-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.motavix-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 13px;
  font-weight: 500;
  color: #475569;
}

.motavix-hero__feature-stack {
  display: grid;
  gap: 14px;
}

.motavix-hero__feature {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
}

.motavix-hero__feature:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.motavix-hero__feature--offset {
  margin-left: 24px;
}

.motavix-hero__feature--offset-sm {
  margin-left: 8px;
}

.motavix-hero__feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
  background: rgba(13, 148, 136, 0.12);
}

.motavix-hero__feature h3 {
  font-size: 15px;
  margin: 0 0 4px;
  color: #0f172a;
}

.motavix-hero__feature p {
  font-size: 13px;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .motavix-hero {
    padding: 36px 0 28px;
  }
  .motavix-hero__inner {
    grid-template-columns: 1fr;
  }
  .motavix-hero__feature--offset,
  .motavix-hero__feature--offset-sm {
    margin-left: 0;
  }
}
